SQuTR / README.md
TroyeML's picture
Update README.md
2f1b041 verified
|
Raw
History Blame Contribute Delete
3.83 kB
---
license: cc-by-sa-4.0
task_categories:
- text-retrieval
- feature-extraction
- automatic-speech-recognition
language:
- en
- zh
tags:
- spoken-query-retrieval
- information-retrieval
- audio-text-retrieval
- mteb
- audio
- c-mteb
- robustness
pretty_name: SQuTR
size_categories:
- 10K<n<100K
---
# πŸ† Recognition
* **[2026-05]** SQuTRπŸ“„ was ACCEPTED to **SIGIR 2026**! πŸŽ‰
* **[2026-02]** SQuTR was featured as the **#1 Paper of the Day** on [Hugging Face Daily Papers](https://huggingface.co/papers/2602.12783)!
# SQuTR: A Robustness Benchmark for Spoken Query to Text Retrieval
[![Hugging Face Daily Paper #1](https://img.shields.io/badge/πŸ€—_Hugging_Face-Daily_Paper_%231-FFD21E?style=for-the-badge&logo=huggingface&logoColor=black)](https://huggingface.co/papers/2602.12783)
[![GitHub](https://img.shields.io/badge/GitHub-Repository-blue)](https://github.com/ttoyekk1a/SQuTR-Spoken-Query-to-Text-Retrieval)
[![Paper](https://img.shields.io/badge/Paper-arXiv-red)](https://arxiv.org/abs/2602.12783)
**SQuTR** (Spoken Query-to-Text Retrieval) is a large-scale bilingual benchmark designed to evaluate the robustness of information retrieval systems under realistic acoustic perturbations.
While speech interaction is becoming a primary interface for IR systems, performance often degrades significantly in noisy environments. SQuTR provides a standardized framework featuring **37,317** complex queries across **6 domains**, synthesized with **200 real speakers**, and evaluated under **4 graded noise levels**.
---
## 🌟 Key Features
* **Bilingual & Multi-Domain:** Includes 6 subsets from MTEB and C-MTEB covering Wikipedia, Finance, Medical, and Encyclopedia domains.
* **High-Fidelity Synthesis:** Generated using **CosyVoice-3** with diverse speaker profiles, totaling **190.4 hours** of audio.
* **Robustness Evaluation:** Explicitly models four acoustic conditions: **Clean, Low Noise (20dB), Medium Noise (10dB), and High Noise (0dB)**.
* **MTEB Compatibility:** Follows standard JSONL/BEIR formatting for seamless integration into modern retrieval pipelines.
---
## πŸ“‚ Dataset Structure
The dataset is organized by language and subset. Each subset (e.g., `fiqa`) contains the original text documents and the synthesized audio queries under different SNR conditions.
```text
SQuTR/
└── source_data/
β”œβ”€β”€ en/ (English Datasets: fiqa, hotpotqa, nq)
β”‚ └── [subset_name]/
β”‚ β”œβ”€β”€ audio_clean/ # Clean original audio files (.wav)
β”‚ β”œβ”€β”€ audio_noise_snr_0/ # Audio with 0dB Signal-to-Noise Ratio
β”‚ β”œβ”€β”€ audio_noise_snr_10/ # Audio with 10dB Signal-to-Noise Ratio
β”‚ β”œβ”€β”€ audio_noise_snr_20/ # Audio with 20dB Signal-to-Noise Ratio
β”‚ β”œβ”€β”€ qrels/ # Query relevance judgments (TSV/JSONL)
β”‚ β”œβ”€β”€ corpus.jsonl # Text corpus documents
β”‚ β”œβ”€β”€ queries.jsonl # Original text queries
β”‚ β”œβ”€β”€ queries_with_audio_clean.jsonl # Metadata mapping text to clean audio
β”‚ β”œβ”€β”€ queries_with_audio_noise_snr_0.jsonl # Metadata for 0dB noise queries
β”‚ β”œβ”€β”€ queries_with_audio_noise_snr_10.jsonl # Metadata for 10dB noise queries
β”‚ └── queries_with_audio_noise_snr_20.jsonl # Metadata for 20dB noise queries
└── zh/ (Chinese Datasets: DuRetrieval, MedicalRetrieval, T2Retrieval)
└── [subset_name]/
└── (Same structure as above)
```
---
## πŸ’Ύ How to Use the Dataset
You can download the dataset directly from this Hugging Face repository. To use the evaluation scripts, please refer to our [GitHub Repository](https://github.com/ttoyekk1a/SQuTR-Spoken-Query-to-Text-Retrieval).