January 2018
Intermediate to advanced
310 pages
7h 48m
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