tf.raw_ops.ParameterizedTruncatedNormal
Outputs random values from a normal distribution.
tf.raw_ops.ParameterizedTruncatedNormal(
shape, means, stdevs, minvals, maxvals, seed=0, seed2=0, name=None
)
The parameters may each be a
scalar which applies to the entire output, or a vector of length shape[0] which
stores the parameters for each batch.
Args |
shape
|
A Tensor . Must be one of the following types: int32 , int64 .
The shape of the output tensor. Batches are indexed by the 0th dimension.
|
means
|
A Tensor . Must be one of the following types: half , bfloat16 , float32 , float64 .
The mean parameter of each batch.
|
stdevs
|
A Tensor . Must have the same type as means .
The standard deviation parameter of each batch. Must be greater than 0.
|
minvals
|
A Tensor . Must have the same type as means .
The minimum cutoff. May be -infinity.
|
maxvals
|
A Tensor . Must have the same type as means .
The maximum cutoff. May be +infinity, and must be more than the minval
for each batch.
|
seed
|
An optional int . Defaults to 0 .
If either seed or seed2 are set to be non-zero, the random number
generator is seeded by the given seed. Otherwise, it is seeded by a
random seed.
|
seed2
|
An optional int . Defaults to 0 .
A second seed to avoid seed collision.
|
name
|
A name for the operation (optional).
|
Returns |
A Tensor . Has the same type as means .
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-01-23 UTC.
[null,null,["Last updated 2024-01-23 UTC."],[],[]]