a
    d                     @   s   d dl mZmZmZmZ d dlZd dl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mZ esd
gZG dd deZdS )    )AnyOptionalSequenceUnionN)Tensor)Literal))_pearsons_contingency_coefficient_compute(_pearsons_contingency_coefficient_update)_nominal_input_validation)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPE#PearsonsContingencyCoefficient.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< deed eeee
f  edd fddZeeddddZedddZdeeee df ee edddZ  ZS )PearsonsContingencyCoefficienta	  Compute `Pearson's Contingency Coefficient`_ statistic.

    This metric measures the association between two categorical (nominal) data series.

    .. math::
        Pearson = \sqrt{\frac{\chi^2 / n}{1 + \chi^2 / n}}

    where

    .. math::
        \chi^2 = \sum_{i,j} \ frac{\left(n_{ij} - \frac{n_{i.} n_{.j}}{n}\right)^2}{\frac{n_{i.} n_{.j}}{n}}

    where :math:`n_{ij}` denotes the number of times the values :math:`(A_i, B_j)` are observed with :math:`A_i, B_j`
    represent frequencies of values in ``preds`` and ``target``, respectively. Pearson's Contingency Coefficient is a
    symmetric coefficient, i.e. :math:`Pearson(preds, target) = Pearson(target, preds)`, so order of input arguments
    does not matter. The output values lies in [0, 1] with 1 meaning the perfect association.

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

    - ``preds`` (:class:`~torch.Tensor`): Either 1D or 2D tensor of categorical (nominal) data from the first data
      series with shape ``(batch_size,)`` or ``(batch_size, num_classes)``, respectively.
    - ``target`` (:class:`~torch.Tensor`): Either 1D or 2D tensor of categorical (nominal) data from the second data
      series with shape ``(batch_size,)`` or ``(batch_size, num_classes)``, respectively.

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

    - ``pearsons_cc`` (:class:`~torch.Tensor`): Scalar tensor containing the Pearsons Contingency Coefficient statistic.

    Args:
        num_classes: Integer specifing the number of classes
        nan_strategy: Indication of whether to replace or drop ``NaN`` values
        nan_replace_value: Value to replace ``NaN``s when ``nan_strategy = 'replace'``
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Raises:
        ValueError:
            If `nan_strategy` is not one of `'replace'` and `'drop'`
        ValueError:
            If `nan_strategy` is equal to `'replace'` and `nan_replace_value` is not an `int` or `float`

    Example::

        >>> from torchmetrics.nominal import PearsonsContingencyCoefficient
        >>> _ = torch.manual_seed(42)
        >>> preds = torch.randint(0, 4, (100,))
        >>> target = torch.round(preds + torch.randn(100)).clamp(0, 4)
        >>> pearsons_contingency_coefficient = PearsonsContingencyCoefficient(num_classes=5)
        >>> pearsons_contingency_coefficient(preds, target)
        tensor(0.6948)

    Ffull_state_updateis_differentiableThigher_is_better        plot_lower_boundg      ?plot_upper_boundconfmatreplace)r   ZdropN)num_classesnan_strategynan_replace_valuekwargsreturnc                    sJ   t  jf i | || _t|| || _|| _| jdt||dd d S )Nr   sum)Zdist_reduce_fx)	super__init__r   r
   r   r   Z	add_statetorchzeros)selfr   r   r   r   	__class__ e/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/nominal/pearson.pyr    ]   s    
z'PearsonsContingencyCoefficient.__init__)predstargetr   c                 C   s(   t ||| j| j| j}|  j|7  _dS )z*Update state with predictions and targets.N)r	   r   r   r   r   )r#   r(   r)   r   r&   r&   r'   updatem   s    z%PearsonsContingencyCoefficient.update)r   c                 C   s
   t | jS )z4Compute Pearson's Contingency Coefficient statistic.)r   r   )r#   r&   r&   r'   computet   s    z&PearsonsContingencyCoefficient.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

            >>> # Example plotting a single value
            >>> import torch
            >>> from torchmetrics.nominal import PearsonsContingencyCoefficient
            >>> metric = PearsonsContingencyCoefficient(num_classes=5)
            >>> metric.update(torch.randint(0, 4, (100,)), torch.randint(0, 4, (100,)))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> # Example plotting multiple values
            >>> import torch
            >>> from torchmetrics.nominal import PearsonsContingencyCoefficient
            >>> metric = PearsonsContingencyCoefficient(num_classes=5)
            >>> values = [ ]
            >>> for _ in range(10):
            ...     values.append(metric(torch.randint(0, 4, (100,)), torch.randint(0, 4, (100,))))
            >>> fig_, ax_ = metric.plot(values)

        )Z_plot)r#   r,   r-   r&   r&   r'   plotx   s    &r   )r   r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   intr   r   r   r   r    r*   r+   r   r   r   r.   __classcell__r&   r&   r$   r'   r   !   s&   
4  r   )typingr   r   r   r   r!   r   Ztyping_extensionsr   Z'torchmetrics.functional.nominal.pearsonr   r	   Z%torchmetrics.functional.nominal.utilsr
   Ztorchmetrics.metricr   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r&   r&   r&   r'   <module>   s   