Update README.md
Browse files
README.md
CHANGED
@@ -19,32 +19,33 @@ configs:
|
|
19 |
path: data/train-*
|
20 |
---
|
21 |
|
22 |
-
# Aligned English MLS
|
23 |
-
|
24 |
|
25 |
-
|
|
|
26 |
|
27 |
-
|
28 |
|
29 |
-
###
|
30 |
-
To download the
|
31 |
|
32 |
-
```
|
33 |
-
huggingface-cli download ntt123/aligned_mls_eng --repo-type dataset
|
34 |
```
|
35 |
|
36 |
-
###
|
37 |
-
|
38 |
|
39 |
-
|
|
|
40 |
pip install textgrid
|
41 |
```
|
42 |
|
43 |
-
|
44 |
-
|
45 |
```python
|
46 |
import textgrid
|
47 |
|
48 |
-
# Load
|
49 |
tg = textgrid.TextGrid.fromFile('test.TextGrid')
|
50 |
```
|
|
|
19 |
path: data/train-*
|
20 |
---
|
21 |
|
22 |
+
# Aligned English Multilingual LibriSpeech (MLS) Dataset
|
23 |
+
This repository contains phoneme alignments for 44.5K hours of English audio from the Multilingual LibriSpeech (MLS) dataset, generated using the Montreal Forced Aligner. The aligned data provides precise timing information for phonemes in each audio file, making it particularly valuable for training Text-to-Speech (TTS) models that require accurate phoneme duration estimation.
|
24 |
|
25 |
+
## Dataset Contents
|
26 |
+
Our repository provides the TextGrid alignment files only. For the corresponding audio files, please download the Parler MLS English dataset from their Hugging Face repository: [parler-tts/mls_eng](https://huggingface.co/datasets/parler-tts/mls_eng).
|
27 |
|
28 |
+
## Getting Started
|
29 |
|
30 |
+
### Downloading the Dataset
|
31 |
+
To download the aligned TextGrid files, use the Hugging Face CLI:
|
32 |
|
33 |
+
```bash
|
34 |
+
huggingface-cli download ntt123/aligned_mls_eng --repo-type dataset --local-dir aligned_mls_eng
|
35 |
```
|
36 |
|
37 |
+
### Working with TextGrid Files
|
38 |
+
The dataset uses TextGrid files to store alignment information. To read these files, you'll need the `textgrid` Python library:
|
39 |
|
40 |
+
1. Install the library:
|
41 |
+
```bash
|
42 |
pip install textgrid
|
43 |
```
|
44 |
|
45 |
+
2. Load and process TextGrid files:
|
|
|
46 |
```python
|
47 |
import textgrid
|
48 |
|
49 |
+
# Load a TextGrid file
|
50 |
tg = textgrid.TextGrid.fromFile('test.TextGrid')
|
51 |
```
|