MCPcopy
hub / github.com/tensorflow/tfjs / randomNormal

Function randomNormal

tfjs-layers/src/backend/tfjs_backend.ts:365–369  ·  view source on GitHub ↗
(
    shape: Shape, mean = 0.0, stddev = 1.0, dtype?: 'float32'|'int32',
    seed?: number)

Source from the content-addressed store, hash-verified

363 * @return The normal tensor.
364 */
365export 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

Callers 2

recurrent_test.tsFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…