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
 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sEd
gZG dd deZdS )    )Sequence)AnyListOptional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d
ed deddf fddZdeddfddZdefddZddeeee df dee defddZ  ZS )FleissKappaac  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
        >>> from torch import randint
        >>> from torchmetrics.nominal import FleissKappa
        >>> ratings = 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
        >>> from torch import randn
        >>> from torchmetrics.nominal import FleissKappa
        >>> ratings = randn(100, 5, 10).softmax(dim=1)  # 100 samples, 5 categories, 10 raters
        >>> metric = FleissKappa(mode='probs')
        >>> metric(ratings)
        tensor(-0.0075)

    Ffull_state_updateis_differentiableThigher_is_betterg      ?plot_upper_boundcountsmoder   probskwargsreturnNc                    s<   t  jd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)defaultdist_reduce_fx )super__init__
ValueErrorr   	add_state)selfr   r   	__class__r   ^/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/nominal/fleiss_kappa.pyr!   R   s
   zFleissKappa.__init__ratingsc                 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'   updateY   s   zFleissKappa.updatec                 C   s   t | j}t|S )zComputes Fleiss' kappa.)r   r   r	   )r$   r   r   r   r'   compute^   s   
zFleissKappa.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

            >>> # 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)

        )_plot)r$   r,   r-   r   r   r'   plotc   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   
 - 2r   N)collections.abcr   typingr   r   r   r   torchr   typing_extensionsr   ,torchmetrics.functional.nominal.fleiss_kappar	   r
   torchmetrics.metricr   torchmetrics.utilities.datar   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r   r   r   r'   <module>   s   