(
shape: Shape, mean = 0.0, stddev = 1.0, dtype?: 'float32'|'int32',
seed?: number)
| 363 | * @return The normal tensor. |
| 364 | */ |
| 365 | export function randomNormal( |
| 366 | shape: Shape, mean = 0.0, stddev = 1.0, dtype?: 'float32'|'int32', |
| 367 | seed?: number): Tensor { |
| 368 | return tfc.randomNormal(shape, mean, stddev, dtype, seed); |
| 369 | } |
| 370 | |
| 371 | /* Linear Algebra */ |
| 372 |
no outgoing calls
no test coverage detected
searching dependent graphs…