Skip to content

Instantly share code, notes, and snippets.

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