MSELoss
- class MSELoss(reduction: Literal['mean', 'sum'] = 'mean')[source]
Bases:
PointwiseLossThe mean squared error loss.
Note
The related
torchmodule istorch.nn.MSELoss, but it can not be used interchangeably in PyKEEN because of the extended functionality implemented in PyKEEN’s loss functions.Initialize the loss.
- Parameters:
reduction (Literal['mean', 'sum']) – the reduction, cf.
pykeen.nn.modules._Loss
Attributes Summary
synonyms of this loss
Methods Summary
forward(x, target[, weight])Calculate the point-wise loss.
Attributes Documentation
- synonyms: ClassVar[set[str] | None] = {'Mean Square Error Loss', 'Mean Squared Error Loss'}
synonyms of this loss
Methods Documentation