T - data type for values() output@Operator public final class TensorListGather<T> extends PrimitiveOp implements Operand<T>
Each row in the produced Tensor corresponds to the element in the TensorList specified by the given index (see `tf.gather`).
input_handle: The input tensor list. indices: The indices used to index into the list. values: The tensor.
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> TensorListGather<T> |
create(Scope scope,
Operand<?> inputHandle,
Operand<Integer> indices,
Class<T> elementDtype)
Factory method to create a class to wrap a new TensorListGather operation to the graph.
|
Output<T> |
values() |
equals, hashCode, toStringpublic static <T> TensorListGather<T> create(Scope scope, Operand<?> inputHandle, Operand<Integer> indices, Class<T> elementDtype)
scope - current graph scopeinputHandle - indices - elementDtype - 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.