T - data type for value() output@Operator public final class GetSessionTensor<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> GetSessionTensor<T> |
create(Scope scope,
Operand<String> handle,
Class<T> dtype)
Factory method to create a class to wrap a new GetSessionTensor operation to the graph.
|
Output<T> |
value()
The tensor for the given handle.
|
equals, hashCode, toStringpublic static <T> GetSessionTensor<T> create(Scope scope, Operand<String> handle, Class<T> dtype)
scope - current graph scopehandle - The handle for a tensor stored in the session state.dtype - The type of the output value.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.