Tensorflow: tf.add()
Tensorflow: tf.add()1.基本用法: 单个数字和单个数字的简单相加。import tensorflow as tfx = tf.constant(2)y = tf.constant(1)z = tf.add(x,y)with tf.Session() as sess: print(sess.run(z))输出:32.广播机制: 即按维度的相加论文《BiSeNet V2: Bilateral Network with Guided Aggregation f