torch.nn里的损失函数:MSE、BCE、BCEWithLogits、NLLLoss、CrossEntropyLoss的用法
1.nn.MSELoss()模型的预测值与标签的L2距离。一般用于回归问题。之所以不用于分类问题,可能原因为:使用sigmoid之后,函数形式不是凸函数,不容易求解,容易进入局部最优。loss=nn.MSELoss()input=torch.randn(3,5,requires_grad=True)target=torch.randn(3,5)output=loss(input,target)ou