a
    d                     @   s~   d dl mZ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sjdgZG dd	 d	eZd
S )    )AnyOptionalSequenceUnion)Tensortensor)'_mean_absolute_percentage_error_compute&_mean_absolute_percentage_error_update)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPE MeanAbsolutePercentageError.plotc                       s   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
< edd fddZeeddddZedddZdeeeee f  ee edddZ  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 arbitarily 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totalN)kwargsreturnc                    s>   t  jf i | | jdtddd | jdtddd d S )Nr   r   sum)defaultZdist_reduce_fxr   )super__init__Z	add_stater   )selfr   	__class__ e/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/regression/mape.pyr   I   s    z$MeanAbsolutePercentageError.__init__)predstargetr   c                 C   s.   t ||\}}|  j|7  _|  j|7  _dS )z*Update state with predictions and targets.N)r	   r   r   )r   r"   r#   r   Znum_obsr    r    r!   updateR   s    z"MeanAbsolutePercentageError.update)r   c                 C   s   t | j| jS )z2Compute mean absolute percentage error over state.)r   r   r   )r   r    r    r!   computeY   s    z#MeanAbsolutePercentageError.compute)valaxr   c                 C   s   |  ||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)

        )Z_plot)r   r&   r'   r    r    r!   plot]   s    (r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   r   r$   r%   r   r   r   r   r   r(   __classcell__r    r    r   r!   r      s"   
"	 r   N)typingr   r   r   r   Ztorchr   r   Z'torchmetrics.functional.regression.maper   r	   Ztorchmetrics.metricr
   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r    r    r    r!   <module>   s   