提交 3972c791 编写于 作者: M Manjunath Kudlur

TensorFlow: Upstream changes to git.

Changes:
- Fix README example to not include implicit print

Base CL: 108729071
上级 5fdf9a66
...@@ -64,11 +64,11 @@ $ python ...@@ -64,11 +64,11 @@ $ python
>>> import tensorflow as tf >>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!') >>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session() >>> sess = tf.Session()
>>> print sess.run(hello) >>> sess.run(hello)
Hello, TensorFlow! Hello, TensorFlow!
>>> a = tf.constant(10) >>> a = tf.constant(10)
>>> b = tf.constant(32) >>> b = tf.constant(32)
>>> print sess.run(a+b) >>> sess.run(a+b)
42 42
>>> >>>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册