有别于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]有同样的作用

Logo

苏州本地的技术开发者社区,在这里可以交流本地的好吃好玩的,可以交流技术,可以交流招聘等等,没啥限制。

更多推荐