Source code for nemo.collections.common.losses.mse_loss

# Copyright (c) 2020, NVIDIA CORPORATION.  All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from torch import Tensor, nn

from nemo.core.classes import Serialization, Typing, typecheck
from nemo.core.neural_types import LabelsType, LossType, NeuralType, RegressionValuesType

__all__ = ['MSELoss']


[docs]class MSELoss(nn.MSELoss, Serialization, Typing): """ MSELoss """ @property def input_types(self): """Returns definitions of module input ports. """ return { "preds": NeuralType(tuple('B'), RegressionValuesType()), "labels": NeuralType(tuple('B'), LabelsType()), } @property def output_types(self): """Returns definitions of module output ports. """ return {"loss": NeuralType(elements_type=LossType())}
[docs] def __init__(self, reduction: str = 'mean'): """ Args: reduction: type of the reduction over the batch """ super().__init__(reduction=reduction)
[docs] @typecheck() def forward(self, preds: Tensor, labels: Tensor) -> Tensor: """ Args: preds: output of the classifier labels: ground truth labels """ return super().forward(preds, labels)