An array of integers defining the output tensor shape.
Optional
minval: numberThe lower bound on the range of random values to generate. Defaults to 0.
Optional
maxval: numberThe upper bound on the range of random values to generate. Defaults to 1.
Optional
dtype: keyof DataTypeMapThe data type of the output tensor. Defaults to 'float32'.
Optional
seed: string | numberAn optional int. Defaults to 0. If seed is set to be non-zero, the random number generator is seeded by the given seed. Otherwise, it is seeded by a random seed.
Generated using TypeDoc
Creates a
tf.Tensor
with values sampled from a uniform distribution.The generated values follow a uniform distribution in the range [minval, maxval). The lower bound minval is included in the range, while the upper bound maxval is excluded.