April 2017
Intermediate to advanced
320 pages
7h 46m
English
Open a Python terminal and enter the following lines of code:
>>> import tensorflow as tf >>> hello = tf.constant("hello TensorFlow!") >>> sess=tf.Session()
To verify your installation just type:
>>> print sess.run(hello)
If the installation is okay, you'll see the following output:
Hello TensorFlow!
Read now
Unlock full access