File size: 4,487 Bytes
59e111f
 
 
25c75c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f0ec5ab
 
 
 
 
 
 
 
 
 
25c75c3
 
 
 
f0ec5ab
25c75c3
 
 
 
f0ec5ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25c75c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f0ec5ab
25c75c3
 
 
f0ec5ab
 
 
25c75c3
 
 
 
 
 
 
 
 
 
f0ec5ab
25c75c3
 
 
f0ec5ab
25c75c3
 
 
 
f0ec5ab
25c75c3
f0ec5ab
 
 
25c75c3
f0ec5ab
25c75c3
 
f0ec5ab
 
 
25c75c3
 
 
 
 
 
 
 
 
 
f0ec5ab
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
language:
- sv
license: cc-by-4.0
pretty_name: Swedia ASR Dataset
task_categories:
- automatic-speech-recognition
tags:
- swedish
- asr
- speech-recognition
- dialects
- transcription
- wer
- cer
---

# Swedia ASR Dataset

This repository contains a small Swedish ASR evaluation dataset based on speech
transcriptions from Swedia 2000. It was assembled to compare automatic
speech-recognition output against manually corrected reference transcriptions
for Swedish dialectal speech.

The dataset is useful for quick experiments with Swedish ASR systems, especially
when you want to inspect recognition quality on spontaneous speech from
different regions, speakers, ages, and genders.

## Thesis Context

This dataset was prepared as part of Kajsa Vesterberg's bachelor thesis,
[*Lost in Translation: AI's Struggles with Scanian - A Study on Language Models'
Attempts to Conquer Swedish and its Dialects*](https://lup.lub.lu.se/student-papers/search/publication/9191345),
published through Lund University's LUP Student Papers repository in 2025.

The thesis investigates whether automatic speech recognition performs unevenly
across Swedish regional speech, with particular attention to Scanian dialects.

## Repository Contents

| File | Description |
| --- | --- |
| `swedia_asr_dataset.tsv` | Normalized row-level TSV with reference transcripts, ASR outputs, and computed WER/CER. |
| `Dataset-Swedia-2000.docx` | ASR/dictation output grouped by location and speaker category. |
| `Original-Texts-Swedia-2000.docx` | Manually corrected reference transcriptions for the same speech excerpts. |
| `Calculation-of-Results-Swedia-2000.xlsx` | Spreadsheet with WER/CER calculations and comparison notes. |

## TSV Format

`swedia_asr_dataset.tsv` is the easiest file to use programmatically. It has 56
rows, one row per location and speaker-group excerpt.

Columns:

- `location`
- `speaker_group`
- `reference_transcript`
- `word_diktering_transcript`
- `word_diktering_wer`
- `word_diktering_cer`
- `whisper_transcript`
- `whisper_wer`
- `whisper_cer`

Some `word_diktering_*` fields are empty because the Word Dictation section does
not contain every location/speaker combination that appears in the reference and
Whisper sections.

The original DOCX and XLSX files are intentionally kept in the repository. They
represent the source working documents from the thesis project, while
`swedia_asr_dataset.tsv` is a cleaned, analysis-friendly version derived from
them.

## Speaker and Location Structure

The documents are organized by location and speaker group. Examples of locations
included in the files are:

- Bara
- Bjuv
- Broby
- Löderup
- N Rörum
- Össjö
- Kårsta
- Skuttunge
- Kyrkslätt, Finland
- Särna, Dalarna
- Sproge, Gotland

Speaker groups include:

- `Äldre Kvinna`
- `Äldre Man`
- `Yngre Kvinna`
- `Yngre Man`

## Metrics

The normalized TSV includes computed evaluation fields for:

- `WER`: word error rate
- `CER`: character error rate

The original spreadsheet also includes comparison fields for:

- comparisons across locations/regions
- comparisons across speaker age and gender groups
- Word Dictation vs. Whisper-style ASR comparisons

## Suggested Uses

- Evaluate Swedish ASR output against reference transcripts.
- Compare recognition quality across dialect regions.
- Inspect typical ASR errors in spontaneous Swedish speech.
- Practice WER/CER calculation and ASR error analysis.
- Load a single TSV instead of manually extracting the DOCX files.

## Loading the Files

For most analysis, start with the normalized TSV:

Example:

```python
import pandas as pd

data = pd.read_csv(
    "hf://datasets/kvest/Swedia-ASR-Dataset/swedia_asr_dataset.tsv",
    sep="\t",
)
print(data[["location", "speaker_group", "whisper_wer", "whisper_cer"]].head())
```

The original DOCX/XLSX files are still included for transparency and manual
inspection.

## Limitations

- The dataset is small and best suited for exploratory ASR evaluation.
- The repository contains transcriptions and evaluation material, not raw audio.
- Results should be interpreted as a compact benchmark/sample rather than a
  comprehensive Swedish ASR evaluation suite.

## Citation and Source Notes

This dataset is based on transcribed material from Swedia 2000 and was prepared
for ASR comparison and error analysis in the bachelor thesis linked above. If
you use it, cite this dataset page, the thesis, and Swedia 2000 as the
underlying transcription source where appropriate.