import tensorflow as tf import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' #去掉警告,将警告级别提升 a = tf.constant(2) #定义一个常量 b = tf.constant(4) sum = tf.add(a,b) #加法操作 with tf.Session() as sess: #上下文管理 print(sess.run(sum)) #run运行加法op
输出:
6
2024-02-14 20:14:16
import tensorflow as tf import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' #去掉警告,将警告级别提升 a = tf.constant(2) #定义一个常量 b = tf.constant(4) sum = tf.add(a,b) #加法操作 with tf.Session() as sess: #上下文管理 print(sess.run(sum)) #run运行加法op
输出:
6