获取两个张量中每个元素之间的均方误差
pytorch 523
原文标题 :Get mean squared error between every element in two tensors
我有两个一维张量,y_pred
和y_true
,其中:
>>> y_pred.shape
torch.Size([2730441, 1])
>>> y_true.shape
torch.Size([2730441, 1])
为了获得两个张量之间的均方误差,我可以使用torch.nn.MSELoss()
但是,我想获得张量中每一行/元素之间的损失y_pred
&y_true
ie。我想运行一些函数elementWiseMSE(y_pred, y_true)
将返回loss_tensor
形状[2730441, 1]
哪个包含所有预测的元素平均误差。