a
    dw                     @   s   d dl mZmZmZmZmZ d dl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 d dlmZmZ esd	gZG d
d deZdS )    )AnyListOptionalSequenceUnion)Tensor)_spearman_corrcoef_compute_spearman_corrcoef_update)Metric)rank_zero_warn)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPESpearmanCorrCoef.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 ed< ee ed< 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 )SpearmanCorrCoefa  Compute `spearmans rank correlation coefficient`_.

    .. math:
        r_s = = \frac{cov(rg_x, rg_y)}{\sigma_{rg_x} * \sigma_{rg_y}}

    where :math:`rg_x` and :math:`rg_y` are the rank associated to the variables :math:`x` and :math:`y`.
    Spearmans correlations coefficient corresponds to the standard pearsons correlation coefficient calculated
    on the rank variables.

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

    - ``preds`` (:class:`~torch.Tensor`): Predictions from model in float tensor with shape ``(N,d)``
    - ``target`` (:class:`~torch.Tensor`): Ground truth values in float tensor with shape ``(N,d)``

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

    - ``spearman`` (:class:`~torch.Tensor`): A tensor with the spearman correlation(s)

    Args:
        num_outputs: Number of outputs in multioutput setting
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example (single output regression):
        >>> from torch import tensor
        >>> from torchmetrics.regression import SpearmanCorrCoef
        >>> target = tensor([3, -0.5, 2, 7])
        >>> preds = tensor([2.5, 0.0, 2, 8])
        >>> spearman = SpearmanCorrCoef()
        >>> spearman(preds, target)
        tensor(1.0000)

    Example (multi output regression):
        >>> from torchmetrics.regression import SpearmanCorrCoef
        >>> target = tensor([[3, -0.5], [2, 7]])
        >>> preds = tensor([[2.5, 0.0], [2, 8]])
        >>> spearman = SpearmanCorrCoef(num_outputs=2)
        >>> spearman(preds, target)
        tensor([1.0000, 1.0000])

    Fis_differentiableThigher_is_betterfull_state_updateg      plot_lower_boundg      ?plot_upper_boundpredstarget   N)num_outputskwargsreturnc                    s^   t  jf i | td t|ts4|dk r4td|| _| jdg dd | jdg dd d S )NzMetric `SpearmanCorrcoef` will save all targets and predictions in the buffer. For large datasets, this may lead to large memory footprint.r   zQExpected argument `num_outputs` to be an int larger than 0, but got {num_outputs}r   cat)defaultZdist_reduce_fxr   )super__init__r   
isinstanceint
ValueErrorr   Z	add_state)selfr   r   	__class__ i/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/regression/spearman.pyr    O   s    zSpearmanCorrCoef.__init__)r   r   r   c                 C   s0   t ||| jd\}}| j| | j| dS )z*Update state with predictions and targets.)r   N)r	   r   r   appendr   r$   r   r   r'   r'   r(   update`   s    zSpearmanCorrCoef.update)r   c                 C   s   t | j}t | j}t||S )z+Compute Spearman's correlation coefficient.)r   r   r   r   r*   r'   r'   r(   computef   s    

zSpearmanCorrCoef.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 SpearmanCorrCoef
            >>> metric = SpearmanCorrCoef()
            >>> 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 SpearmanCorrCoef
            >>> metric = SpearmanCorrCoef()
            >>> 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(   plotl   s    (r   )r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   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   r   Ztorchr   Z+torchmetrics.functional.regression.spearmanr   r	   Ztorchmetrics.metricr
   Ztorchmetrics.utilitiesr   Ztorchmetrics.utilities.datar   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r'   r'   r'   r(   <module>   s   