(args: RandomNormalArgs)
| 156 | private seed: number; |
| 157 | |
| 158 | constructor(args: RandomNormalArgs) { |
| 159 | super(); |
| 160 | this.mean = args.mean || this.DEFAULT_MEAN; |
| 161 | this.stddev = args.stddev || this.DEFAULT_STDDEV; |
| 162 | this.seed = args.seed; |
| 163 | } |
| 164 | |
| 165 | apply(shape: Shape, dtype?: DataType): Tensor { |
| 166 | dtype = dtype || 'float32'; |
nothing calls this directly
no outgoing calls
no test coverage detected