lort-speech-enhancement-eval
LORT: Locally Refined Convolution and Taylor Transformer for Monaural Speech Enhancement — Wang et al. (2025) (arXiv:2509.23832, 2025)
What this evaluates
Evaluates monaural speech enhancement models by measuring how effectively they restore clean speech from noisy recordings. The benchmark probes the model's ability to handle diverse acoustic conditions and varying signal-to-noise ratios across two standard speech enhancement datasets.
Datasets
- VCTK+DEMAND — total 12396; splits: train (-1), test (-1)
- DNS Challenge 2020 — total 60000; splits: train (50000), val (5000), test (5000)
Metrics
PESQ (primary) — range: [-0.5, 4.5]
- ITU-T P.862 standard for perceptual speech quality. Compares enhanced speech to a clean reference signal on a scale from -0.5 to 4.5.
STOI — range: [0, 1]
- Short-Time Objective Intelligibility. Measures the proportion of intelligible content by analyzing time-frequency correlations between enhanced and clean speech.
MOS (CSIG, CBAK, COVL) — range: [1, 5]
- Mean Opinion Score predictions for signal distortion (CSIG), background noise interference (CBAK), and overall quality (COVL). Rated on a scale from 1 to 5.
FLOPs — range: other
- Computational complexity measured by counting floating-point operations required to process a single 2-second, 16 kHz speech sample on a GPU.
Input / output format
Input: Noisy monaural speech waveform sampled at 16 kHz, processed using an FFT length of 510 and a hop size of 100.
Output: Enhanced monaural speech waveform (16 kHz).
Scoring recipe
def score(predictions, gold):
pesq = pesq(ref=gold, deg=predictions, fs=16000)
stoi = stoi(ref=gold, deg=predictions, fs=16000)
mos = mos_predict(ref=gold, deg=predictions)
flops = count_flops(model, input_len=2*16000)
return {'PESQ': pesq, 'STOI': stoi, 'MOS': mos, 'FLOPs': flops}
Common pitfalls
- Test set SNR distribution is fixed at specific points (-5, 0, 5, 10, 15 dB) rather than a continuous range, unlike the training set.
- FLOPs are calculated on a fixed 2-second, 16 kHz sample on GPU, not averaged over the full test set or reported in standard units (e.g., GFLOPs).
- MOS metrics (CSIG, CBAK, COVL) are algorithmic predictions of subjective scores, not actual human ratings, and require specific reference-based implementations.
Evidence (verbatim from paper)
To comprehensively assess the performance of speech enhancement models, we employ three widely adopted objective and subjective metrics. (1) Perceptual Evaluation of Speech Quality (PESQ) (Rix et al., [2001]) is designed to evaluate the perceptual quality of enhanced speech by comparing it to the clean reference signal, with a score range from -0.5 to 4.5; (2) Short-Time Objective Intelligibility (STOI) (Taal et al., [2011]) measures the proportion of intelligible content in speech signals by analyzing time-frequency correlations, with a score range from 0 to 1; (3) Mean Opinion Score (MOS) metrics provide subjective yet highly informative assessments of speech quality from a human listener’s perspective. These include signal distortion prediction (CSIG), background noise interference prediction (CBAK), and overall speech quality prediction (COVL) (Hu and Loizou, [2008]), all rated from 1 to 5.
Citation
@misc{wang2025lort,
title={LORT: Locally Refined Convolution and Taylor Transformer for Monaural Speech Enhancement},
author={Wang et al. (2025)},
year={2025},
note={arXiv:2509.23832}
}
1---2name: lort-speech-enhancement-eval3description: Evaluates monaural speech enhancement models by measuring how effectively they restore clean speech from noisy recordings. The benchmark probes the model's ability to handle diverse acoustic conditions and varying signal-to-noise ratios across two standard speech enhancement datasets. Use when the user wants to benchmark on VCTK+DEMAND, DNS Challenge 2020, or asks about evaluating this task. Reports PESQ.4---56# lort-speech-enhancement-eval78> LORT: Locally Refined Convolution and Taylor Transformer for Monaural Speech Enhancement — Wang et al. (2025) (arXiv:2509.23832, 2025)910## What this evaluates1112Evaluates monaural speech enhancement models by measuring how effectively they restore clean speech from noisy recordings. The benchmark probes the model's ability to handle diverse acoustic conditions and varying signal-to-noise ratios across two standard speech enhancement datasets.1314## Datasets1516- **VCTK+DEMAND** — total 12396; splits: train (-1), test (-1)17- **DNS Challenge 2020** — total 60000; splits: train (50000), val (5000), test (5000)1819## Metrics2021- `PESQ` **(primary)** — range: [-0.5, 4.5]22 - ITU-T P.862 standard for perceptual speech quality. Compares enhanced speech to a clean reference signal on a scale from -0.5 to 4.5.23- `STOI` — range: [0, 1]24 - Short-Time Objective Intelligibility. Measures the proportion of intelligible content by analyzing time-frequency correlations between enhanced and clean speech.25- `MOS (CSIG, CBAK, COVL)` — range: [1, 5]26 - Mean Opinion Score predictions for signal distortion (CSIG), background noise interference (CBAK), and overall quality (COVL). Rated on a scale from 1 to 5.27- `FLOPs` — range: other28 - Computational complexity measured by counting floating-point operations required to process a single 2-second, 16 kHz speech sample on a GPU.2930## Input / output format3132**Input**: Noisy monaural speech waveform sampled at 16 kHz, processed using an FFT length of 510 and a hop size of 100.3334**Output**: Enhanced monaural speech waveform (16 kHz).3536## Scoring recipe3738```python39def score(predictions, gold):40 pesq = pesq(ref=gold, deg=predictions, fs=16000)41 stoi = stoi(ref=gold, deg=predictions, fs=16000)42 mos = mos_predict(ref=gold, deg=predictions)43 flops = count_flops(model, input_len=2*16000)44 return {'PESQ': pesq, 'STOI': stoi, 'MOS': mos, 'FLOPs': flops}45```4647## Common pitfalls4849- Test set SNR distribution is fixed at specific points (-5, 0, 5, 10, 15 dB) rather than a continuous range, unlike the training set.50- FLOPs are calculated on a fixed 2-second, 16 kHz sample on GPU, not averaged over the full test set or reported in standard units (e.g., GFLOPs).51- MOS metrics (CSIG, CBAK, COVL) are algorithmic predictions of subjective scores, not actual human ratings, and require specific reference-based implementations.5253## Evidence (verbatim from paper)5455> To comprehensively assess the performance of speech enhancement models, we employ three widely adopted objective and subjective metrics. (1) Perceptual Evaluation of Speech Quality (PESQ) (Rix et al., [2001]) is designed to evaluate the perceptual quality of enhanced speech by comparing it to the clean reference signal, with a score range from -0.5 to 4.5; (2) Short-Time Objective Intelligibility (STOI) (Taal et al., [2011]) measures the proportion of intelligible content in speech signals by analyzing time-frequency correlations, with a score range from 0 to 1; (3) Mean Opinion Score (MOS) metrics provide subjective yet highly informative assessments of speech quality from a human listener’s perspective. These include signal distortion prediction (CSIG), background noise interference prediction (CBAK), and overall speech quality prediction (COVL) (Hu and Loizou, [2008]), all rated from 1 to 5.5657## Citation5859```bibtex60@misc{wang2025lort,61 title={LORT: Locally Refined Convolution and Taylor Transformer for Monaural Speech Enhancement},62 author={Wang et al. (2025)},63 year={2025},64 note={arXiv:2509.23832}65}66```6768- arXiv: 2509.23832