o
    .wi                     @   s   d dl mZ d dlmZmZmZ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 d dlmZmZ d	d
giZesDdgZG dd	 d	eZdS )    )Sequence)AnyCallableOptionalUnion)Tensortensor)Literal)permutation_invariant_training)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEPermutationInvariantTrainingpit!PermutationInvariantTraining.plotc                       s   e Zd ZU dZdZeed< dZeed< eed< eed< dZ	e
e ed	< dZe
e ed
< 		d deded 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 df de
e defddZ  ZS )"r   aQ  Calculate `Permutation invariant training`_ (PIT).

    This metric can evaluate models for speaker independent multi-talker speech separation in a permutation
    invariant way.

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

    - ``preds`` (:class:`~torch.Tensor`): float tensor with shape ``(batch_size,num_speakers,...)``
    - ``target`` (:class:`~torch.Tensor`): float tensor with shape ``(batch_size,num_speakers,...)``

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

    - ``pesq`` (:class:`~torch.Tensor`): float scalar tensor with average PESQ value over samples

    Args:
        metric_func:
            a metric function accept a batch of target and estimate.

            if `mode`==`'speaker-wise'`, then ``metric_func(preds[:, i, ...], target[:, j, ...])`` is called
            and expected to return a batch of metric tensors ``(batch,)``;

            if `mode`==`'permutation-wise'`, then ``metric_func(preds[:, p, ...], target[:, :, ...])`` is called,
            where `p` is one possible permutation, e.g. [0,1] or [1,0] for 2-speaker case, and expected to return
            a batch of metric tensors ``(batch,)``;
        mode:
            can be `'speaker-wise'` or `'permutation-wise'`.
        eval_func:
            the function to find the best permutation, can be 'min' or 'max', i.e. the smaller the better
            or the larger the better.
        kwargs: Additional keyword arguments for either the ``metric_func`` or distributed communication,
            see :ref:`Metric kwargs` for more info.

    Example:
        >>> from torch import randn
        >>> from torchmetrics.audio import PermutationInvariantTraining
        >>> from torchmetrics.functional.audio import scale_invariant_signal_noise_ratio
        >>> preds = randn(3, 2, 5) # [batch, spk, time]
        >>> target = randn(3, 2, 5) # [batch, spk, time]
        >>> pit = PermutationInvariantTraining(scale_invariant_signal_noise_ratio,
        ...     mode="speaker-wise", eval_func="max")
        >>> pit(preds, target)
        tensor(-2.1065)

    Ffull_state_updateTis_differentiablesum_pit_metrictotalNplot_lower_boundplot_upper_boundspeaker-wisemaxmetric_funcmode)r   zpermutation-wise	eval_func)r   minkwargsreturnc                    sz   | dd| dd | dd d}t jdi | || _|| _|| _|| _| jdtddd	 | jd
tddd	 d S )Ndist_sync_on_stepFprocess_groupdist_sync_fn)r    r!   r"   r   g        sum)defaultdist_reduce_fxr   r    )	popsuper__init__r   r   r   r   	add_stater   )selfr   r   r   r   base_kwargs	__class__r&   S/home/ubuntu/sommelier/.venv/lib/python3.10/site-packages/torchmetrics/audio/pit.pyr)   T   s   


z%PermutationInvariantTraining.__init__predstargetc                 C   sL   t ||| j| j| jfi | jd }|  j| 7  _|  j| 7  _dS )z*Update state with predictions and targets.r   N)	r
   r   r   r   r   r   r#   r   numel)r+   r0   r1   
pit_metricr&   r&   r/   updatei   s   z#PermutationInvariantTraining.updatec                 C   s   | j | j S )zCompute metric.)r   r   )r+   r&   r&   r/   computer   s   z$PermutationInvariantTraining.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.audio import PermutationInvariantTraining
            >>> from torchmetrics.functional.audio import scale_invariant_signal_noise_ratio
            >>> preds = torch.randn(3, 2, 5) # [batch, spk, time]
            >>> target = torch.randn(3, 2, 5) # [batch, spk, time]
            >>> metric = PermutationInvariantTraining(scale_invariant_signal_noise_ratio,
            ...     mode="speaker-wise", eval_func="max")
            >>> metric.update(preds, target)
            >>> fig_, ax_ = metric.plot()

        .. plot::
            :scale: 75

            >>> # Example plotting multiple values
            >>> import torch
            >>> from torchmetrics.audio import PermutationInvariantTraining
            >>> from torchmetrics.functional.audio import scale_invariant_signal_noise_ratio
            >>> preds = torch.randn(3, 2, 5) # [batch, spk, time]
            >>> target = torch.randn(3, 2, 5) # [batch, spk, time]
            >>> metric = PermutationInvariantTraining(scale_invariant_signal_noise_ratio,
            ...     mode="speaker-wise", eval_func="max")
            >>> values = [ ]
            >>> for _ in range(10):
            ...     values.append(metric(preds, target))
            >>> fig_, ax_ = metric.plot(values)

        )_plot)r+   r6   r7   r&   r&   r/   plotv   s   .r   )r   r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   r   floatr   r   r	   r   r)   r4   r5   r   r   r   r   r9   __classcell__r&   r&   r-   r/   r      s0   
 -	2N)collections.abcr   typingr   r   r   r   torchr   r   typing_extensionsr	   !torchmetrics.functional.audio.pitr
   torchmetrics.metricr   torchmetrics.utilities.importsr   torchmetrics.utilities.plotr   r   __doctest_requires____doctest_skip__r   r&   r&   r&   r/   <module>   s   
