1

基于这篇文章,我们可以改变tf.variable

threshold = 3
a = np.array([1,2,3,4,5,6])
b = tf.Variable(a)
b = tf.where(b >= threshold, 199, b)

b=tf.where(b>=3, 199, b)插入计算图并影响b反向传播的梯度吗?

或更一般的问题:哪些类型的操作将/不会将计算图插入Tensorflow 2

4

0 回答 0