notebook.community
Edit and run
In [1]: import tensorflow as tf
import tensorflow as tf
In [2]: hello = tf.constant('Hello, Vainius!')
hello = tf.constant('Hello, Vainius!')
In [4]: with tf.Session() as session: print(session.run(hello))
with tf.Session() as session: print(session.run(hello))
b'Hello, TensorFlow!'