import tensorflow as tf
print("tf.version:",tf.__version__)
hello = tf.constant("Hello,world!")
sess = tf.Session()
print(sess.run(hello))
import tensorflow as tf
print("tf.version:",tf.__version__)
hello = tf.constant("Hello,world!")
sess = tf.Session()
print(sess.run(hello))
本文标题:TensorFlow(12)“hello world”
本文链接:https://www.haomeiwen.com/subject/yemjrxtx.html
网友评论