o
    .wi                     @   s   d dl mZ d dl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sEd
gZG dd deZdS )    )Sequence)AnyListOptional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de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 )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   num_outputskwargsreturnNc                    sd   t  jdi | td t|ts|dk rt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   zDExpected argument `num_outputs` to be an int larger than 0, but got r   cat)defaultdist_reduce_fxr    )super__init__r   
isinstanceint
ValueErrorr   	add_state)selfr   r   	__class__r    ]/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/regression/spearman.pyr"   Q   s   zSpearmanCorrCoef.__init__c                 C   s@   t ||| jd\}}| j|| j | j|| j dS )z*Update state with predictions and targets.)r   N)r	   r   r   appendtodtyper   r'   r   r   r    r    r*   updateb   s   zSpearmanCorrCoef.updatec                 C   s   t | j}t | j}t||S )z+Compute Spearman's correlation coefficient.)r   r   r   r   r.   r    r    r*   computeh   s   


zSpearmanCorrCoef.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 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)

        )_plot)r'   r1   r2   r    r    r*   plotn   s   (r   )r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   r   r$   r   r"   r/   r0   r   r   r   r   r   r4   __classcell__r    r    r(   r*   r      s6   
 )r   N)collections.abcr   typingr   r   r   r   torchr   +torchmetrics.functional.regression.spearmanr   r	   torchmetrics.metricr
   torchmetrics.utilitiesr   torchmetrics.utilities.datar   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r    r    r    r*   <module>   s   