Skip to content

Instantly share code, notes, and snippets.

@nithyadurai87
Last active December 12, 2019 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nithyadurai87/8c2d24e08cebd7dcff4696727c758913 to your computer and use it in GitHub Desktop.
Save nithyadurai87/8c2d24e08cebd7dcff4696727c758913 to your computer and use it in GitHub Desktop.
import tensorflow as tf
a = tf.constant("hello world!")
print (a)
s = tf.Session()
print (s.run(a))
s.close()
with tf.Session() as s:
print(s.run(a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment