tf.saved_model.utils.get_tensor_from_tensor_info(
tensor_info,
graph=None,
import_scope=None
)
Defined in tensorflow/python/saved_model/utils_impl.py.
Returns the Tensor or SparseTensor described by a TensorInfo proto.
tensor_info: A TensorInfo proto describing a Tensor or SparseTensor.graph: The tf.Graph in which tensors are looked up. If None, the current default graph is used.import_scope: If not None, names in tensor_info are prefixed with this string before lookup.The Tensor or SparseTensor in graph described by tensor_info.
KeyError: If tensor_info does not correspond to a tensor in graph.ValueError: If tensor_info is malformed.
© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/saved_model/utils/get_tensor_from_tensor_info