a
    d                     @   s   d dl mZmZ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sd
gZG dd deZdS )    )AnyCallableDictOptionalSequenceUnion)Tensortensor)Literal)permutation_invariant_training)Metric)_MATPLOTLIB_AVAILABLE)_AX_TYPE_PLOT_OUT_TYPEPermutationInvariantTrainingZ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eed ed edd fddZeeddddZedddZdeeee df e
e edddZ  ZS )r   ax  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:
        >>> import torch
        >>> from torchmetrics.audio import PermutationInvariantTraining
        >>> from torchmetrics.functional.audio import scale_invariant_signal_noise_ratio
        >>> _ = torch.manual_seed(42)
        >>> preds = torch.randn(3, 2, 5) # [batch, spk, time]
        >>> target = torch.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)r   zpermutation-wise)r   min)metric_funcmode	eval_funckwargsreturnc                    sz   | dd| dd | dd d}t jf 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)defaultZdist_reduce_fxr   r   )	popsuper__init__r   r   r   r   Z	add_stater	   )selfr   r   r   r   Zbase_kwargs	__class__ _/var/www/html/stable-diffusion-webui/venv/lib/python3.9/site-packages/torchmetrics/audio/pit.pyr'   T   s    


z%PermutationInvariantTraining.__init__)predstargetr   c                 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   Znumel)r(   r-   r.   Z
pit_metricr+   r+   r,   updatei   s    z#PermutationInvariantTraining.update)r   c                 C   s   | j | j S )zCompute metric.)r   r   )r(   r+   r+   r,   computer   s    z$PermutationInvariantTraining.compute)valaxr   c                 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)

        )Z_plot)r(   r1   r2   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'   r/   r0   r   r   r   r   r3   __classcell__r+   r+   r)   r,   r      s&   
.  	N)typingr   r   r   r   r   r   Ztorchr   r	   Ztyping_extensionsr
   Z!torchmetrics.functional.audio.pitr   Ztorchmetrics.metricr   Ztorchmetrics.utilities.importsr   Ztorchmetrics.utilities.plotr   r   Z__doctest_requires__Z__doctest_skip__r   r+   r+   r+   r,   <module>   s    
