Ë
    ýÿæiæ  ã                   óŒ   — d dl mZ d dlmZmZmZ d dlmZmZ d dl	m
Z
mZ d dlmZ d dlmZ d dlmZmZ esdgZ G d	„ d
e«      Zy)é    )ÚSequence)ÚAnyÚOptionalÚUnion)ÚTensorÚtensor)Ú'_mean_absolute_percentage_error_computeÚ&_mean_absolute_percentage_error_update)ÚMetric)Ú_MATPLOTLIB_AVAILABLE)Ú_AX_TYPEÚ_PLOT_OUT_TYPEz MeanAbsolutePercentageError.plotc                   óÎ   ‡ — e Zd ZU dZdZeed<   dZeed<   dZeed<   dZ	e
ed<   eed	<   eed
<   deddfˆ fd„Zdededdfd„Zdefd„Z	 ddeeeee   f      dee   defd„Zˆ xZS )ÚMeanAbsolutePercentageErroraÀ  Compute `Mean Absolute Percentage Error`_ (MAPE).

    .. math:: \text{MAPE} = \frac{1}{n}\sum_{i=1}^n\frac{|   y_i - \hat{y_i} |}{\max(\epsilon, | y_i |)}

    Where :math:`y` is a tensor of target values, and :math:`\hat{y}` is a tensor of predictions.

    As input to ``forward`` and ``update`` the metric accepts the following input:

    - ``preds`` (:class:`~torch.Tensor`): Predictions from model
    - ``target`` (:class:`~torch.Tensor`): Ground truth values

    As output of ``forward`` and ``compute`` the metric returns the following output:

    - ``mean_abs_percentage_error`` (:class:`~torch.Tensor`): A tensor with the mean absolute percentage error over
      state

    Args:
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Note:
        MAPE output is a non-negative floating point. Best result is ``0.0`` . But it is important to note that,
        bad predictions, can lead to arbitrarily large values. Especially when some ``target`` values are close to 0.
        This `MAPE implementation returns`_ a very large number instead of ``inf``.

    Example:
        >>> from torch import tensor
        >>> from torchmetrics.regression import MeanAbsolutePercentageError
        >>> target = tensor([1, 10, 1e6])
        >>> preds = tensor([0.9, 15, 1.2e6])
        >>> mean_abs_percentage_error = MeanAbsolutePercentageError()
        >>> mean_abs_percentage_error(preds, target)
        tensor(0.2667)

    TÚis_differentiableFÚhigher_is_betterÚfull_state_updateç        Úplot_lower_boundÚsum_abs_per_errorÚtotalÚkwargsÚreturnNc                 ó˜   •— t        ‰| �  di |¤Ž | j                  dt        d«      d¬«       | j                  dt        d«      d¬«       y )Nr   r   Úsum)ÚdefaultÚdist_reduce_fxr   © )ÚsuperÚ__init__Ú	add_stater   )Úselfr   Ú	__class__s     €úq/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/regression/mape.pyr    z$MeanAbsolutePercentageError.__init__K   sC   ø€ ô 	‰ÑÑ"˜6Ò"à�‰Ð*´F¸3³KÐPUˆÔVØ�‰�w¬¨s«ÀEˆÕJó    ÚpredsÚtargetc                 óv   — t        ||«      \  }}| xj                  |z  c_        | xj                  |z  c_        y)z*Update state with predictions and targets.N)r
   r   r   )r"   r&   r'   r   Únum_obss        r$   Úupdatez"MeanAbsolutePercentageError.updateT   s5   € ä%KÈEÐSYÓ%ZÑ"Ð˜7à×ÒÐ"3Ñ3ÕØ�
Š
�gÑŽ
r%   c                 óB   — t        | j                  | j                  «      S )z2Compute mean absolute percentage error over state.)r	   r   r   )r"   s    r$   Úcomputez#MeanAbsolutePercentageError.compute[   s   € ä6°t×7MÑ7MÈtÏzÉzÓZÐZr%   ÚvalÚaxc                 ó&   — | j                  ||«      S )a;  Plot a single or multiple values from the metric.

        Args:
            val: Either a single result from calling `metric.forward` or `metric.compute` or a list of these results.
                If no value is provided, will automatically call `metric.compute` and plot that result.
            ax: An matplotlib axis object. If provided will add plot to that axis

        Returns:
            Figure and Axes object

        Raises:
            ModuleNotFoundError:
                If `matplotlib` is not installed

        .. plot::
            :scale: 75

            >>> from torch import randn
            >>> # Example plotting a single value
            >>> from torchmetrics.regression import MeanAbsolutePercentageError
            >>> metric = MeanAbsolutePercentageError()
            >>> metric.update(randn(10,), randn(10,))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> from torch import randn
            >>> # Example plotting multiple values
            >>> from torchmetrics.regression import MeanAbsolutePercentageError
            >>> metric = MeanAbsolutePercentageError()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(randn(10,), randn(10,)))
            >>> fig, ax = metric.plot(values)

        )Ú_plot)r"   r-   r.   s      r$   Úplotz MeanAbsolutePercentageError.plot_   s   € ðP �z‰z˜#˜rÓ"Ð"r%   )NN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   ÚboolÚ__annotations__r   r   r   Úfloatr   r   r    r*   r,   r   r   r   r   r   r1   Ú__classcell__)r#   s   @r$   r   r      sÂ   ø… ñ!ðF #Ð�tÓ"Ø"Ð�dÓ"Ø#Ð�tÓ#Ø!Ð�eÓ!àÓØƒMðKàðKð 
õKð˜Fð ¨Fð °tó ð[˜ó [ð
 _cñ(#Ø˜E &¨(°6Ñ*:Ð":Ñ;Ñ<ð(#ØIQÐRZÑI[ð(#à	÷(#r%   r   N)Úcollections.abcr   Útypingr   r   r   Útorchr   r   Ú'torchmetrics.functional.regression.maper	   r
   Útorchmetrics.metricr   Útorchmetrics.utilities.importsr   Útorchmetrics.utilities.plotr   r   Ú__doctest_skip__r   r   r%   r$   Ú<module>rB      s=   ðõ %ß 'Ñ 'ç  ÷õ 'Ý @ß @áØ:Ð;Ðôh# &õ h#r%   