T - data type for output() output@Operator public final class ParseTensor<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> ParseTensor<T> |
create(Scope scope,
Operand<String> serialized,
Class<T> outType)
Factory method to create a class to wrap a new ParseTensor operation to the graph.
|
Output<T> |
output()
A Tensor of type `out_type`.
|
equals, hashCode, toStringpublic static <T> ParseTensor<T> create(Scope scope, Operand<String> serialized, Class<T> outType)
scope - current graph scopeserialized - A scalar string containing a serialized TensorProto proto.outType - The type of the serialized tensor. The provided type must match the
type of the serialized tensor and no implicit conversion will take place.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.