PyTorch中,损失函数可以看做是网络的某一层而放到模型定义中,但在实际使用时更偏向于作为功能函数而放到前向传播过程中。 损失函数举例:均方误差(mean squared error)、交叉熵误差(cross entropy error)等使用时参考手册torch.nn — PyTorch 1.11.0 documentation 实例:nn.MSELoss 均方误差 #接上篇神经网络out =net...