7

开始学习 pytorch 并尝试做一些非常简单的事情,尝试将随机初始化的大小为 5 的向量移动到值 [1,2,3,4,5] 的目标向量。

但是我的距离并没有减少!!我的矢量x简直发疯了。不知道我错过了什么。

import torch
import numpy as np
from torch.autograd import Variable

# regress a vector to the goal vector [1,2,3,4,5]

dtype = torch.cuda.FloatTensor # Uncomment this to run on GPU

x = Variable(torch.rand(5).type(dtype), requires_grad=True)
target = Variable(torch.FloatTensor([1,2,3,4,5]).type(dtype), 
requires_grad=False)
distance = torch.mean(torch.pow((x - target), 2))

for i in range(100):
  distance.backward(retain_graph=True)
  x_grad = x.grad
  x.data.sub_(x_grad.data * 0.01)
4

1 回答 1

6

您的代码中有两个错误会阻止您获得所需的结果。

第一个错误是您应该将距离计算放在循环中。因为在这种情况下,距离就是损失。所以我们必须在每次迭代中监控它的变化。

第二个错误是您应该手动清零,x.grad因为pytorch 默认情况下不会将变量中的 grad 清零

以下是按预期工作的示例代码:

import torch
import numpy as np
from torch.autograd import Variable
import matplotlib.pyplot as plt

# regress a vector to the goal vector [1,2,3,4,5]

dtype = torch.cuda.FloatTensor # Uncomment this to run on GPU

x = Variable(torch.rand(5).type(dtype), requires_grad=True)
target = Variable(torch.FloatTensor([1,2,3,4,5]).type(dtype), 
requires_grad=False)

lr = 0.01 # the learning rate

d = []
for i in range(1000):
  distance = torch.mean(torch.pow((x - target), 2))
  d.append(distance.data)
  distance.backward(retain_graph=True)

  x.data.sub_(lr * x.grad.data)
  x.grad.data.zero_()

print(x.data)

fig, ax = plt.subplots()
ax.plot(d)
ax.set_xlabel("iteration")
ax.set_ylabel("distance")
plt.show()

下面是距离wrt迭代的图

在此处输入图像描述

我们可以看到模型在大约 600 次迭代时收敛。如果我们将学习率设置得更高(例如,lr=0.1),模型会收敛得更快(大约需要 60 次迭代,见下图)

在此处输入图像描述

现在,x 变成如下

0.9878 1.9749 2.9624 3.9429 4.9292

这非常接近您的目标 [1, 2, 3, 4, 5]。

于 2018-03-08T03:08:17.400 回答