@Operator(group="math") public final class Less extends PrimitiveOp implements Operand<java.lang.Boolean>
NOTE: `math.Less` supports broadcasting. More about broadcasting [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
operation| Modifier and Type | Method | Description |
|---|---|---|
Output<java.lang.Boolean> |
asOutput() |
Returns the symbolic handle of a tensor.
|
static <T extends java.lang.Number> |
create(Scope scope,
Operand<T> x,
Operand<T> y) |
Factory method to create a class to wrap a new Less operation to the graph.
|
Output<java.lang.Boolean> |
z() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitequals, hashCode, toStringpublic static <T extends java.lang.Number> Less create(Scope scope, Operand<T> x, Operand<T> y)
scope - current graph scopex - y - public Output<java.lang.Boolean> z()
public Output<java.lang.Boolean> 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<java.lang.Boolean>OperationBuilder.addInput(Output)