Aliases:
tf.io.parse_tensor
tf.parse_tensor
tf.io.parse_tensor(
serialized,
out_type,
name=None
)
Defined in generated file: tensorflow/python/ops/gen_parsing_ops.py
.
Transforms a serialized tensorflow.TensorProto proto into a Tensor.
Args:
serialized
: ATensor
of typestring
. A scalar string containing a serialized TensorProto proto.out_type
: Atf.DType
. The type of the serialized tensor. The provided type must match the type of the serialized tensor and no implicit conversion will take place.name
: A name for the operation (optional).
Returns:
A Tensor
of type out_type
.