Datasets:
Tasks:
Automatic Speech Recognition
Formats:
soundfolder
Languages:
Faroese
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,58 +4,248 @@ task_categories:
|
|
| 4 |
- automatic-speech-recognition
|
| 5 |
language:
|
| 6 |
- fo
|
| 7 |
-
pretty_name: FPSC
|
| 8 |
size_categories:
|
| 9 |
- 10K<n<100K
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# FPSC
|
| 13 |
|
| 14 |
-
FPSC
|
| 15 |
|
| 16 |
-
The dataset contains
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
-
The
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
| 23 |
|
| 24 |
-
-
|
| 25 |
-
- `audio`: audio column created by Hugging Face when loading the dataset
|
| 26 |
-
- `speaker_id`: speaker identifier, mapped from `mp_id`
|
| 27 |
-
- `gender`: speaker gender metadata
|
| 28 |
-
- `age`: age group, mapped from `age_group`
|
| 29 |
-
- `duration`: audio duration in seconds, mapped from `length`
|
| 30 |
-
- `normalized_text`: machine-generated transcript, mapped from `winner_text`
|
| 31 |
-
- `dialect`: speaker dialect metadata
|
| 32 |
-
- `winner_text`: original winning ROVER transcript
|
| 33 |
-
- `text`: same as `winner_text`, included for ASR training convenience
|
| 34 |
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
|
| 48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
-
The
|
| 51 |
|
| 52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
```python
|
| 55 |
from datasets import load_dataset, Audio
|
| 56 |
|
| 57 |
-
ds = load_dataset("davidilag/FPSC
|
| 58 |
ds = ds.cast_column("audio", Audio(sampling_rate=16000))
|
| 59 |
|
| 60 |
print(ds)
|
| 61 |
print(ds["train"][0])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- automatic-speech-recognition
|
| 5 |
language:
|
| 6 |
- fo
|
| 7 |
+
pretty_name: FPSC
|
| 8 |
size_categories:
|
| 9 |
- 10K<n<100K
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# FPSC — Faroese Parliament Speech Corpus
|
| 13 |
|
| 14 |
+
FPSC is a large-scale Faroese parliamentary speech corpus constructed from publicly available recordings from *Løgtingið*, the Parliament of the Faroe Islands.
|
| 15 |
|
| 16 |
+
The dataset contains approximately:
|
| 17 |
|
| 18 |
+
- 1,600 hours of speech
|
| 19 |
+
- 89,000+ parliamentary speeches
|
| 20 |
+
- 368 parliamentary meetings
|
| 21 |
+
- 75 unique speakers
|
| 22 |
+
- speaker demographic metadata
|
| 23 |
+
- dialect metadata
|
| 24 |
+
- machine-generated weak transcripts
|
| 25 |
+
- ROVER voting metadata
|
| 26 |
+
- audio aligned at speech level
|
| 27 |
|
| 28 |
+
The corpus was created as part of the paper:
|
| 29 |
|
| 30 |
+
> **FPSC: A Sustainable Pipeline for Building a Faroese Parliamentary Speech Corpus**
|
| 31 |
+
> Dávid í Lág, Barbara Scalvini, Carlos Mena, Jón Guðnason
|
| 32 |
+
> LREC 2026
|
| 33 |
|
| 34 |
+
The dataset represents the first large-scale corpus of natural spoken Faroese and is intended for:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
+
- Automatic Speech Recognition (ASR)
|
| 37 |
+
- Low-resource speech technology
|
| 38 |
+
- Parliamentary speech analysis
|
| 39 |
+
- Sociolinguistic research
|
| 40 |
+
- Dialect research
|
| 41 |
+
- Weakly supervised ASR training
|
| 42 |
+
- Continual pretraining
|
| 43 |
+
- Multilingual transfer learning
|
| 44 |
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
# Dataset Structure
|
| 48 |
+
|
| 49 |
+
The dataset follows the Hugging Face `Audio` dataset format and contains one row per parliamentary speech segment.
|
| 50 |
+
|
| 51 |
+
Each entry contains:
|
| 52 |
+
|
| 53 |
+
- segmented WAV audio
|
| 54 |
+
- machine-generated transcript
|
| 55 |
+
- parliamentary metadata
|
| 56 |
+
- speaker metadata
|
| 57 |
+
- dialect metadata
|
| 58 |
+
- ROVER voting information
|
| 59 |
+
- ASR ensemble metadata
|
| 60 |
+
|
| 61 |
+
---
|
| 62 |
+
|
| 63 |
+
# Features
|
| 64 |
+
|
| 65 |
+
## Audio and Speech Fields
|
| 66 |
+
|
| 67 |
+
| Field | Description |
|
| 68 |
+
|---|---|
|
| 69 |
+
| `audio` | Hugging Face `Audio` object containing the speech segment |
|
| 70 |
+
| `audio_id` | Unique WAV filename for the speech segment |
|
| 71 |
+
| `duration` | Audio duration in seconds |
|
| 72 |
+
| `length` | Original segment length in seconds |
|
| 73 |
+
| `audio_format` | Audio format (WAV) |
|
| 74 |
+
| `sampling_rate` | Audio sample rate (16 kHz mono) |
|
| 75 |
+
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
## Transcript Fields
|
| 79 |
+
|
| 80 |
+
| Field | Description |
|
| 81 |
+
|---|---|
|
| 82 |
+
| `text` | Final machine-generated transcript selected through ROVER voting |
|
| 83 |
+
| `normalized_text` | Normalized version of the transcript for ASR training |
|
| 84 |
+
| `winner_text` | Raw winning transcript from the ROVER voting process |
|
| 85 |
+
| `language` | Spoken language of the segment (Faroese) |
|
| 86 |
+
|
| 87 |
+
---
|
| 88 |
+
|
| 89 |
+
## Speaker Metadata
|
| 90 |
+
|
| 91 |
+
| Field | Description |
|
| 92 |
+
|---|---|
|
| 93 |
+
| `speaker_id` | Internal speaker identifier |
|
| 94 |
+
| `mp_id` | Parliament member identifier |
|
| 95 |
+
| `name` | Speaker name |
|
| 96 |
+
| `gender` | Speaker gender |
|
| 97 |
+
| `age` | Speaker age |
|
| 98 |
+
| `age_group` | Speaker age group |
|
| 99 |
+
| `date_of_birth` | Speaker date of birth |
|
| 100 |
+
| `city` | Speaker home city |
|
| 101 |
+
| `dialect` | Dialect region |
|
| 102 |
+
| `political_party_affiliation` | Political party affiliation |
|
| 103 |
+
| `mp_url` | URL to parliament member profile |
|
| 104 |
+
|
| 105 |
+
---
|
| 106 |
+
|
| 107 |
+
## Parliamentary Metadata
|
| 108 |
+
|
| 109 |
+
| Field | Description |
|
| 110 |
+
|---|---|
|
| 111 |
+
| `id` | Unique speech segment ID |
|
| 112 |
+
| `meeting_id` | Parliamentary meeting identifier |
|
| 113 |
+
| `url` | URL to the original parliamentary meeting |
|
| 114 |
+
| `date` | Meeting date |
|
| 115 |
+
| `time` | Speech start time |
|
| 116 |
+
| `second` | Start offset in seconds within the meeting |
|
| 117 |
+
| `topic` | Parliamentary agenda topic |
|
| 118 |
+
| `contribution_type` | Type of contribution (speech, remark, chair, etc.) |
|
| 119 |
+
| `location` | Recording location |
|
| 120 |
+
|
| 121 |
+
---
|
| 122 |
+
|
| 123 |
+
## ROVER Voting Metadata
|
| 124 |
+
|
| 125 |
+
The final transcripts were generated using an ensemble of four Faroese-adapted ASR systems combined through ROVER voting.
|
| 126 |
+
|
| 127 |
+
| Field | Description |
|
| 128 |
+
|---|---|
|
| 129 |
+
| `rover_vote_type` | Type of ROVER voting decision |
|
| 130 |
+
| `confidence` | Confidence score assigned by the voting system |
|
| 131 |
+
| `winner_model_id` | Full Hugging Face model ID of the winning ASR model |
|
| 132 |
+
| `winner_model_short` | Short name of the winning ASR model |
|
| 133 |
+
| `costs` | Full ROVER voting cost dictionary stored as JSON |
|
| 134 |
+
| `cost_wav2vec2_fo_cpt` | Voting cost for Wav2Vec2-FO-CPT |
|
| 135 |
+
| `cost_whisper_fo` | Voting cost for Whisper-FO |
|
| 136 |
+
| `cost_wav2vec2_fo` | Voting cost for Wav2Vec2-FO |
|
| 137 |
+
| `cost_whisper_no_is_fo` | Voting cost for Whisper-NO/IS/FO |
|
| 138 |
+
|
| 139 |
+
---
|
| 140 |
+
|
| 141 |
+
# ASR Models Used for Weak Transcription
|
| 142 |
+
|
| 143 |
+
The corpus transcripts were generated using four Faroese-adapted ASR systems:
|
| 144 |
+
|
| 145 |
+
| Model | Description |
|
| 146 |
+
|---|---|
|
| 147 |
+
| `Wav2Vec2-FO-CPT` | Continually pretrained Wav2Vec2 XLS-R model adapted on Faroese parliamentary speech |
|
| 148 |
+
| `Wav2Vec2-FO` | Faroese fine-tuned Wav2Vec2 XLS-R model |
|
| 149 |
+
| `Whisper-FO` | Whisper Large model fine-tuned on Faroese speech |
|
| 150 |
+
| `Whisper-NO/IS/FO` | Multilingual Whisper model fine-tuned on Norwegian, Icelandic, and Faroese |
|
| 151 |
+
|
| 152 |
+
The final transcript for each segment was selected using weighted ROVER voting based on ASR model performance.
|
| 153 |
+
|
| 154 |
+
---
|
| 155 |
+
|
| 156 |
+
# Transcript Quality Notice
|
| 157 |
+
|
| 158 |
+
The transcripts in FPSC are automatically generated and should be treated as **weakly supervised labels**, not manually verified gold-standard transcriptions.
|
| 159 |
|
| 160 |
+
Although the corpus was generated using multiple ASR systems and ROVER consensus voting, transcription errors remain present, especially for:
|
| 161 |
|
| 162 |
+
- overlapping speech
|
| 163 |
+
- dialect variation
|
| 164 |
+
- named entities
|
| 165 |
+
- interruptions
|
| 166 |
+
- spontaneous parliamentary speech
|
| 167 |
|
| 168 |
+
The dataset is therefore most suitable for:
|
| 169 |
|
| 170 |
+
- weakly supervised ASR training
|
| 171 |
+
- continual pretraining
|
| 172 |
+
- large-scale speech modeling
|
| 173 |
+
- speech representation learning
|
| 174 |
+
- sociolinguistic analysis
|
| 175 |
+
|
| 176 |
+
---
|
| 177 |
+
|
| 178 |
+
# Loading the Dataset
|
| 179 |
|
| 180 |
```python
|
| 181 |
from datasets import load_dataset, Audio
|
| 182 |
|
| 183 |
+
ds = load_dataset("davidilag/FPSC")
|
| 184 |
ds = ds.cast_column("audio", Audio(sampling_rate=16000))
|
| 185 |
|
| 186 |
print(ds)
|
| 187 |
print(ds["train"][0])
|
| 188 |
+
```
|
| 189 |
+
|
| 190 |
+
---
|
| 191 |
+
|
| 192 |
+
# Citation
|
| 193 |
+
|
| 194 |
+
If you use FPSC in your research, please cite:
|
| 195 |
+
|
| 196 |
+
```bibtex
|
| 197 |
+
@inproceedings{iLag2026FPSC,
|
| 198 |
+
author = {Dávid í Lág and Barbara Scalvini and Carlos Mena and Jón Guðnason},
|
| 199 |
+
title = {{FPSC}: A Sustainable Pipeline for Building a Faroese Parliamentary Speech Corpus},
|
| 200 |
+
booktitle = {Proceedings of the Language Resources and Evaluation Conference (LREC 2026)},
|
| 201 |
+
year = {2026},
|
| 202 |
+
address = {Palma de Mallorca, Spain},
|
| 203 |
+
publisher = {European Language Resources Association (ELRA)},
|
| 204 |
+
institution = {University of the Faroe Islands},
|
| 205 |
+
keywords = {Faroese, Parliamentary Speech, Automatic Speech Recognition, Weakly-Supervised Transcription, Whisper, Wav2Vec2},
|
| 206 |
+
abstract = {We present FPSC, a 1,600-hour Faroese parliamentary speech corpus comprising approximately 89,000 speeches enriched with detailed speaker and linguistic metadata. The corpus was constructed using a sustainable ASR-assisted pipeline combining speech segmentation, multiple Faroese-adapted ASR systems, and ROVER-based consensus voting for weakly supervised transcription. FPSC represents the first large-scale corpus of natural spoken Faroese and provides an open resource for future research in automatic speech recognition and low-resource language technology.}
|
| 207 |
+
}
|
| 208 |
+
```
|
| 209 |
+
|
| 210 |
+
---
|
| 211 |
+
|
| 212 |
+
# Repository and Scripts
|
| 213 |
+
|
| 214 |
+
Processing scripts and pipeline implementation:
|
| 215 |
+
|
| 216 |
+
- GitHub repository: https://github.com/davidilag/LREC2026
|
| 217 |
+
|
| 218 |
+
---
|
| 219 |
+
|
| 220 |
+
# Original Data Source
|
| 221 |
+
|
| 222 |
+
The original parliamentary recordings and metadata were collected from the official website of *Løgtingið*, the Parliament of the Faroe Islands:
|
| 223 |
+
|
| 224 |
+
https://www.logting.fo/mal/yvirlit/gerdabokur/
|
| 225 |
+
|
| 226 |
+
The website provides publicly accessible:
|
| 227 |
+
|
| 228 |
+
- parliamentary meeting recordings
|
| 229 |
+
- agendas and meeting protocols
|
| 230 |
+
- speaker order and timestamps
|
| 231 |
+
- meeting dates and metadata
|
| 232 |
+
- parliament member information
|
| 233 |
+
|
| 234 |
+
FPSC was constructed by automatically downloading, processing, segmenting, and transcribing these publicly available parliamentary sessions into a structured speech corpus suitable for ASR and language technology research.
|
| 235 |
+
|
| 236 |
+
---
|
| 237 |
+
|
| 238 |
+
# License
|
| 239 |
+
|
| 240 |
+
This dataset is released under the CC BY 4.0 license.
|
| 241 |
+
|
| 242 |
+
The recordings originate from publicly available parliamentary broadcasts from *Løgtingið*, the Parliament of the Faroe Islands.
|
| 243 |
+
|
| 244 |
+
---
|
| 245 |
+
|
| 246 |
+
# Contact
|
| 247 |
+
|
| 248 |
+
**Dávid í Lág**
|
| 249 |
+
University of the Faroe Islands
|
| 250 |
+
MSc. Computer Science, Ph.D. student in Computer Science (2024-2028)
|
| 251 |
+
Research area: Automatic Speech Recognition for Low-Resource Languages
|