(shape: Shape, dtype?: DataType)
| 128 | } |
| 129 | |
| 130 | apply(shape: Shape, dtype?: DataType): Tensor { |
| 131 | return randomUniform(shape, this.minval, this.maxval, dtype, this.seed); |
| 132 | } |
| 133 | |
| 134 | override getConfig(): serialization.ConfigDict { |
| 135 | return {minval: this.minval, maxval: this.maxval, seed: this.seed}; |
nothing calls this directly
no test coverage detected