tensorflow

>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
原文地址:https://www.cnblogs.com/ymjyqsx/p/6737472.html