o
    .wi                     @   s   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s9dgZG d	d
 d
eZdS )    )Sequence)AnyOptionalUnion)Tensortensor)1_symmetric_mean_absolute_percentage_error_compute0_symmetric_mean_absolute_percentage_error_update)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPE)SymmetricMeanAbsolutePercentageError.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< d	Ze
ed
< eed< eed< deddf fddZdededdfddZdefddZ	ddeeeee f  dee defddZ  ZS )$SymmetricMeanAbsolutePercentageErroraG  Compute symmetric mean absolute percentage error (`SMAPE`_).

    .. math:: \text{SMAPE} = \frac{2}{n}\sum_1^n\frac{|   y_i - \hat{y_i} |}{\max(| y_i | + | \hat{y_i} |, \epsilon)}

    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:

    - ``smape`` (:class:`~torch.Tensor`): A tensor with non-negative floating point smape value between 0 and 2

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

    Example:
        >>> from torchmetrics.regression import SymmetricMeanAbsolutePercentageError
        >>> target = tensor([1, 10, 1e6])
        >>> preds = tensor([0.9, 15, 1.2e6])
        >>> smape = SymmetricMeanAbsolutePercentageError()
        >>> smape(preds, target)
        tensor(0.2290)

    Tis_differentiableFhigher_is_betterfull_state_update        plot_lower_boundg       @plot_upper_boundsum_abs_per_errortotalkwargsreturnNc                    s>   t  jdi | | jdtddd | jdtddd d S )Nr   r   sum)defaultdist_reduce_fxr    )super__init__	add_stater   )selfr   	__class__r   c/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/regression/symmetric_mape.pyr   E   s   z-SymmetricMeanAbsolutePercentageError.__init__predstargetc                 C   s.   t ||\}}|  j|7  _|  j|7  _dS )z*Update state with predictions and targets.N)r	   r   r   )r!   r%   r&   r   num_obsr   r   r$   updateN   s   z+SymmetricMeanAbsolutePercentageError.updatec                 C   s   t | j| jS )z2Compute mean absolute percentage error over state.)r   r   r   )r!   r   r   r$   computeU   s   z,SymmetricMeanAbsolutePercentageError.computevalaxc                 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 SymmetricMeanAbsolutePercentageError
            >>> metric = SymmetricMeanAbsolutePercentageError()
            >>> 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 SymmetricMeanAbsolutePercentageError
            >>> metric = SymmetricMeanAbsolutePercentageError()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(randn(10,), randn(10,)))
            >>> fig, ax = metric.plot(values)

        )_plot)r!   r*   r+   r   r   r$   plotY   s   (r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   r   r   r(   r)   r   r   r   r   r   r-   __classcell__r   r   r"   r$   r      s0   
 	r   N)collections.abcr   typingr   r   r   torchr   r   1torchmetrics.functional.regression.symmetric_maper   r	   torchmetrics.metricr
   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r   r   r   r$   <module>   s   