Files changed (1) hide show
  1. README.md +80 -51
README.md CHANGED
@@ -1,53 +1,82 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: client_id
5
- dtype: string
6
- - name: path
7
- dtype: string
8
- - name: audio
9
- dtype:
10
- audio:
11
- sampling_rate: 48000
12
- - name: sentence
13
- dtype: string
14
- - name: up_votes
15
- dtype: int64
16
- - name: down_votes
17
- dtype: int64
18
- - name: age
19
- dtype: string
20
- - name: gender
21
- dtype: string
22
- - name: accent
23
- dtype: string
24
- - name: locale
25
- dtype: string
26
- - name: segment
27
- dtype: string
28
- - name: variant
29
- dtype: string
30
- - name: phoneme
31
- dtype: string
32
- splits:
33
- - name: train
34
- num_bytes: 15977605590.18895
35
- num_examples: 399941
36
- - name: validation
37
- num_bytes: 549625277.958716
38
- num_examples: 12738
39
- - name: test
40
- num_bytes: 547038507.8427985
41
- num_examples: 12693
42
- download_size: 15657690320
43
- dataset_size: 17074269375.990463
44
- configs:
45
- - config_name: default
46
- data_files:
47
- - split: train
48
- path: data/train-*
49
- - split: validation
50
- path: data/validation-*
51
- - split: test
52
- path: data/test-*
53
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ - machine-generated
5
+ language:
6
+ - fr
7
+ language_creators:
8
+ - crowdsourced
9
+ license: cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 100K<n<1M
14
+ source_datasets:
15
+ - mozilla-foundation/common_voice_13_0
16
+ task_categories:
17
+ - automatic-speech-recognition
18
+ - text-to-speech
19
+ pretty_name: Common Voice 13 French (Phonemized & Curated)
20
+ tags:
21
+ - audio
22
+ - speech
23
+ - phonemes
24
+ - ipa
25
+ - french
26
+ - cnam-lmssc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ---
28
+
29
+ # Dataset Card for Common Voice 13 French Phoneme
30
+
31
+ ## Table of Contents
32
+ - [Dataset Description](#dataset-description)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Curation & Phonemization](#curation--phonemization)
35
+ - [Usage](#usage)
36
+ - [Additional Information](#additional-information)
37
+
38
+ ## Dataset Description
39
+
40
+ - **Repository:** [Cnam-LMSSC/common_voice_13_french_phoneme](https://huggingface.co/datasets/Cnam-LMSSC/common_voice_13_french_phoneme)
41
+ - **Leaderboard:** N/A
42
+ - **Point of Contact:** [Cnam-LMSSC Team](https://huggingface.co/Cnam-LMSSC)
43
+
44
+ ### Dataset Summary
45
+
46
+ This dataset is a **curated version of the French subset of Common Voice 13.0**, enriched with a phonetic transcription column (`phoneme`).
47
+
48
+ It was created by the **Laboratoire de Mécanique des Structures et des Systèmes Couplés (Cnam-LMSSC)** to support research in speech processing, specifically for tasks requiring phonetic alignment, phoneme recognition, and robust speech-to-text applications in French.
49
+
50
+ The dataset retains the original audio and metadata from Common Voice but adds valid IPA (International Phonetic Alphabet) transcriptions and performs mild curation to ensure data quality (e.g., removing clips with zero duration or missing text).
51
+
52
+ ### Supported Tasks
53
+ - **Phoneme Recognition:** Training models to transcribe audio directly into IPA phonemes.
54
+ - **Automatic Speech Recognition (ASR):** Standard speech-to-text using the cleaned data.
55
+ - **Text-to-Speech (TTS):** Using the phoneme-audio pairs for training acoustic models.
56
+
57
+ ### Languages
58
+ The dataset contains audio in **French (`fr`)**.
59
+
60
+ ## Dataset Structure
61
+
62
+ ### Data Instances
63
+
64
+ A typical data point comprises the path to the audio file, the audio array itself, the original sentence, and its phonetic transcription.
65
+
66
+ ```python
67
+ {
68
+ 'client_id': 'd5d03...',
69
+ 'path': 'common_voice_fr_12345.mp3',
70
+ 'audio': {
71
+ 'path': 'common_voice_fr_12345.mp3',
72
+ 'array': array([-0.0002, 0.0005, ...], dtype=float32),
73
+ 'sampling_rate': 48000
74
+ },
75
+ 'sentence': "Bonjour, comment allez-vous ?",
76
+ 'phoneme': "b ɔ̃ ʒ u ʁ k ɔ m ɑ̃ t a l e v u", # Example IPA
77
+ 'up_votes': 2,
78
+ 'down_votes': 0,
79
+ 'age': 'thirties',
80
+ 'gender': 'male',
81
+ 'accent': 'france'
82
+ }