T - data type for z() output@Operator(group="math") public final class Mod<T extends Number> extends PrimitiveOp implements Operand<T>
the result here is consistent with a truncating divide. E.g. `tf.truncatediv(x, y) * y + truncate_mod(x, y) = x`.
NOTE: `math.Mod` supports broadcasting. More about broadcasting [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<T> x,
Operand<T> y)
Factory method to create a class wrapping a new Mod operation.
|
Output<T> |
z() |
equals, hashCode, op, toStringpublic static <T extends Number> Mod<T> create(Scope scope, Operand<T> x, Operand<T> y)
scope - current scopex - y - 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 Number>OperationBuilder.addInput(Output)Copyright © 2022. All rights reserved.