Skip to content

Instantly share code, notes, and snippets.

@krunal3kapadiya
Created September 27, 2017 01:34
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 krunal3kapadiya/d9c65b517ce4ba7d864be3b7b0658cbc to your computer and use it in GitHub Desktop.
Save krunal3kapadiya/d9c65b517ce4ba7d864be3b7b0658cbc to your computer and use it in GitHub Desktop.
from __future__ import print_function
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!') #Creating the constant op
sess = tf.Session() # Start tf session
print(sess.run(hello)) # Run the op
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment