tf.contrib.graph_editor.make_list_of_t
make_list_of_t(
ts,
check_graph=True,
allow_graph=True,
ignore_ops=False
)
Defined in tensorflow/contrib/graph_editor/util.py.
See the guide: Graph Editor (contrib) > Module: util
Convert ts to a list of tf.Tensor.
Args:
ts: can be an iterable oftf.Tensor, atf.Graphor a single tensor.check_graph: ifTruecheck if all the tensors belong to the same graph.allow_graph: ifFalseatf.Graphcannot be converted.ignore_ops: ifTrue, silently ignoretf.Operation.
Returns:
A newly created list of tf.Tensor.
Raises:
TypeError: iftscannot be converted to a list oftf.Tensoror, ifcheck_graphisTrue, if all the ops do not belong to the same graph.
