torch.randn(1,2)和torch.randn((1,2))一样吗?

他们俩个输出的结果是一样的。

print(torch.randn((4, 1)))
print(torch.randn(4, 1))

tensor([[-0.6260],
[ 0.3451],
[ 0.9653],
[-1.5156]])
tensor([[-0.3110],
[ 0.2371],
[ 0.2829],
[ 0.2155]])

posted @ 2021-06-25 22:51  祥瑞哈哈哈  阅读(268)  评论(0编辑  收藏  举报