TensorFlow: Upstream changes to git.
Changes: - Fix README example to not include implicit print Base CL: 108729071
This commit is contained in:
parent
5fdf9a66e8
commit
3972c791b9
@ -64,11 +64,11 @@ $ python
|
||||
>>> import tensorflow as tf
|
||||
>>> hello = tf.constant('Hello, TensorFlow!')
|
||||
>>> sess = tf.Session()
|
||||
>>> print sess.run(hello)
|
||||
>>> sess.run(hello)
|
||||
Hello, TensorFlow!
|
||||
>>> a = tf.constant(10)
|
||||
>>> b = tf.constant(32)
|
||||
>>> print sess.run(a+b)
|
||||
>>> sess.run(a+b)
|
||||
42
|
||||
>>>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user