这部分是关于pytorch的基本知识。代码基于python3.7, pytorch 1.0,cuda 10.0 .
import torch
a = torch.FloatTensor(2,3) # pytorch 定义数据类型的方式,可以输入一个维度值或者列表
b = torch.FloatTensor([2,3,4,5])
# print(a)
# print(b)
c = torch.IntTensor(2,3)
d = torch.IntTensor([2,3,4,5])
print(c)
print(d)
tensor([[ 0, 0, 183490976],
[ 652, 0, -2147483648]], dtype=torch.int32)
tensor([2, 3, 4, 5], dtype=torch.int32)
e