description: Returns the Tensor or CompositeTensor described by a TensorInfo proto. (deprecated)

tf.compat.v1.saved_model.get_tensor_from_tensor_info

Returns the Tensor or CompositeTensor described by a TensorInfo proto. (deprecated)

Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: This function will only be available through the v1 compatibility library as tf.compat.v1.saved_model.utils.get_tensor_from_tensor_info or tf.compat.v1.saved_model.get_tensor_from_tensor_info.

tensor_info A TensorInfo proto describing a Tensor or SparseTensor or CompositeTensor.
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 or CompositeTensor in graph described by tensor_info.

KeyError If tensor_info does not correspond to a tensor in graph.
ValueError If tensor_info is malformed.