helloworld.py 148 B

123456789
  1. import tensorflow as tf
  2. #Simple hello world using TensorFlow
  3. hello = tf.constant('Hello, TensorFlow!')
  4. sess = tf.Session()
  5. print sess.run(hello)