
    i                         d dl mZ d dl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sdgZ G d de      Zy)    )Sequence)AnyOptionalUnionN)Tensor)Literal)_theils_u_compute_theils_u_update)_nominal_input_validation)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzTheilsU.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<   d	Ze
ed
<   eed<   	 	 ddeded   dee
   deddf
 fdZde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 )TheilsUa  Compute `Theil's U`_ statistic measuring the association between two categorical (nominal) data series.

    .. math::
        U(X|Y) = \frac{H(X) - H(X|Y)}{H(X)}

    where :math:`H(X)` is entropy of variable :math:`X` while :math:`H(X|Y)` is the conditional entropy of :math:`X`
    given :math:`Y`. It is also know as the Uncertainty Coefficient. Theils's U is an asymmetric coefficient, i.e.
    :math:`TheilsU(preds, target) \neq TheilsU(target, preds)`, so the order of the inputs matters. The output values
    lies in [0, 1], where a 0 means y has no information about x while value 1 means y has complete information about x.

    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 (called X in the above definition) 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 (called Y in the above definition) with shape ``(batch_size,)`` or ``(batch_size, num_classes)``,
      respectively.

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

    - ``theils_u`` (:class:`~torch.Tensor`): Scalar tensor containing the Theil's U statistic.

    Args:
        num_classes: Integer specifying 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.

    Example::

        >>> from torch import randint
        >>> from torchmetrics.nominal import TheilsU
        >>> preds = randint(10, (10,))
        >>> target = randint(10, (10,))
        >>> metric = TheilsU(num_classes=10)
        >>> metric(preds, target)
        tensor(0.8530)

    Ffull_state_updateis_differentiableThigher_is_better        plot_lower_boundg      ?plot_upper_boundconfmatnum_classesnan_strategy)replacedropnan_replace_valuekwargsreturnNc                     t        |   di | || _        t        ||       || _        || _        | j                  dt        j                  ||      d       y )Nr   sum)dist_reduce_fx )	super__init__r   r   r   r   	add_statetorchzeros)selfr   r   r   r   	__class__s        r/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/nominal/theils_u.pyr%   zTheilsU.__init__P   sV     	"6"&!,0AB(!2y%++k;"GX]^    predstargetc                     t        ||| j                  | j                  | j                        }| xj                  |z  c_        y)z*Update state with predictions and targets.N)r
   r   r   r   r   )r)   r-   r.   r   s       r+   updatezTheilsU.update`   s5    "5&$2B2BDDUDUW[WmWmnr,   c                 ,    t        | j                        S )zCompute Theil's U statistic.)r	   r   )r)   s    r+   computezTheilsU.computee   s     ..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 TheilsU
            >>> metric = TheilsU(num_classes=10)
            >>> metric.update(torch.randint(10, (10,)), torch.randint(10, (10,)))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

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

        )_plot)r)   r3   r4   s      r+   plotzTheilsU.ploti   s    L zz#r""r,   )r   r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   floatr   r   intr   r   r   r%   r0   r2   r   r   r   r   r7   __classcell__)r*   s   @r+   r   r      s    'R $t##t#!d!!e!!e!O
 4=-0	__ /0_ $E?	_
 _ 
_  F  F  t  
/ /&#fhv&6<= &#(S[J\ &#hv &#r,   r   )collections.abcr   typingr   r   r   r'   r   typing_extensionsr   (torchmetrics.functional.nominal.theils_ur	   r
   %torchmetrics.functional.nominal.utilsr   torchmetrics.metricr   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r#   r,   r+   <module>rJ      sB    % ' '   % X K & @ @&'p#f p#r,   