o
    .wiw                     @   s   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sMdgZG dd deZdS )    )log)AnyListOptionalSequenceUnioncastN)Tensor)Literal)_jsd_compute_jsd_update)Metric)dim_zero_cat)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEJensenShannonDivergence.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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dZdededdfddZdefddZ	d!deeeee f  dee defddZ  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meanlog_prob	reductionr   sumnoneNkwargsreturnNc                    s   t  jdi | t|tstd| || _g d}||vr*td| d| || _| jdv r>| jdt	
ddd	 n| jdg d
d	 | jdt	
ddd	 d S )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__r'   b/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/regression/js_divergence.pyr)   \   s   

z JensenShannonDivergence.__init__pqc                 C   sh   t ||| j\}}| jdu s| jdkr ttt | j| dS tt| j|  | _|  j	|7  _	dS )zUpdate the metric state.Nr"   )
r   r   r   r   r   r	   r   appendr!   r   )r1   r6   r7   r   r   r'   r'   r5   updater   s
   zJensenShannonDivergence.updatec                 C   s:   | 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   )r1   r   r'   r'   r5   compute{   s
   

zJensenShannonDivergence.computevalaxc                 C   s   |  ||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)r1   r;   r<   r'   r'   r5   plot   s   (r   )Fr   )NN)__name__
__module____qualname____doc__r   r+   __annotations__r   r   r   floatr   r   r   r	   r   r
   r   r)   r9   r:   r   r   r   r   r>   __classcell__r'   r'   r3   r5   r      s<   
 3	
r   )mathr   typingr   r   r   r   r   r   r/   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'   r'   r'   r5   <module>   s    