深度学习

Mac 上搭建TensorFlow环境

2017-11-13  本文已影响0人  逆风g

参考地址

$ python
...
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
上一篇 下一篇

猜你喜欢

热点阅读