T - data type for backprops() outputpublic final class ReluGrad<T extends java.lang.Number> extends PrimitiveOp implements Operand<T>
operation| Modifier and Type | Method | Description |
|---|---|---|
Output<T> |
asOutput() |
Returns the symbolic handle of a tensor.
|
Output<T> |
backprops() |
`gradients * (features > 0)`.
|
static <T extends java.lang.Number> |
create(Scope scope,
Operand<T> gradients,
Operand<T> features) |
Factory method to create a class to wrap a new ReluGrad operation to the graph.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitequals, hashCode, toStringpublic static <T extends java.lang.Number> ReluGrad<T> create(Scope scope, Operand<T> gradients, Operand<T> features)
scope - current graph scopegradients - The backpropagated gradients to the corresponding Relu operation.features - The features passed as input to the corresponding Relu operation, OR
the outputs of that operation (both work equivalently).public Output<T> asOutput()
OperandInputs 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.
asOutput in interface Operand<T extends java.lang.Number>OperationBuilder.addInput(Output)