| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- # Copyright The Lightning team.
- #
- # 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 typing import Union
- import torch
- from torch import Tensor
- from torchmetrics.utilities.checks import _check_same_shape
- def _mean_squared_log_error_update(preds: Tensor, target: Tensor) -> tuple[Tensor, int]:
- """Return variables required to compute Mean Squared Log Error. Checks for same shape of tensors.
- Args:
- preds: Predicted tensor
- target: Ground truth tensor
- """
- _check_same_shape(preds, target)
- sum_squared_log_error = torch.sum(torch.pow(torch.log1p(preds) - torch.log1p(target), 2))
- return sum_squared_log_error, target.numel()
- def _mean_squared_log_error_compute(sum_squared_log_error: Tensor, num_obs: Union[int, Tensor]) -> Tensor:
- """Compute Mean Squared Log Error.
- Args:
- sum_squared_log_error:
- Sum of square of log errors over all observations ``(log error = log(target) - log(prediction))``
- num_obs: Number of predictions or observations
- Example:
- >>> preds = torch.tensor([0., 1, 2, 3])
- >>> target = torch.tensor([0., 1, 2, 2])
- >>> sum_squared_log_error, num_obs = _mean_squared_log_error_update(preds, target)
- >>> _mean_squared_log_error_compute(sum_squared_log_error, num_obs)
- tensor(0.0207)
- """
- return sum_squared_log_error / num_obs
- def mean_squared_log_error(preds: Tensor, target: Tensor) -> Tensor:
- """Compute mean squared log error.
- Args:
- preds: estimated labels
- target: ground truth labels
- Return:
- Tensor with RMSLE
- Example:
- >>> from torchmetrics.functional.regression import mean_squared_log_error
- >>> x = torch.tensor([0., 1, 2, 3])
- >>> y = torch.tensor([0., 1, 2, 2])
- >>> mean_squared_log_error(x, y)
- tensor(0.0207)
- .. attention::
- Half precision is only support on GPU for this metric.
- """
- sum_squared_log_error, num_obs = _mean_squared_log_error_update(preds, target)
- return _mean_squared_log_error_compute(sum_squared_log_error, num_obs)
|