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 d dlmZmZ esvdgZG d	d
 d
eZdS )    )AnyOptionalSequenceUnion)Tensortensor)_minkowski_distance_compute_minkowski_distance_update)Metric)TorchMetricsUserError)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEMinkowskiDistance.plotc                       s   e Zd ZU dZdZee ed< dZee ed< dZ	ee ed< dZ
eed< eed	< e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 )MinkowskiDistancea  Compute `Minkowski Distance`_.

    .. math::
        d_{\text{Minkowski}} = \sum_{i}^N (| y_i - \hat{y_i} |^p)^\frac{1}{p}

    where
        :math: `y` is a tensor of target values,
        :math: `\hat{y}` is a tensor of predictions,
        :math: `\p` is a non-negative integer or floating-point number

    This metric can be seen as generalized version of the standard euclidean distance which corresponds to minkowski
    distance with p=2.

    Args:
        p: int or float larger than 1, exponent to which the difference between preds and target is to be raised
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example:
        >>> from torchmetrics.regression import MinkowskiDistance
        >>> target = tensor([1.0, 2.8, 3.5, 4.5])
        >>> preds = tensor([6.1, 2.11, 3.1, 5.6])
        >>> minkowski_distance = MinkowskiDistance(3)
        >>> minkowski_distance(preds, target)
        tensor(5.1220)

    Tis_differentiableFhigher_is_betterfull_state_update        plot_lower_boundminkowski_dist_sumN)pkwargsreturnc                    sT   t  jf i | t|ttfr(|dks6td| || _| jdtddd d S )N   z>Argument ``p`` must be a float or int greater than 1, but got r   r   sum)defaultZdist_reduce_fx)	super__init__
isinstancefloatintr   r   Z	add_stater   )selfr   r   	__class__ j/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/regression/minkowski.pyr   @   s
    zMinkowskiDistance.__init__)predstargetsr   c                 C   s    t ||| j}|  j|7  _dS )z*Update state with predictions and targets.N)r	   r   r   )r"   r'   r(   r   r%   r%   r&   updateH   s    zMinkowskiDistance.update)r   c                 C   s   t | j| jS )zCompute metric.)r   r   r   )r"   r%   r%   r&   computeM   s    zMinkowskiDistance.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 MinkowskiDistance
            >>> metric = MinkowskiDistance(p=3)
            >>> 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 MinkowskiDistance
            >>> metric = MinkowskiDistance(p=3)
            >>> 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&   plotQ   s    (r   )NN)__name__
__module____qualname____doc__r   r   bool__annotations__r   r   r   r    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.minkowskir   r	   Ztorchmetrics.metricr
   Z!torchmetrics.utilities.exceptionsr   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r%   r%   r%   r&   <module>   s   