pytorch学习2
Posted -xuewuzhijing-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytorch学习2相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章