The graph object in Tensorflow has a method called \"get_tensor_by_name(name)\". Is there anyway to get a list of valid tensor names?
If not, does anyone know the va
To see the operations in the graph (You will see many, so to cut short I have given here only the first string).
sess = tf.Session() op = sess.graph.get_operations() [m.values() for m in op][1] out: (,)