carlosdanielhernandezmena commited on
Commit
5be824f
1 Parent(s): f268ba6

Adding info to the README file

Browse files
Files changed (1) hide show
  1. README.md +110 -0
README.md CHANGED
@@ -23,3 +23,113 @@ task_categories:
23
  - automatic-speech-recognition
24
  task_ids: []
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  - automatic-speech-recognition
24
  task_ids: []
25
  ---
26
+
27
+ # Dataset Card for althingi_asr
28
+ ## Table of Contents
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Data](#data)
32
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
33
+ - [Languages](#languages)
34
+ - [Dataset Structure](#dataset-structure)
35
+ - [Data Instances](#data-instances)
36
+ - [Data Fields](#data-fields)
37
+ - [Data Splits](#data-splits)
38
+ - [Additional Information](#additional-information)
39
+ - [Other Known Limitations](#other-known-limitations)
40
+ - [Licensing Information](#licensing-information)
41
+ - [Citation Information](#citation-information)
42
+ - [Contributions](#contributions)
43
+
44
+ ## Dataset Description
45
+ - **Homepage:** Althingi Parliamentary Speech
46
+ - **Repository:** [LDC](https://catalog.ldc.upenn.edu/LDC2021S01)
47
+ - **Paper:** [Building an ASR corpus using Althingi’s Parliamentary Speeches](https://www.researchgate.net/profile/Jon-Gudnason/publication/319185185_Building_an_ASR_Corpus_Using_Althingi's_Parliamentary_Speeches/links/5d1dbdd3a6fdcc2462bdda0f/Building-an-ASR-Corpus-Using-Althingis-Parliamentary-Speeches.pdf)
48
+ - **Point of Contact:** [Jón Guðnason](mailto:jg@ru.is)
49
+
50
+ ### Dataset Summary
51
+
52
+ Althingi Parliamentary Speech consists of approximately 542 hours of recorded speech from Althingi, the Icelandic Parliament, along with corresponding transcripts, a pronunciation dictionary and two language models. Speeches date from 2005-2016.
53
+
54
+ This dataset was collected in 2016 by the ASR for Althingi project at [Reykjavik University](https://en.ru.is/) in collaboration with the Althingi speech department. The purpose of that project was to develop an ASR (automatic speech recognition) system for parliamentary speech to replace the procedure of manually transcribing performed speeches.
55
+
56
+ ### Data
57
+
58
+ The mean speech length is six minutes, with speeches ranging from under one minute to around thirty minutes. The corpus features 197 speakers (105 male, 92 female) and is split into training, development and evaluation sets. The language models are of two types: a pruned trigram model, used in decoding, and an unpruned constant ARPA 5-gram model, used for re-scoring decoding results.
59
+
60
+ Audio data is presented as single channel 16-bit mp3 files; the majority of these files have a sample rate of 44.1 kHz. Transcripts and other text data are plain text encoded in UTF-8.
61
+
62
+ ### Example Usage
63
+ The Althingi Corpus is divided in 3 splits: train, validation and test. To load a specific split pass its name as a config name:
64
+ ```python
65
+ from datasets import load_dataset
66
+ althingi_asr = load_dataset("language-and-voice-lab/althingi_asr")
67
+ ```
68
+ To load an specific split (for example, the validation split) do:
69
+ ```python
70
+ from datasets import load_dataset
71
+ althingi_asr = load_dataset("language-and-voice-lab/althingi_asr",split="validation")
72
+ ```
73
+
74
+ ### Supported Tasks
75
+ automatic-speech-recognition: The dataset can be used to train a model for Automatic Speech Recognition (ASR). The model is presented with an audio file and asked to transcribe the audio file to written text. The most common evaluation metric is the word error rate (WER).
76
+
77
+ ### Languages
78
+ The audio is in Icelandic.
79
+
80
+ ## Dataset Structure
81
+
82
+ ### Data Instances
83
+ ```python
84
+ {
85
+ 'audio_id': 'rad20160602T000219_00083',
86
+ 'audio': {
87
+ 'path': '/home/inga/.cache/HuggingFace/datasets/downloads/extracted/52607f9db9e3394263070575d29323213b99a06a996c43d4fe75bca115827d12/dev/EyH/rad20160602T000219/rad20160602T000219_00083.flac',
88
+ 'array': array([-0.01098633, -0.01489258, -0.01040649, ..., 0.00314331,
89
+ 0.00186157, 0.00527954], dtype=float32),
90
+ 'sampling_rate': 16000
91
+ },
92
+ 'speaker_id': 'rad20160602T000219',
93
+ 'duration': 12.67199993133545,
94
+ 'normalized_text': 'og má svo sannarlega segja að landslagið sé nokkuð breytt frá því þrjú komma tvö prósent þjóðarinnar töldust vera innflytjendur árið tvö þúsund en nú teljast tíu prósent þjóðarinnar vera fyrsta og önnur kynslóð innflytjenda'
95
+ }
96
+ ```
97
+
98
+ ### Data Fields
99
+ * `audio_id` (string) - id of audio segment
100
+ * `audio` (datasets.Audio) - a dictionary containing the path to the audio, the decoded audio array, and the sampling rate. In non-streaming mode (default), the path points to the locally extracted audio. In streaming mode, the path is the relative path of an audio inside its archive (as files are not downloaded and extracted locally).
101
+ * `speaker_id` (string) - id of speaker
102
+ * `duration` (float32) - duration of the audio file in seconds.
103
+ * `normalized_text` (string) - normalized audio segment transcription.
104
+
105
+ ### Data Splits
106
+ The corpus is split into train, evaluation, and test portions. Lenghts of every portion are: train = 514h29m, test = 13h52m, evaluation=14h02m.
107
+
108
+ To load an specific portion please see the above section "Example Usage".
109
+
110
+ ## Additional Information
111
+
112
+ ### Other Known Limitations
113
+ "Althingi Parliamentary Speech" by the Language and Voice Laboratory (LVL) at the Reykjavik University is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) License with the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
114
+
115
+ ### Licensing Information
116
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
117
+
118
+ ### Citation Information
119
+ ```
120
+ @misc{helgadottiralthingi2021,
121
+ title={Althingi Parliamentary Speech},
122
+ ldc_catalog_no={LDC2021S01},
123
+ DOI={https://doi.org/10.35111/695b-6697},
124
+ author={Helgadóttir, Inga Rún and Kjaran, Róbert and Nikulásdóttir, Anna Björk and Guðnason, Jón},
125
+ publisher={Reykjavík University}
126
+ journal={Linguistic Data Consortium, Philadelphia},
127
+ year={2021},
128
+ url={https://catalog.ldc.upenn.edu/LDC2021S01},
129
+ }
130
+ ```
131
+
132
+ ### Contributions
133
+
134
+ This project was made possible through the support of Althingi’s information and publications departments. The authors would like to thank Solveig K. Jónsdóttir, Þorbjörg Árnadóttir and Ingvi Stígsson for their valuable help.
135
+