o
    yi                     @   sz   d dl Zd dlZd dlmZ d dlmZ d dlmZ er#d dlm	Z
 ndZ
dgZ	dded	ed
edededefddZdS )    N)Tensor)_check_same_shape)_PYSTOI_AVAILABLE)stoi$short_time_objective_intelligibilityFpredstargetfsextendedkeep_same_devicereturnc           
      C   s  t stdt| | t| jdkr+t|   |    ||}t	
|}nU| d| jd    }|d| jd    }tj|jd d}t|jd D ]}	t||	ddf ||	ddf ||||	< qYt	|}|| jdd }|r|| j}|S )ag  Calculates STOI (Short-Time Objective Intelligibility) metric for evaluating speech signals. Intelligibility
    measure which is highly correlated with the intelligibility of degraded speech signals, e.g., due to additive
    noise, single-/multi-channel noise reduction, binary masking and vocoded speech as in CI simulations. The STOI-
    measure is intrusive, i.e., a function of the clean and degraded speech signals. STOI may be a good alternative
    to the speech intelligibility index (SII) or the speech transmission index (STI), when you are interested in
    the effect of nonlinear processing to noisy speech, e.g., noise reduction, binary masking algorithms, on speech
    intelligibility. Description taken from  `Cees Taal's website`_ and for further defails see `STOI ref1`_ and
    `STOI ref2`_.

    This metric is a wrapper for the `pystoi package`_. As the implementation backend implementation only supports
    calculations on CPU, all input will automatically be moved to CPU to perform the metric calculation before being
    moved back to the original device.

    .. note:: using this metrics requires you to have ``pystoi`` install. Either install as ``pip install
        torchmetrics[audio]`` or ``pip install pystoi``

    Args:
        preds: float tensor with shape ``(...,time)``
        target: float tensor with shape ``(...,time)``
        fs: sampling frequency (Hz)
        extended: whether to use the extended STOI described in `STOI ref3`_.
        keep_same_device: whether to move the stoi value to the device of preds

    Returns:
        stoi value of shape [...]

    Raises:
        ModuleNotFoundError:
            If ``pystoi`` package is not installed
        RuntimeError:
            If ``preds`` and ``target`` does not have the same shape

    Example:
        >>> from torchmetrics.functional.audio.stoi import short_time_objective_intelligibility
        >>> import torch
        >>> g = torch.manual_seed(1)
        >>> preds = torch.randn(8000)
        >>> target = torch.randn(8000)
        >>> short_time_objective_intelligibility(preds, target, 8000).float()
        tensor(-0.0100)
    zShortTimeObjectiveIntelligibility metric requires that `pystoi` is installed. Either install as `pip install torchmetrics[audio]` or `pip install pystoi`.   r   )shapeN)r   ModuleNotFoundErrorr   lenr   stoi_backenddetachcpunumpytorchtensorreshapenpemptyrange
from_numpytodevice)
r   r   r	   r
   r   stoi_val_npstoi_valpreds_np	target_npb r$   V/home/ubuntu/.local/lib/python3.10/site-packages/torchmetrics/functional/audio/stoi.pyr      s$   ,
&,
)FF)r   r   r   r   torchmetrics.utilities.checksr   torchmetrics.utilities.importsr   pystoir   r   __doctest_skip__intboolr   r$   r$   r$   r%   <module>   s.   