Pytorch深度学习实战 2023-09-27 | 阅读:次 目录 Tensor Tensor 在 PyTorch 中 Tensor 代表多维数组,类似于Numpy中的ndarrays. x = torch.rand(5, 3) print(x) print(x.size())