【深度学习】损失函数系列 (一) 平方损失函数、交叉熵损失函数 (含label_smoothing、ignore_index等内容)
一、平方损失函数(QuadraticLoss/MSELoss):Pytorch实现:fromtorch.nnimportMSELossloss=nn.MSELoss(reduction="none")input=torch.randn(3,5,requires_grad=True)target=torch.randn(3,5)output=loss(input,target)nn.MSELoss(