cahya commited on
Commit
536e184
1 Parent(s): 47d0d72

Add documentation

Browse files
Files changed (2) hide show
  1. README.md +142 -1
  2. release_stats.py +1 -1
README.md CHANGED
@@ -1,3 +1,144 @@
1
  ---
2
- license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: Common Voice Corpus 9.0
3
+ annotations_creators:
4
+ - crowdsourced
5
+ language_creators:
6
+ - crowdsourced
7
+ language:
8
+ - ace
9
+ - bal
10
+ - bug
11
+ - id
12
+ - min
13
+ - jav
14
+ - sun
15
+ license: cc-by-0.0
16
+ multilinguality:
17
+ - multilingual
18
+ size_categories:
19
+ ace:
20
+ - 1K<n<10K
21
+ bal:
22
+ - 1K<n<10K
23
+ bug:
24
+ - 1K<n<10K
25
+ id:
26
+ - 1K<n<10K
27
+ min:
28
+ - 1K<n<10K
29
+ jav:
30
+ - 1K<n<10K
31
+ sun:
32
+ - 1K<n<10K
33
+ source_datasets:
34
+ - librivox
35
+ task_categories:
36
+ - speech-processing
37
+ task_ids:
38
+ - automatic-speech-recognition
39
  ---
40
+ # Dataset Card for LibriVox Indonesia 1.0
41
+ ## Table of Contents
42
+ - [Dataset Description](#dataset-description)
43
+ - [Dataset Summary](#dataset-summary)
44
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
45
+ - [Languages](#languages)
46
+ - [Dataset Structure](#dataset-structure)
47
+ - [Data Instances](#data-instances)
48
+ - [Data Fields](#data-fields)
49
+ - [Data Splits](#data-splits)
50
+ - [Dataset Creation](#dataset-creation)
51
+ - [Curation Rationale](#curation-rationale)
52
+ - [Source Data](#source-data)
53
+ - [Annotations](#annotations)
54
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
55
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
56
+ - [Social Impact of Dataset](#social-impact-of-dataset)
57
+ - [Discussion of Biases](#discussion-of-biases)
58
+ - [Other Known Limitations](#other-known-limitations)
59
+ - [Additional Information](#additional-information)
60
+ - [Dataset Curators](#dataset-curators)
61
+ - [Licensing Information](#licensing-information)
62
+ - [Citation Information](#citation-information)
63
+ - [Contributions](#contributions)
64
+ ## Dataset Description
65
+ - **Homepage:** https://huggingface.co/datasets/cahya/librivox-indonesia
66
+ - **Repository:** https://huggingface.co/datasets/cahya/librivox-indonesia
67
+ - **Point of Contact:** [Cahya Wirawan](mailto:cahya.wirawan@gmail.com)
68
+ ### Dataset Summary
69
+ The LibriVox Indonesia dataset consists of MP3 audio and a corresponding text file we generated from the public
70
+ domain audiobooks [LibriVox](https://librivox.org/). We collected only languages in Indonesia for this dataset.
71
+ The original LibriVox audiobooks or sound files' duration varies from a few minutes to a few hours. Each audio
72
+ file in the speech dataset now lasts from a few seconds to a maximum of 20 seconds.
73
+
74
+ We converted the audiobooks to speech datasets using the forced alignment software we developed. It supports
75
+ multilingual, including low-resource languages, such as Acehnese, Balinese, or Minangkabau. We can also use it
76
+ for other languages without additional work to train the model.
77
+
78
+ The dataset currently consists of 8 hours in 7 languages from Indonesia. We will add more languages or audio files
79
+ as we collect them.
80
+
81
+ ### Languages
82
+ ```
83
+ Acehnese, Balinese, Bugisnese, Indonesian, Minangkabau, Javanese, Sundanese
84
+ ```
85
+
86
+ ## Dataset Structure
87
+ ### Data Instances
88
+ A typical data point comprises the `path` to the audio file and its `sentence`. Additional fields include
89
+ `reader` and `language`.
90
+ ```python
91
+ {
92
+ 'path': 'librivox-indonesia/sundanese/universal-declaration-of-human-rights/human_rights_un_sun_brc_0000.mp3',
93
+ 'language': 'sun',
94
+ 'reader': '3174',
95
+ 'sentence': 'pernyataan umum ngeunaan hak hak asasi manusa sakabeh manusa',
96
+ 'audio': {
97
+ 'path': 'librivox-indonesia/sundanese/universal-declaration-of-human-rights/human_rights_un_sun_brc_0000.mp3',
98
+ 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32),
99
+ 'sampling_rate': 48000
100
+ },
101
+ }
102
+ ```
103
+
104
+ ### Data Fields
105
+ `path` (`string`): The path to the audio file
106
+ `language` (`string`): The language of the audio file
107
+ `reader` (`string`): The reader Id in LibriVox
108
+ `sentence` (`string`): The sentence the user was prompted to speak
109
+ `audio` (`dict`): A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the `"audio"` column, *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
110
+
111
+ ### Data Splits
112
+ The speech material has only train split.
113
+
114
+ ## Dataset Creation
115
+ ### Curation Rationale
116
+ [Needs More Information]
117
+ ### Source Data
118
+ #### Initial Data Collection and Normalization
119
+ [Needs More Information]
120
+ #### Who are the source language producers?
121
+ [Needs More Information]
122
+ ### Annotations
123
+ #### Annotation process
124
+ [Needs More Information]
125
+ #### Who are the annotators?
126
+ [Needs More Information]
127
+ ### Personal and Sensitive Information
128
+ [More Information Needed]
129
+ ## Considerations for Using the Data
130
+ ### Social Impact of Dataset
131
+ [More Information Needed]
132
+ ### Discussion of Biases
133
+ [More Information Needed]
134
+ ### Other Known Limitations
135
+ [More Information Needed]
136
+ ## Additional Information
137
+ ### Dataset Curators
138
+ [More Information Needed]
139
+ ### Licensing Information
140
+ Public Domain, [CC-0](https://creativecommons.org/share-your-work/public-domain/cc0/)
141
+ ### Citation Information
142
+ ```
143
+
144
+ ```
release_stats.py CHANGED
@@ -1,7 +1,7 @@
1
  STATS = {
2
  "name": "Librivox-Indonesia",
3
  "version": "1.0.0",
4
- "date": "",
5
  "locales": {
6
  "ace": {'reportedSentences': 149, 'duration': 1, 'clips': 1, 'users': 416, 'size': 1,
7
  'avgDurationSecs': 1, 'totalHrs': 1},
 
1
  STATS = {
2
  "name": "Librivox-Indonesia",
3
  "version": "1.0.0",
4
+ "date": "2022-09-04",
5
  "locales": {
6
  "ace": {'reportedSentences': 149, 'duration': 1, 'clips': 1, 'users': 416, 'size': 1,
7
  'avgDurationSecs': 1, 'totalHrs': 1},