Outputs deterministic pseudorandom random integers from a uniform distribution.
tf.raw_ops.StatelessRandomUniformInt(
shape, seed, minval, maxval, name=None
)
The generated values follow a uniform distribution in the range [minval, maxval)
.
The outputs are a deterministic function of shape
, seed
, minval
, and maxval
.
Returns | |
---|---|
A Tensor . Has the same type as minval .
|