我们可以使用两种方法实现:常量加法与乘法
方法一:在创建变量时遍给其赋值
import tensorflow as tf
a = tf.constant(2) #创建a并赋值
b = tf.constant(3) #创建b并赋值
with tf.Session() as sess: #初始化流图
print('a=2,b=3')
print('Addition with constants:%i'%sess.run(a+b))
print('Multiplication with constants:%i'%sess.run(a*b))
结果如下:
方法二:在初始化流图时,通过feed_dict将值喂给变量:
import tensorflow as tf
a = tf.placeholder(tf.int16) #创建变量a使用placeholder为其设置一个空间用来存放之后传入的值
b = tf.placeholder(tf.int16)
add = tf.add(a,b) #加法
mul =