Skip to content

Instantly share code, notes, and snippets.

@sidishere
Created September 30, 2019 08:14
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 sidishere/a35635fcdc70d2375e45821a1dd1d77a to your computer and use it in GitHub Desktop.
Save sidishere/a35635fcdc70d2375e45821a1dd1d77a to your computer and use it in GitHub Desktop.
Hello World TensorFlow
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