torch.rand([2,2])和torch.rand((2,2))的区别
时间: 2023-05-19 12:01:41 浏览: 118
pyTorch.randn()、rand()、cat()、pow()、scatter_()、.squeeze() 、.unsqueeze()
5星 · 资源好评率100%
torch.rand([2,2])和torch.rand((2,2))都是生成一个2x2的随机张量,但是它们的参数形式不同。torch.rand([2,2])使用的是列表形式的参数,而torch.rand((2,2))使用的是元组形式的参数。在使用时,两者没有本质的区别,只是参数形式不同而已。
阅读全文