码迷,mamicode.com
首页 > 其他好文 > 详细

pytorch学习2

时间:2020-05-19 10:30:33      阅读:41      评论:0      收藏:0      [点我收藏+]

标签:rom   bsp   col   ogr   res   int   variable   auto   color   

import torch
from torch.autograd import Variable

tensor =torch.FloatTensor([[1,2],[3,4]])
variable=Variable(tensor,requires_grad=True)
print(tensor)
print(variable)
t_out=torch.mean(tensor*tensor)
v_out=torch.mean(variable*variable)
v_out.backward()


print(t_out)
print(v_out)
print(variable.grad)
print(variable.data)
print(variable.data.numpy())

 

pytorch学习2

标签:rom   bsp   col   ogr   res   int   variable   auto   color   

原文地址:https://www.cnblogs.com/-xuewuzhijing-/p/12915330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!