
    iw                         d dl mZ d dlmZmZ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sdgZ G d de      Zy)    )log)AnyListOptionalSequenceUnioncastN)Tensor)Literal)_jsd_compute_jsd_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEzJensenShannonDivergence.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d	      Ze
ed
<   eeee   f   ed<   eed<   	 	 ddeded   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e   f      dee   defdZ xZS )JensenShannonDivergenceaa  Compute the `Jensen-Shannon divergence`_.

    .. math::
        D_{JS}(P||Q) = \frac{1}{2} D_{KL}(P||M) + \frac{1}{2} D_{KL}(Q||M)

    Where :math:`P` and :math:`Q` are probability distributions where :math:`P` usually represents a distribution
    over data and :math:`Q` is often a prior or approximation of :math:`P`. :math:`D_{KL}` is the `KL divergence`_ and
    :math:`M` is the average of the two distributions. It should be noted that the Jensen-Shannon divergence is a
    symmetrical metric i.e. :math:`D_{JS}(P||Q) = D_{JS}(Q||P)`.

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

    - ``p`` (:class:`~torch.Tensor`): a data distribution with shape ``(N, d)``
    - ``q`` (:class:`~torch.Tensor`): prior or approximate distribution with shape ``(N, d)``

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

    - ``js_divergence`` (:class:`~torch.Tensor`): A tensor with the Jensen-Shannon divergence

    Args:
        log_prob: bool indicating if input is log-probabilities or probabilities. If given as probabilities,
            will normalize to make sure the distributes sum to 1.
        reduction:
            Determines how to reduce over the ``N``/batch dimension:

            - ``'mean'`` [default]: Averages score across samples
            - ``'sum'``: Sum score across samples
            - ``'none'`` or ``None``: Returns score per sample

        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Raises:
        TypeError:
            If ``log_prob`` is not an ``bool``.
        ValueError:
            If ``reduction`` is not one of ``'mean'``, ``'sum'``, ``'none'`` or ``None``.

    .. attention::
        Half precision is only support on GPU for this metric.

    Example:
        >>> from torch import tensor
        >>> from torchmetrics.regression import JensenShannonDivergence
        >>> p = tensor([[0.1, 0.9], [0.2, 0.8], [0.3, 0.7]])
        >>> q = tensor([[0.3, 0.7], [0.4, 0.6], [0.5, 0.5]])
        >>> js_div = JensenShannonDivergence()
        >>> js_div(p, q)
        tensor(0.0259)

    Tis_differentiableFhigher_is_betterfull_state_update        plot_lower_bound   plot_upper_boundmeasurestotallog_prob	reductionmeansumnoneNkwargsreturnNc                    t        |   di | t        |t              st	        d|       || _        g d}||vrt        d| d|       || _        | j                  dv r(| j                  dt        j                  d      d	       n| j                  dg d
	       | j                  dt        j                  d      d	       y )Nz0Expected argument `log_prob` to be bool but got r    z+Expected argument `reduction` to be one of z	 but got )r!   r"   r   r   r"   )dist_reduce_fxcatr   r    )super__init__
isinstancebool	TypeErrorr   
ValueErrorr   	add_statetorchtensor)selfr   r   r$   allowed_reduction	__class__s        z/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/regression/js_divergence.pyr+   z JensenShannonDivergence.__init__\   s     	"6"(D)NxjYZZ 9--JK\J]]fgpfqrss">>_,NN:u||C'8NONN:r%N@wQF    pqc                 Z   t        ||| j                        \  }}| j                  | j                  dk(  r1t        t        t
           | j                        j                  |       yt        t
        | j                        |j                         z   | _        | xj                  |z  c_	        y)zUpdate the metric state.Nr#   )
r   r   r   r	   r   r
   r   appendr"   r   )r3   r8   r9   r   r   s        r6   updatezJensenShannonDivergence.updater   su    %aDMM:%>>!T^^v%=ft}}-44X> 7(,,.HDMJJ%Jr7   c                     | j                   dv r*t        t        t        t           | j
                              nt        t        | j
                        }t        || j                  | j                         S )zCompute metric.)r#   N)r   r   r	   r   r
   r   r   r   )r3   r   s     r6   computezJensenShannonDivergence.compute{   sU     ~~/ d6lDMM:;fdmm, 	
 Hdjj$..AAr7   valaxc                 &    | j                  ||      S )ao  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

            >>> from torch import randn
            >>> # Example plotting a single value
            >>> from torchmetrics.regression import JensenShannonDivergence
            >>> metric = JensenShannonDivergence()
            >>> metric.update(randn(10,3).softmax(dim=-1), randn(10,3).softmax(dim=-1))
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> from torch import randn
            >>> # Example plotting multiple values
            >>> from torchmetrics.regression import JensenShannonDivergence
            >>> metric = JensenShannonDivergence()
            >>> values = []
            >>> for _ in range(10):
            ...     values.append(metric(randn(10,3).softmax(dim=-1), randn(10,3).softmax(dim=-1)))
            >>> fig, ax = metric.plot(values)

        )_plot)r3   r?   r@   s      r6   plotzJensenShannonDivergence.plot   s    P zz#r""r7   )Fr!   )NN)__name__
__module____qualname____doc__r   r-   __annotations__r   r   r   floatr   r   r   r
   r   r   r   r+   r<   r>   r   r   r   r   rC   __classcell__)r5   s   @r6   r   r      s   1f #t""d"#t#!e!!!fe$FDL())M :@GG 67G 	G
 
G,   6  d  B B _c(#E&(6*:":;<(#IQRZI[(#	(#r7   r   )mathr   typingr   r   r   r   r   r	   r1   r
   typing_extensionsr   0torchmetrics.functional.regression.js_divergencer   r   torchmetrics.metricr   torchmetrics.utilities.datar   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_skip__r   r)   r7   r6   <module>rT      sB     = =   % V & 4 @ @67M#f M#r7   