ntt123 commited on
Commit
8e687f2
·
verified ·
1 Parent(s): 2843e2a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -14
README.md CHANGED
@@ -19,32 +19,33 @@ configs:
19
  path: data/train-*
20
  ---
21
 
22
- # Aligned English MLS
23
- We use the Montreal Forced Aligner to align English audio files to transcripts. The dataset contains a total of 44.5K hours of English audio speech.
24
 
25
- We only provide the aligned TextGrid files. To download the audio files, you can use the Parler MLS English dataset available at [parler-tts/mls_eng](https://huggingface.co/datasets/parler-tts/mls_eng).
 
26
 
27
- This dataset can be used to train TTS models by leveraging the ground truth phoneme durations to align phoneme features with acoustic features.
28
 
29
- ### Download the Dataset
30
- To download the dataset, use the following command:
31
 
32
- ```
33
- huggingface-cli download ntt123/aligned_mls_eng --repo-type dataset
34
  ```
35
 
36
- ### Read TextGrid Files
37
- To read the TextGrid files, you can use the `textgrid` library. First, install the library:
38
 
39
- ```
 
40
  pip install textgrid
41
  ```
42
 
43
- Then, load and process a TextGrid file with the following example code:
44
-
45
  ```python
46
  import textgrid
47
 
48
- # Load the TextGrid file
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
  ```