December 2018
Intermediate to advanced
764 pages
18h 18m
English
We will do an example using TensorFlow directly in the Python shell. In this example, we will print Hello, TensorFlow using TensorFlow.
python3
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> session = tf.Session()
The session can be run with the variable hello as the parameter. ...
Read now
Unlock full access