
    i                          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sd
gZ G d de      Zy)    )Sequence)AnyListOptionalUnion)Tensor)Literal)_fleiss_kappa_compute_fleiss_kappa_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzFleissKappa.plotc                        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ZdeddfdZdefdZddeeee   df   dee   defdZ x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                 x    t        |   di | |dvrt        d      || _        | j	                  dg d       y )Nr   z5Argument ``mode`` must be one of 'counts' or 'probs'.r   cat)defaultdist_reduce_fx )super__init__
ValueErrorr   	add_state)selfr   r   	__class__s      v/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/nominal/fleiss_kappa.pyr#   zFleissKappa.__init__R   sA    "6"**TUU	xEB    ratingsc                 f    t        || j                        }| j                  j                  |       y)z+Updates the counts for fleiss kappa metric.N)r   r   r   append)r&   r*   r   s      r(   updatezFleissKappa.updateY   s$    %gtyy96"r)   c                 B    t        | j                        }t        |      S )zComputes Fleiss' kappa.)r   r   r
   )r&   r   s     r(   computezFleissKappa.compute^   s    dkk*$V,,r)   valaxc                 &    | j                  ||      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&   r0   r1   s      r(   plotzFleissKappa.plotc   s    L zz#r""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   r4   __classcell__)r'   s   @r(   r   r      s    +Z $t##t#!d!!e!LCW%67 Cc CVZ C#f # #
- -
&#fhv&6<= &#(S[J\ &#hv &#r)   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(   <module>rG      s?    % - -  % d & 4 @ @*+k#& k#r)   