a
    dE                     @   s   d dl mZmZmZmZm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ListOptionalSequenceUnion)Tensor)Literal)_fleiss_kappa_compute_fleiss_kappa_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEFleissKappa.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< ee ed	< ded
 edd fddZ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 )FleissKappaa  Calculatees `Fleiss kappa`_ a statistical measure for inter agreement between raters.

    .. math::
        \kappa = \frac{\bar{p} - \bar{p_e}}{1 - \bar{p_e}}

    where :math:`\bar{p}` is the mean of the agreement probability over all raters and :math:`\bar{p_e}` is the mean
    agreement probability over all raters if they were randomly assigned. If the raters are in complete agreement then
    the score 1 is returned, if there is no agreement among the raters (other than what would be expected by chance)
    then a score smaller than 0 is returned.

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

    - ``ratings`` (:class:`~torch.Tensor`): Ratings of shape ``[n_samples, n_categories]`` or
      ``[n_samples, n_categories, n_raters]`` depedenent on ``mode``. If ``mode`` is ``counts``, ``ratings`` must be
      integer and contain the number of raters that chose each category. If ``mode`` is ``probs``, ``ratings`` must be
      floating point and contain the probability/logits that each rater chose each category.

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

    - ``fleiss_k`` (:class:`~torch.Tensor`): A float scalar tensor with the calculated Fleiss' kappa score.

    Args:
        mode: Whether `ratings` will be provided as counts or probabilities.
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Example:
        >>> # Ratings are provided as counts
        >>> import torch
        >>> from torchmetrics.nominal import FleissKappa
        >>> _ = torch.manual_seed(42)
        >>> ratings = torch.randint(0, 10, size=(100, 5)).long()  # 100 samples, 5 categories, 10 raters
        >>> metric = FleissKappa(mode='counts')
        >>> metric(ratings)
        tensor(0.0089)

    Example:
        >>> # Ratings are provided as probabilities
        >>> import torch
        >>> from torchmetrics.nominal import FleissKappa
        >>> _ = torch.manual_seed(42)
        >>> ratings = torch.randn(100, 5, 10).softmax(dim=1)  # 100 samples, 5 categories, 10 raters
        >>> metric = FleissKappa(mode='probs')
        >>> metric(ratings)
        tensor(-0.0105)

    Ffull_state_updateis_differentiableThigher_is_betterg      ?plot_upper_boundcountsr   ZprobsN)modekwargsreturnc                    s<   t  jf i | |dvr"td|| _| jdg dd d S )Nr   z5Argument ``mode`` must be one of 'counts' or 'probs'.r   cat)defaultZdist_reduce_fx)super__init__
ValueErrorr   Z	add_state)selfr   r   	__class__ j/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/nominal/fleiss_kappa.pyr   S   s
    zFleissKappa.__init__)ratingsr   c                 C   s   t || j}| j| dS )z+Updates the counts for fleiss kappa metric.N)r
   r   r   append)r    r%   r   r#   r#   r$   updateZ   s    zFleissKappa.update)r   c                 C   s   t | j}t|S )zComputes Fleiss' kappa.)r   r   r	   )r    r   r#   r#   r$   compute_   s    
zFleissKappa.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 FleissKappa
            >>> metric = FleissKappa(mode="probs")
            >>> metric.update(torch.randn(100, 5, 10).softmax(dim=1))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> # Example plotting multiple values
            >>> import torch
            >>> from torchmetrics.nominal import FleissKappa
            >>> metric = FleissKappa(mode="probs")
            >>> values = [ ]
            >>> for _ in range(10):
            ...     values.append(metric(torch.randn(100, 5, 10).softmax(dim=1)))
            >>> fig_, ax_ = metric.plot(values)

        )Z_plot)r    r)   r*   r#   r#   r$   plotd   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+   __classcell__r#   r#   r!   r$   r      s   
/r   N)typingr   r   r   r   r   Ztorchr   Ztyping_extensionsr   Z,torchmetrics.functional.nominal.fleiss_kappar	   r
   Ztorchmetrics.metricr   Ztorchmetrics.utilities.datar   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_skip__r   r#   r#   r#   r$   <module>   s   