标签:会话 run 操作 class ons 计算 int session ESS
import tensorflow as tf # 创建一个常量,operation(操作) hw = tf.constant(‘hello world,i love tensorflow‘) # 创建一个会话 sess = tf.Session() # 运行graph(计算图) print(sess.run(hw)) # 关闭session会话 sess.close()
b‘hello world,i love tensorflow‘
标签:会话 run 操作 class ons 计算 int session ESS
原文地址:https://www.cnblogs.com/traditional/p/9338717.html