
    i                         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sdgZ G d d	e      Zy)    )Sequence)AnyCallableOptionalUnion)Tensortensor)Literal)permutation_invariant_training)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEPermutationInvariantTrainingpitz!PermutationInvariantTraining.plotc                        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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 )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metric_funcmode)speaker-wisezpermutation-wise	eval_func)maxminkwargsreturnc                 <   |j                  dd      |j                  dd       |j                  dd       d}t        |   di | || _        || _        || _        || _        | j                  dt        d      d	       | j                  d
t        d      d	       y )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__s         k/Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/audio/pit.pyr+   z%PermutationInvariantTraining.__init__T   s     "(,?!G#ZZ>"JJ~t<'

 	';'&	"'USwq	%H    predstargetc                    t        ||| j                  | j                  | j                  fi | j                  d   }| xj
                  |j                         z  c_        | xj                  |j                         z  c_        y)z*Update state with predictions and targets.r   N)	r   r   r   r   r   r   r%   r   numel)r-   r2   r3   
pit_metrics       r0   updatez#PermutationInvariantTraining.updatei   sj    364++TYY
JN++


 	z~~//

j&&((
r1   c                 4    | j                   | j                  z  S )zCompute metric.)r   r   )r-   s    r0   computez$PermutationInvariantTraining.computer   s    ""TZZ//r1   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.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-   r:   r;   s      r0   plotz!PermutationInvariantTraining.plotv   s    \ zz#r""r1   )r   r   )NN)__name__
__module____qualname____doc__r   bool__annotations__r   r   r   r   floatr   r   r
   r   r+   r7   r9   r   r   r   r   r>   __classcell__)r/   s   @r0   r   r      s    +Z $t#"t"M(,huo,(,huo,
 =K+0	II 89I <(	I
 I 
I*)F )F )t )0 0.#fhv&6<= .#(S[J\ .#hv .#r1   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(   r1   r0   <module>rQ      sI    % 1 1   % L & @ @6@ ;<E#6 E#r1   