开始学习 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)