T - data type for y() output@Operator public final class InplaceUpdate<T> extends PrimitiveOp implements Operand<T>
Computes `x[i, :] = v; return x`.
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> InplaceUpdate<T> |
create(Scope scope,
Operand<T> x,
Operand<Integer> i,
Operand<T> v)
Factory method to create a class to wrap a new InplaceUpdate operation to the graph.
|
Output<T> |
y()
A `Tensor` of type T.
|
equals, hashCode, toStringpublic static <T> InplaceUpdate<T> create(Scope scope, Operand<T> x, Operand<Integer> i, Operand<T> v)
scope - current graph scopex - A tensor of type `T`.i - A vector. Indices into the left-most dimension of `x`.v - A `Tensor` of type T. Same dimension sizes as x except the first dimension, which must be the same as i's size.public Output<T> 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>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.