Some information and resources

  • Tensorflow validation (hello world)
In [1]:
import tensorflow as tf
hello = tf.constant('Hello, Tensorflow')
sess = tf.Session()
print(sess.run(hello))
Hello, Tensorflow