(inputs: Tensor|Tensor[], kwargs: Kwargs)
| 580 | } |
| 581 | |
| 582 | override call(inputs: Tensor|Tensor[], kwargs: Kwargs): Tensor|Tensor[] { |
| 583 | if (this.model == null) { |
| 584 | this.build(); |
| 585 | } |
| 586 | return this.model.call(inputs, kwargs); |
| 587 | } |
| 588 | |
| 589 | override build(inputShape?: Shape|Shape[]) { |
| 590 | // Call `getExactlyOneShape` without using its return value, |
no test coverage detected