o
    yiw                     @   s^   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giZG dd deZd	S )
    )Any)Tensortensor)$perceptual_evaluation_speech_quality)Metric)_PESQ_AVAILABLE!PerceptualEvaluationSpeechQualitypesqc                       s   e Zd ZU dZeed< eed< dZeed< dZeed< dZ	eed< 		dd
e
dede
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  ZS )r   a	  Calculates `Perceptual Evaluation of Speech Quality`_ (PESQ). It's a recognized industry standard for audio
    quality that takes into considerations characteristics such as: audio sharpness, call volume, background noise,
    clipping, audio interference ect. PESQ returns a score between -0.5 and 4.5 with the higher scores indicating a
    better quality.

    This metric is a wrapper for the `pesq package`_. Note that input will be moved to ``cpu`` to perform the metric
    calculation.

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

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

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

    - ``pesq`` (:class:`~torch.Tensor`): float tensor with shape ``(...,)`` of PESQ value per sample

    .. note:: using this metrics requires you to have ``pesq`` install. Either install as ``pip install
        torchmetrics[audio]`` or ``pip install pesq``. ``pesq`` will compile with your currently
        installed version of numpy, meaning that if you upgrade numpy at some point in the future you will
        most likely have to reinstall ``pesq``.

    Args:
        fs: sampling frequency, should be 16000 or 8000 (Hz)
        mode: ``'wb'`` (wide-band) or ``'nb'`` (narrow-band)
        keep_same_device: whether to move the pesq value to the device of preds
        n_processes: integer specifiying the number of processes to run in parallel for the metric calculation.
            Only applies to batches of data and if ``multiprocessing`` package is installed.
        kwargs: Additional keyword arguments, see :ref:`Metric kwargs` for more info.

    Raises:
        ModuleNotFoundError:
            If ``pesq`` package is not installed
        ValueError:
            If ``fs`` is not either  ``8000`` or ``16000``
        ValueError:
            If ``mode`` is not either ``"wb"`` or ``"nb"``

    Example:
        >>> from torchmetrics.audio.pesq import PerceptualEvaluationSpeechQuality
        >>> import torch
        >>> g = torch.manual_seed(1)
        >>> preds = torch.randn(8000)
        >>> target = torch.randn(8000)
        >>> nb_pesq = PerceptualEvaluationSpeechQuality(8000, 'nb')
        >>> nb_pesq(preds, target)
        tensor(2.2076)
        >>> wb_pesq = PerceptualEvaluationSpeechQuality(16000, 'wb')
        >>> wb_pesq(preds, target)
        tensor(1.7359)
    sum_pesqtotalFfull_state_updateis_differentiableThigher_is_better   fsmoden_processeskwargsreturnNc                    s   t  jdi | tstd|dvrtd| || _|dvr(td| || _t|ts;|dkr;td| || _	| j
dtd	d
d | j
dtdd
d d S )NzPerceptualEvaluationSpeechQuality metric requires that `pesq` is installed. Either install as `pip install torchmetrics[audio]` or `pip install pesq`.)i@  i>  z:Expected argument `fs` to either be 8000 or 16000 but got )wbnbz;Expected argument `mode` to either be 'wb' or 'nb' but got r   zCExpected argument `n_processes` to be an int larger than 0 but got r
   g        sum)defaultdist_reduce_fxr    )super__init__r   ModuleNotFoundError
ValueErrorr   r   
isinstanceintr   	add_stater   )selfr   r   r   r   	__class__r   K/home/ubuntu/.local/lib/python3.10/site-packages/torchmetrics/audio/pesq.pyr   T   s    z*PerceptualEvaluationSpeechQuality.__init__predstargetc                 C   sJ   t ||| j| jd| j| jj}|  j| 7  _|  j|	 7  _dS )z*Update state with predictions and targets.FN)
r   r   r   r   tor
   devicer   r   numel)r"   r&   r'   
pesq_batchr   r   r%   updaten   s   
z(PerceptualEvaluationSpeechQuality.updatec                 C   s   | j | j S )zComputes metric.)r
   r   )r"   r   r   r%   computew   s   z)PerceptualEvaluationSpeechQuality.compute)r   )__name__
__module____qualname____doc__r   __annotations__r   boolr   r   r    strr   r   r,   r-   __classcell__r   r   r#   r%   r      s*   
 4	N)typingr   torchr   r   "torchmetrics.functional.audio.pesqr   torchmetrics.metricr   torchmetrics.utilities.importsr   __doctest_requires__r   r   r   r   r%   <module>   s   
