notebook.community
Edit and run
In [2]: import tensorflow as tf
import tensorflow as tf
In [3]: # Setup an op => node of the graph hello = tf.constant('Hello, TF!') # Start the tf.session sess = tf.Session() # Run the graph sess.run(hello)
# Setup an op => node of the graph hello = tf.constant('Hello, TF!') # Start the tf.session sess = tf.Session() # Run the graph sess.run(hello)