pytorch tutorials pytorch tutorials Pytorch Documention 1.basic knowledge tensor。pytorch的tensor类似numpy的array,但前者能够在GPU上进行加速。tensor同样可以进行科学计算,比如矩阵运算,函数运算或者在nn.functional上激活函数或者损失函数的运算以及在model上的运算。例如 import torch torch.matmul(x,y) x@y import torch.nn.functional as F loss_f = F.cross_entropy(x,y) ... ...