微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

关于从 TensorFlow 中的 GradientTape.gradient 获取 None 的问题

如何解决关于从 TensorFlow 中的 GradientTape.gradient 获取 None 的问题

我尝试了以下代码

from d2l import tensorflow as d2l
import tensorflow as tf

@tf.function
def corr2d(X,k,Y):  #@save
    """Compute 2D cross-correlation."""
    with tf.GradientTape() as tape:
        for i in range(Y.shape[0]):
            for j in range(Y.shape[1]):
                Y[i,j].assign(tf.reduce_sum(tf.multiply(X[i: i + h,j: j + w],k)))
    print('Gradients = ',tape.gradient(Y,k)) # show the gradient
    print('Watched Variables = ',tape.watched_variables()) # show the watched varaibles

print(tf.__version__)
Xin= tf.constant([[0.0,1.0,2.0],[3.0,4.0,5.0],[6.0,7.0,8.0]])
kernel = tf.Variable([[0.0,1.0],[2.0,3.0]])
h,w = kernel.shape
Y_hat = tf.Variable(tf.zeros((Xin.shape[0] - h + 1,Xin.shape[1] - w + 1))) # prepare the output tensor
corr2d(X,kernel,Y_hat)
print(Y_hat)

我得到了以下结果:

2.4.1
Gradients =  None
Watched Variables =  (<tf.Variable 'Variable:0' shape=(2,2) dtype=float32>,<tf.Variable 'Variable:0' shape=(2,2) dtype=float32>)
<tf.Variable 'Variable:0' shape=(2,2) dtype=float32,numpy=
array([[19.,25.],[37.,43.]],dtype=float32)>

谁能解释为什么即使源变量 None 包含在监视变量列表中,返回的梯度仍为 kernel

解决方法

我不确定我是否真的理解你想要做什么。您将变量作为梯度的目标传递。

从成本函数和变量的角度考虑总是更容易。 假设您的成本函数是 y = x ** 2。在这种情况下,可以计算 y 相对于 x 的梯度。

基本上,您没有计算关于 k 的任何梯度的函数。

我做了一个小改动。检查可变成本。

import tensorflow as tf

def corr2d(X,k,Y):  #@save
    """Compute 2D cross-correlation."""
    with tf.GradientTape() as tape:
        cost = 0
        for i in range(Y.shape[0]):
            for j in range(Y.shape[1]):
                Y[i,j].assign(tf.reduce_sum(tf.multiply(X[i: i + h,j: j + w],k)))
                cost = cost + tf.reduce_sum(tf.multiply(X[i: i + h,k))
    print('\nGradients = ',tape.gradient(cost,k)) # show the gradient
    print('Watched Variables = ',tape.watched_variables()) # show the watched varaibles

print(tf.__version__)
Xin= tf.constant([[0.0,1.0,2.0],[3.0,4.0,5.0],[6.0,7.0,8.0]])
kernel = tf.Variable([[0.0,1.0],[2.0,3.0]])
h,w = kernel.shape
Y_hat = tf.Variable(tf.zeros((Xin.shape[0] - h + 1,Xin.shape[1] - w + 1))) # prepare the output tensor
corr2d(Xin,kernel,Y_hat)
print(Y_hat)

现在,你会得到

Gradients =  tf.Tensor(
[[ 8. 12.]
 [20. 24.]],shape=(2,2),dtype=float32)
Watched Variables =  (<tf.Variable 'Variable:0' shape=(2,2) dtype=float32,numpy=
array([[0.,1.],[2.,3.]],dtype=float32)>,<tf.Variable 'Variable:0' shape=(2,numpy=
array([[19.,25.],[37.,43.]],dtype=float32)>)
<tf.Variable 'Variable:0' shape=(2,dtype=float32)>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?