pytorch的size和shape用法
有别于numpy中size的用法(用来计算数组和矩阵中所有元素的个数),pytorch的size具有和shape一样计算矩阵维度大小的作用。上代码~import torchimport numpy as nptorch.manual_seed(1)a=torch.randn(3,4)b=np.arange(1,5)b=b.reshape([2,2])# print(a)print(b)prin
·
有别于numpy中size的用法(用来计算数组和矩阵中所有元素的个数),pytorch的size具有和shape一样计算矩阵维度大小的作用。
上代码~
import torch
import numpy as np
torch.manual_seed(1)
a=torch.randn(3,4)
b=np.arange(1,5)
b=b.reshape([2,2])
# print(a)
print(b)
print("torch size():",a.size(1))
print("torch.shape:",a.shape[1])
print("numpy size:",b.size)
print("numpy shape:",b.shape[1])
输出:
可以看到pytorch中a.size(1)
和shape[1]
有同样的作用
更多推荐
已为社区贡献1条内容
所有评论(0)