这些天,我正在学习PyTorch,backward()
功能确实让我感到困惑。
让我们直接解决我的问题:
我定义了一些张量和操作:
```
import torch
x = torch.ones(2,5,requires_grad=True)
y = x + 2
z = x*x
Y = torch.mean(y)
Z = torch.mean(z)
```
如果我运行此命令:
y.backward(torch.ones(2,5))
z.backward(torch.ones(2,5))
没有错误发生。
但是,如果我运行此命令:
Y.backward()
Z.backward()
我知道了
RuntimeError Traceback (most recent call last)
<ipython-input-7-732c4cd53ca7> in <module>()
1 Y.backward()
----> 2 Z.backward()
E:\learningsoft\anadonda\lib\site-packages\torch\tensor.py in backward(self, gradient, retain_graph, create_graph)
91 products. Defaults to ``False``.
92 """
---> 93 torch.autograd.backward(self, gradient, retain_graph, create_graph)
94
95 def register_hook(self, hook):
E:\learningsoft\anadonda\lib\site-packages\torch\autograd\__init__.py in backward(tensors, grad_tensors, retain_graph, create_graph, grad_variables)
88 Variable._execution_engine.run_backward(
89 tensors, grad_tensors, retain_graph, create_graph,
---> 90 allow_unreachable=True) # allow_unreachable flag
91
92
RuntimeError: Trying to backward through the graph a second time, but the buffers have already been freed. Specify retain_graph=True when calling backward the first time.
有人可以告诉我为什么他们会有不同的结果?
让我给我更多示例: example1(picture)
答案 0 :(得分:0)
这是您运行命令的顺序。
首先,您在y
和z
上向后运行。然后,您在Y
和Z
上运行它,但是,Y
和Z
基于y
和z
-已经向后跑了。
您需要在y
和z
上向后运行,然后重置内核,然后重做计算并在Y
和Z
上向后运行。
x = torch.ones(2,5,requires_grad=True)
y = x + 2
z = x*x
Y = torch.mean(y)
Z = torch.mean(z)
y.backward(torch.ones(2,5))
z.backward(torch.ones(2,5))
然后重置。
x = torch.ones(2,5,requires_grad=True)
y = x + 2
z = x*x
Y = torch.mean(y)
Z = torch.mean(z)
Y.backward()
Z.backward()