@Operator public final class TensorListScatterIntoExistingList extends PrimitiveOp implements Operand<Object>
Each member of the TensorList corresponds to one row of the input tensor, specified by the given index (see `tf.gather`).
input_handle: The list to scatter into. tensor: The input tensor. indices: The indices used to index into the list. output_handle: The TensorList.
operation| Modifier and Type | Method and Description |
|---|---|
Output<Object> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> TensorListScatterIntoExistingList |
create(Scope scope,
Operand<?> inputHandle,
Operand<T> tensor,
Operand<Integer> indices)
Factory method to create a class wrapping a new TensorListScatterIntoExistingList operation.
|
Output<?> |
outputHandle() |
equals, hashCode, op, toStringpublic static <T> TensorListScatterIntoExistingList create(Scope scope, Operand<?> inputHandle, Operand<T> tensor, Operand<Integer> indices)
scope - current scopeinputHandle - tensor - indices - public Output<?> outputHandle()
public Output<Object> 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<Object>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.