File size: 8,103 Bytes
0da8c96
c9cb1a1
0da8c96
 
 
 
 
e1d6ae1
0da8c96
 
e1d6ae1
0da8c96
59d213e
 
 
 
 
 
 
 
 
 
0da8c96
 
 
 
e1d6ae1
0da8c96
 
 
e1d6ae1
c9cb1a1
e1d6ae1
0da8c96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8608563
 
 
 
 
 
0da8c96
 
 
 
 
 
 
 
912c423
44fe8bd
0da8c96
 
 
 
 
 
 
 
 
e1d6ae1
0da8c96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51d414a
0da8c96
 
 
 
 
 
 
 
 
c9cb1a1
0da8c96
 
 
8608563
0da8c96
 
 
 
 
 
 
 
c9cb1a1
0da8c96
59d213e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
---
license: mpl-2.0
task_categories:
- text-to-speech
- automatic-speech-recognition
language:
- ru
pretty_name: Deepspeech annotate by Balalaika
---

# Deepspeech Annotated by Balalaika

[![arXiv](https://img.shields.io/badge/arXiv-2507.13563-b31b1b.svg)](https://arxiv.org/abs/2507.13563)
[![Conference](https://img.shields.io/badge/INTERSPEECH-2026-1f6feb.svg)](https://arxiv.org/abs/2507.13563)
[![Code](https://img.shields.io/badge/code-lab260ru%2Fbalalaika-181717.svg?logo=github)](https://github.com/lab260ru/balalaika)

> [!IMPORTANT]
> **Official dataset for our INTERSPEECH 2026 paper**
> *"A Data-Centric Framework for Addressing Phonetic and Prosodic Challenges in Russian Speech Generative Models"* ([arXiv:2507.13563](https://arxiv.org/abs/2507.13563)).
> Part of the **Balalaika** Russian speech data-processing pipeline — code: [https://github.com/lab260ru/balalaika](https://github.com/lab260ru/balalaika).
> If you use this resource, please [cite it](#citation).

**A curated Russian speech dataset for advanced speech generative tasks.**

## Overview

**Deepspeech Annotated by Balalaika** is a high-quality Russian speech corpus, meticulously filtered and annotated by the **lab260 team at MTUCI** with the latest version of our pipeline, **BALALAIKA**.

- **Language:** Russian only
- **Genres:** Podcasts, public speech, YouTube, audiobooks, phone calls, TTS, and more
- **Source:** Deepspeech ([GitHub link](https://github.com/GeorgeFedoseev/DeepSpeech))
- **License:** mpl-2.0 (same as original DeepSpeech)
- **Total Duration After Filtering:** 278.6 hours (from over 6000 hours raw)
- **Format:** Parquet files with split-wise annotation

***

## Usage

**Primary Use Cases:**
- Text-to-Speech (TTS) generation
- Automatic Speech Recognition (ASR)
- Analysis of accent, stress, and prosody
- Russian speech technology research

### 1. Download the dataset

### 2. Extract the files

```basg
for archive in *.tar.gz; do
    dir="${archive%.tar.gz}"
    mkdir -p "$dir"
    tar -xzvf "$archive" -C "$dir"
    rm "$archive"
done
```

### 3. Load data in PyTorch

```python
from pathlib import Path
import pandas as pd
from torch.utils.data import Dataset
import torchaudio

class ParquetConcatDataset(Dataset):
    def __init__(self, parquet_dir, audio_root, parse_fn=None):
        self.parquet_dir = Path(parquet_dir)
        self.audio_root = Path(audio_root)

        parquet_files = list(self.parquet_dir.glob("*.parquet"))
        dfs = [pd.read_parquet(f) for f in parquet_files]
        self.df = pd.concat(dfs, ignore_index=True)

    def __len__(self):
        return len(self.df)

    def __getitem__(self, idx):
        row = self.df.iloc[idx]
        audio_path = self.audio_root / row["filepath"]
        waveform, sample_rate = torchaudio.load(audio_path)
        return {
            "audio_path": str(audio_path),
            "waveform": waveform,
            "sample_rate": sample_rate,
            "nisqa_mos": row["mos_pred"],
            "nisqa_noi": row["noi_pred"],
            "nisqa_dis": row["dis_pred"],
            "nisqa_col": row["col_pred"],
            "nisqa_loud": row["loud_pred"],
            "nisqa_model": row["model"],
            "is_single_speaker": bool(row["is_single_speaker"]),
            "accented_text": row["accent"],
            "asr_text": row["rover"],
            "punctuated_text": row["punct"],
            "silence_percent": row["silence_percent"],
            "total_duration": row["total_duration"],
            "max_silence_duration": row["max_silence_duration"]
        }

# Example usage
ds = ParquetConcatDataset(
    PATH_TO_PARQUETS_DIR,
    PATH_TO_AUDIO_ROOT
)
```

`PATH_TO_PARQUETS_DIR`: Path to the folder containing all .parquet files with metadata and annotations for the dataset.

`PATH_TO_AUDIO_ROOT`: Path to the root directory containing all audio subfolders and files referenced by filepath columns in the metadata.
***

## Data Processing & Annotation

Our pipeline applies **rigorous filtering and enrichment** steps:

1. **Removed speech segments** shorter than 3 seconds
2. **Filtered segments** with [NISQA](https://github.com/gabrielmittag/NISQA/tree/master/nisqa) MOS < 4.0 for quality assurance
3. **Excluded segments with multiple speakers** (via [pyannotate diarization](https://huggingface.co/pyannote/speaker-diarization-community-1))
4. **Filtered segments** with [VAD](https://github.com/snakers4/silero-vad) silence_percent > 30.0 % and max_silence_duration > 1,2 for quality assurance
5. **Filtered out speech with music background** (custom music detector)
6. **Revised transcriptions:** Crowd-sourced with multiple ASRs, fused via ROVER ([T-one](https://github.com/voicekit-team/T-one/tree/main), [GigaAMv3-rnnt, GigaAMv3-ctc, GigaAMv3-ctc-lm](https://github.com/salute-developers/GigaAM), [vosk](https://huggingface.co/alphacep/vosk-model-ru))
7. **Punctuation added** using [RuPunct](https://huggingface.co/RUPunct/RUPunct_big)
8. **Stress marks added** via [RuAccent](https://github.com/Den4ikAI/ruaccent)
9. **IPA phonemization** performed with our own neural model

All **annotation fields** are handled and provided separately for transparency and flexibility.

***

## Data Structure

- **Annotation storage:** Parquet files
- **Speech storage:** .tar.gz files with speech segments in .wav
- **Splitting:** Follows DeepSpeech splits
- **Annotations:** Each sample includes separate fields for:
  - **Filepath**
  - **Quality metrics: MOS, NOI, DIS, COL, LOUD**
  - **Model for quality assesment**
  - **Transcript with stresses and pucntuation**
  - **Transcript after ROVER**
  - **Transcript with punctuation**
  - **IPA transcription**
  - **Speaker diarization flag**
  - **Information about silence**


***

## How to Cite

Please cite the following paper if you use this dataset in research:
```
@misc{borodin2025datacentricframeworkaddressingphonetic,
      title={A Data-Centric Framework for Addressing Phonetic and Prosodic Challenges in Russian Speech Generative Models}, 
      author={Kirill Borodin and Nikita Vasiliev and Vasiliy Kudryavtsev and Maxim Maslov and Mikhail Gorodnichev and Oleg Rogov and Grach Mkrtchian},
      year={2025},
      eprint={2507.13563},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2507.13563}, 
}
```

***

## Contact

- Telegram: [@korallll_ai](https://t.me/korallll_ai)
- Email: ~~[k.n.borodin@mtuci.ru](mailto:k.n.borodin@mtuci.ru)~~ (deprecated — use [kborodin.research@gmail.com](mailto:kborodin.research@gmail.com))

***

## Links

- [Balalaka annotation pipeline](https://github.com/mtuciru/balalaika/tree/main/src)
- [Other datasets annotated by BALALAIKA](https://huggingface.co/collections/MTUCI/balalaika-dataset)
- [Custom models' inference implementaton](https://huggingface.co/collections/MTUCI/balalaika-models)
- [Paper (arXiv)](https://arxiv.org/pdf/2507.13563)
- [DeepSpeech repository](https://github.com/GeorgeFedoseev/DeepSpeech)
- [NISQA](https://github.com/gabrielmittag/NISQA/tree/master/nisqa)
- [pyannotate diarization](https://huggingface.co/pyannote/speaker-diarization-community-1)
- [T-one](https://github.com/voicekit-team/T-one/tree/main)
- [GigaAM   v2-rnnt, GigaAMv2-ctc, GigaAMv2-ctc-lm](https://github.com/salute-developers/GigaAM)
- [vosk](https://huggingface.co/alphacep/vosk-model-ru)
- [RuPunct](https://huggingface.co/RUPunct/RUPunct_big)
- [RuAccent](https://github.com/Den4ikAI/ruaccent)

***

## License

Distributed under **MPL 2.0**, matching original DeepSpeech terms.

***

## Citation

If you use this resource, please cite our INTERSPEECH 2026 paper:

```bibtex
@inproceedings{borodin2026balalaika,
  title     = {A Data-Centric Framework for Addressing Phonetic and Prosodic Challenges in Russian Speech Generative Models},
  author    = {Borodin, Kirill and Vasiliev, Nikita and Kudryavtsev, Vasiliy and Maslov, Maxim and Gorodnichev, Mikhail and Rogov, Oleg and Mkrtchian, Grach},
  booktitle = {Proc. INTERSPEECH 2026},
  year      = {2026},
  note      = {arXiv:2507.13563},
  url       = {https://arxiv.org/abs/2507.13563}
}
```