Files changed (1) hide show
  1. README.md +68 -45
README.md CHANGED
@@ -1,47 +1,70 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: audio
5
- dtype: audio
6
- - name: original_path
7
- dtype: string
8
- - name: begin_time
9
- dtype: float64
10
- - name: end_time
11
- dtype: float64
12
- - name: transcript
13
- dtype: string
14
- - name: audio_duration
15
- dtype: float64
16
- - name: speaker_id
17
- dtype: string
18
- - name: chapter_id
19
- dtype: string
20
- - name: file
21
- dtype: string
22
- - name: id
23
- dtype: string
24
- - name: phoneme
25
- dtype: string
26
- splits:
27
- - name: train
28
- num_bytes: 8212877235.902578
29
- num_examples: 124480
30
- - name: validation
31
- num_bytes: 79619978.44116542
32
- num_examples: 1215
33
- - name: test
34
- num_bytes: 72734756.37978947
35
- num_examples: 1112
36
- download_size: 8098446381
37
- dataset_size: 8365231970.723533
38
- configs:
39
- - config_name: default
40
- data_files:
41
- - split: train
42
- path: data/train-*
43
- - split: validation
44
- path: data/validation-*
45
- - split: test
46
- path: data/test-*
47
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ language:
5
+ - fr
6
+ language_creators:
7
+ - crowdsourced
8
+ license: cc-by-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 1K<n<10K
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - facebook/multilingual_librispeech
16
+ task_categories:
17
+ - automatic-speech-recognition
18
+ - text-to-speech
19
+ pretty_name: Multilingual LibriSpeech French (Phonemized & Curated)
20
+ tags:
21
+ - audio
22
+ - speech
23
+ - phonemes
24
+ - ipa
25
+ - french
26
+ - mls
27
+ - librispeech
28
+ - cnam-lmssc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ---
30
+
31
+ # Multilingual LibriSpeech French Phoneme
32
+
33
+ ## Dataset Description
34
+
35
+ - **Repository:** [Cnam-LMSSC/multilingual_librispeech_french_phoneme](https://huggingface.co/datasets/Cnam-LMSSC/multilingual_librispeech_french_phoneme)
36
+ - **Point of Contact:** [Cnam-LMSSC Team](https://huggingface.co/Cnam-LMSSC)
37
+
38
+ ### Dataset Summary
39
+
40
+ This dataset is a **curated version of the French subset of Multilingual LibriSpeech (MLS)**, enriched with a phonetic transcription column (`phoneme`).
41
+
42
+ The **Laboratoire de Mécanique des Structures et des Systèmes Couplés (Cnam-LMSSC)** created this version to facilitate research into French acoustic modeling, phoneme recognition, and speech synthesis. It builds upon the high-quality audio derived from LibriVox audiobooks found in the original MLS dataset.
43
+
44
+ ### Supported Tasks
45
+ - **Phoneme Recognition:** Training models to map audio features directly to IPA phonemes.
46
+ - **Automatic Speech Recognition (ASR):** Robust speech-to-text tasks using audiobook data.
47
+ - **Text-to-Speech (TTS):** Utilizing the high-quality, read-speech nature of LibriSpeech for synthesis.
48
+
49
+ ### Languages
50
+ The dataset contains audio in **French (`fr`)**.
51
+
52
+ ## Dataset Structure
53
+
54
+ ### Data Instances
55
+
56
+ A typical data point contains the audio, metadata about the speaker and chapter (derived from LibriVox), the original text, and the generated phonetic transcription.
57
+
58
+ ```python
59
+ {
60
+ 'id': '1234_5678_00001',
61
+ 'audio': {
62
+ 'path': '1234_5678_00001.flac',
63
+ 'array': array([-0.012, 0.045, ...], dtype=float32),
64
+ 'sampling_rate': 16000
65
+ },
66
+ 'text': "IL EST TEMPS DE PARTIR",
67
+ 'phoneme': "i l ɛ t ɑ̃ d ə p a ʁ t i ʁ",
68
+ 'speaker_id': 1234,
69
+ 'chapter_id': 5678,
70
+ }