notebook.community
Edit and run
In [2]: import tensorflow as tf hello_constant = tf.constant('Hello World!') with tf.Session() as sess: output = sess.run(hello_constant) print(output)
import tensorflow as tf hello_constant = tf.constant('Hello World!') with tf.Session() as sess: output = sess.run(hello_constant) print(output)
b'Hello World!'
In [ ]: