Skip to content

Instantly share code, notes, and snippets.

@jarvisniu
Created October 13, 2017 09:05
Show Gist options
  • Select an option

  • Save jarvisniu/c803478bccfc244de61944a989fba36b to your computer and use it in GitHub Desktop.

Select an option

Save jarvisniu/c803478bccfc244de61944a989fba36b to your computer and use it in GitHub Desktop.
Hello world program for TensorFlow
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment