T - data type for value() output@Operator public final class TensorArrayRead<T> extends PrimitiveOp implements Operand<T>
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> TensorArrayRead<T> |
create(Scope scope,
Operand<?> handle,
Operand<Integer> index,
Operand<Float> flowIn,
Class<T> dtype)
Factory method to create a class to wrap a new TensorArrayRead operation to the graph.
|
Output<T> |
value()
The tensor that is read from the TensorArray.
|
equals, hashCode, toStringpublic static <T> TensorArrayRead<T> create(Scope scope, Operand<?> handle, Operand<Integer> index, Operand<Float> flowIn, Class<T> dtype)
scope - current graph scopehandle - The handle to a TensorArray.index - flowIn - A float scalar that enforces proper chaining of operations.dtype - The type of the elem that is returned.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.