Class StatefulTruncatedNormal<U extends TType>
java.lang.Object
org.tensorflow.op.RawOp
org.tensorflow.op.random.StatefulTruncatedNormal<U>
@Operator(group="random")
public final class StatefulTruncatedNormal<U extends TType>
extends RawOp
implements Operand<U>
Outputs random values from a truncated normal distribution.
The generated values follow a normal distribution with mean 0 and standard
deviation 1, except that values whose magnitude is more than 2 standard
deviations from the mean are dropped and re-picked.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name of this op, as known by TensorFlow core engine -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasOutput()Returns the symbolic handle of the tensor.static StatefulTruncatedNormal<TFloat32> create(Scope scope, Operand<? extends TType> resource, Operand<TInt64> algorithm, Operand<? extends TType> shape) Factory method to create a class wrapping a new StatefulTruncatedNormal operation, with the default output types.static <U extends TType>
StatefulTruncatedNormal<U> create(Scope scope, Operand<? extends TType> resource, Operand<TInt64> algorithm, Operand<? extends TType> shape, Class<U> dtype) Factory method to create a class wrapping a new StatefulTruncatedNormal operation.output()Gets output.
-
Field Details
-
OP_NAME
The name of this op, as known by TensorFlow core engine- See Also:
-
-
Constructor Details
-
StatefulTruncatedNormal
-
-
Method Details
-
create
@Endpoint(describeByClass=true) public static <U extends TType> StatefulTruncatedNormal<U> create(Scope scope, Operand<? extends TType> resource, Operand<TInt64> algorithm, Operand<? extends TType> shape, Class<U> dtype) Factory method to create a class wrapping a new StatefulTruncatedNormal operation.- Type Parameters:
U- data type forStatefulTruncatedNormaloutput and operands- Parameters:
scope- current scoperesource- The handle of the resource variable that stores the state of the RNG.algorithm- The RNG algorithm.shape- The shape of the output tensor.dtype- The type of the output.- Returns:
- a new instance of StatefulTruncatedNormal
-
create
@Endpoint(describeByClass=true) public static StatefulTruncatedNormal<TFloat32> create(Scope scope, Operand<? extends TType> resource, Operand<TInt64> algorithm, Operand<? extends TType> shape) Factory method to create a class wrapping a new StatefulTruncatedNormal operation, with the default output types.- Parameters:
scope- current scoperesource- The handle of the resource variable that stores the state of the RNG.algorithm- The RNG algorithm.shape- The shape of the output tensor.- Returns:
- a new instance of StatefulTruncatedNormal, with default output types
-
output
-
asOutput
Description copied from interface:OperandReturns the symbolic handle of the tensor.Inputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
-