关键词

pytorch 学习–60分钟入个门

pytorch视频教程

简单相加
a+b

torch.add(a,b)
给出一个输出向量
torch.add(a,b,out=result)
原地相加
b.add_(a) # 这时值已经给了 b

张量部分截取

print(y[:,1])

tensor 转 numpy

a = torch.rand(5,3)
a.numpy()

numpy 转 tensor

b = torch.from_numpy(a)

本文链接:http://task.lmcjl.com/news/12685.html

展开阅读全文