thennal commited on
Commit
57fe859
1 Parent(s): 29d0d85

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -1
README.md CHANGED
@@ -24,4 +24,56 @@ task_ids: []
24
  # IMaSC: ICFOSS Malayalam Speech Corpus
25
 
26
 
27
- **IMaSC** is a Malayalam text and speech corpus made available by [ICFOSS](https://icfoss.in/) for the purpose of developing Malayalam TTS systems. The corpus contains 34,473 text-audio pairs of Malayalam sentences spoken by 8 speakers, totalling in approximately 50 hours of audio. The corpus is made available under the [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  # IMaSC: ICFOSS Malayalam Speech Corpus
25
 
26
 
27
+ **IMaSC** is a Malayalam text and speech corpus made available by [ICFOSS](https://icfoss.in/) for the purpose of developing speech technology for Malayalam, particularly text-to-speech. The corpus contains 34,473 text-audio pairs of Malayalam sentences spoken by 8 speakers, totalling in approximately 50 hours of audio.
28
+
29
+ ## Dataset Structure
30
+ The dataset consists of 34,473 instances with fields `text`, `speaker`, and `audio`. The audio is mono, sampled at 16kH. The transcription is normalized and only includes Malayalam characters and common punctuation. The table given below specifies how the 34,473 instances are split between the speakers, along with some basic speaker info:
31
+
32
+
33
+ | Speaker | Gender | Age | Time (HH:MM:SS) | Sentences |
34
+ | --- | --- | --- | --- | --- |
35
+ | Joji | Male | 28 | 06:08:55 | 4,332 |
36
+ | Sonia | Female | 43 | 05:22:39 | 4,294 |
37
+ | Jijo | Male | 26 | 05:34:05 | 4,093 |
38
+ | Greeshma | Female | 22 | 06:32:39 | 4,416 |
39
+ | Anil | Male | 48 | 05:58:34 | 4,239 |
40
+ | Vidhya | Female | 23 | 04:21:56 | 3,242 |
41
+ | Sonu | Male | 25 | 06:04:43 | 4,219 |
42
+ | Simla | Female | 24 | 09:34:21 | 5,638 |
43
+ | **Total** | | | **49:37:54** | **34,473** |
44
+
45
+ ### Data Instances
46
+ An example instance is given below:
47
+ ```json
48
+ {'text': 'സർവ്വകലാശാല വൈസ് ചാൻസലർ ഡോ. ചന്ദ്രബാബുവിനും സംഭവം തലവേദനയാവുകയാണ്',
49
+ 'speaker': 'Sonia',
50
+ 'audio': {'path': None,
51
+ 'array': array([ 0.00921631, 0.00930786, 0.00939941, ..., -0.00497437,
52
+ -0.00497437, -0.00497437]),
53
+ 'sampling_rate': 16000}}
54
+ ```
55
+
56
+ ### Data Fields
57
+ - **text** (str): Transcription of the audio file
58
+ - **speaker** (str): The name of the speaker
59
+ - **audio** (dict): Audio object including loaded audio array, sampling rate and path to audio (always None)
60
+
61
+ ### Data Splits
62
+
63
+ We provide all the data in a single `train` split. The loaded dataset object thus looks like this:
64
+ ```json
65
+ DatasetDict({
66
+ train: Dataset({
67
+ features: ['text', 'speaker', 'audio'],
68
+ num_rows: 34473
69
+ })
70
+ })
71
+ ```
72
+
73
+ ### Dataset Creation
74
+
75
+ The text is sourced from [Malayalam Wikipedia](https://ml.wikipedia.org), and read by our speakers in studio conditions. Extensive error correction was conducted to provide a clean, accurate database.
76
+
77
+
78
+ ## Additional Information
79
+ The corpus is made available under the [GPLv3 license](https://www.gnu.org/licenses/gpl-3.0.en.html).