python-pytorch基础笔记

tensor理解

1. 表示2组中包含3个64x64的数据
data=torch.rand(2,3,64,64)

2. 表示1组中包含1000个1x1000的数据
labels = torch.rand(1, 1000,1000)

3.表示1个1x1000的数据
labels = torch.rand(1,1000)

你可能感兴趣的:(python,pytorch,python,pytorch,笔记)