TransferRapid commited on
Commit
6a014f3
·
verified ·
1 Parent(s): 520f008

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +107 -3
README.md CHANGED
@@ -1,3 +1,107 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - speech
4
+ - speech-transcription
5
+ - romanian
6
+ language:
7
+ - ro
8
+ license: mit
9
+ ---
10
+ # Common Voices Corpus 20.0 (Romanian)
11
+ <h5 style="font-family: 'Calibri'; margin-bottom: 20px;">
12
+ Common Voices is an open-source dataset of speech recordings created by
13
+ <a href="https://commonvoice.mozilla.org" target="_blank">Mozilla</a> to improve speech recognition technologies.
14
+ It consists of crowdsourced voice samples in multiple languages, contributed by volunteers worldwide.
15
+ </h5>
16
+
17
+ <h5 style="font-family: 'Calibri'; margin-bottom: 20px;">
18
+ <strong>Challenges:</strong> The raw dataset included numerous recordings with incorrect transcriptions
19
+ or those requiring adjustments, such as sampling rate modifications, conversion to .wav format, and other refinements
20
+ essential for optimal use in developing and fine-tuning various models.
21
+ </h5>
22
+
23
+ <h5 style="font-family: 'Calibri'; margin-bottom: 20px;">
24
+ <strong>Processing:</strong> Our team, led by project manager Vișan Ionuț, carefully reviewed and manually corrected the
25
+ transcriptions of all audio segments, ensuring their conversion into the required format for modern models
26
+ (16k Hz sampling rate, mono channel, .wav format).
27
+ </h5>
28
+
29
+ ---
30
+ <h2>Dataset Summary<h2>
31
+
32
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
33
+ <strong>common_voices20_audio: </strong> The folder containing all processed audio segments.
34
+ </h5>
35
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
36
+ Total number of audio segments: <strong>41,431</strong>.
37
+ </h5>
38
+ <h5 style="font-family: 'Calibri'; margin-bottom: 20px;">
39
+ Total duration of all audio segments combined: approximately <strong>47 hours</strong>.
40
+ </h5>
41
+
42
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
43
+ <strong>common_voices20.csv: </strong> Contains metadata for all segments from the common_voices20_audio.
44
+ </h5>
45
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
46
+ The file contains 41,431 rows and 2 columns:
47
+ </h5>
48
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
49
+ <ul>
50
+ <li><em>audio_file</em>: File names of the processed audio segments from common_voices20_audio.</li>
51
+ <li><em>transcript</em>: Corresponding text transcriptions for each audio file from common_voices20_audio.</li>
52
+ </ul>
53
+ </h5>
54
+
55
+ ---
56
+ <h2>Split<h2>
57
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
58
+ To split the dataset (common_voices20.csv), we performed an 80-20 split into training and test sets using a seed value of 42, resulting in:
59
+ </h5>
60
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
61
+ <ul>
62
+ <li><em>train_common_voices20.csv</em>: It contains 33,144 of the audio segments.</li>
63
+ <li><em>test_common_voices20.csv</em>: It contains 8,287 of the audio segments.</li>
64
+ </ul>
65
+ </h5>
66
+
67
+ ---
68
+ <h2>How to use<h2>
69
+
70
+ ```python
71
+ from datasets import load_dataset
72
+
73
+ dataset = "TransferRapid/CommonVoices20_ro"
74
+
75
+ dataset = load_dataset(dataset)
76
+
77
+ print(dataset)
78
+ ```
79
+
80
+ ---
81
+ <h2>Usage<h2>
82
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
83
+ The dataset can be used for:
84
+ </h5>
85
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
86
+ <ul>
87
+ <li><em>Speech-to-Text (STT) – Automatic Transcription</em></li>
88
+ <li><em>Text-to-Speech (TTS) – Synthetic Voice Generation</em></li>
89
+ <li><em>Speech Enhancement & Noise Reduction</em></li>
90
+ <li><em>Speaker Recognition & Verification</em></li>
91
+ <li><em>Sentiment Analysis & Emotion Recognition</em></li>
92
+ <li><em>AI-Powered Voice Assistants & Smart Devices</em></li>
93
+ </ul>
94
+ </h5>
95
+
96
+ ---
97
+ <h2>Communication<h2>
98
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
99
+ For any questions regarding this dataset or to explore collaborations on ambitious AI/ML projects, please feel free to contact us at:
100
+ </h5>
101
+ <h5 style="font-family: 'Calibri'; margin-bottom: 2px;">
102
+ <ul>
103
+ <li><em>[email protected]</em></li>
104
+ <li><em><a href="https://www.linkedin.com/in/ionut-visan/" target="_blank">Linkedin</a></em></li>
105
+
106
+ </ul>
107
+ </h5>