Evaluates automatic speech recognition (ASR) systems on spontaneous, formal parliamentary speech in Danish. It tests both in-domain recognition accuracy and cross-domain transferability between the new FT Speech corpus and the established SBRead corpus. Use when the user wants to benchmark on FT Speech, SBRead, or asks about evaluating this task. Reports WER.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill ft-speech-asr-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ft Speech Asr Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-ft-speech-asr-eval)More formats (shields.io, HTML) on the badges page.
---
name: ft-speech-asr-eval
description: Evaluates automatic speech recognition (ASR) systems on spontaneous, formal parliamentary speech in Danish. It tests both in-domain recognition accuracy and cross-domain transferability between the new FT Speech corpus and the established SBRead corpus. Use when the user wants to benchmark on FT Speech, SBRead, or asks about evaluating this task. Reports WER.
metadata:
skill_kind: dataset_eval
source_arxiv: 2005.12368
bibtex_key: kirkedal2020ftspeech
confidence: high
---
# ft-speech-asr-eval
> FT Speech: Danish Parliament Speech Corpus — Kirkedal et al. (2020) (arXiv:2005.12368, 2020)
## What this evaluates
Evaluates automatic speech recognition (ASR) systems on spontaneous, formal parliamentary speech in Danish. It tests both in-domain recognition accuracy and cross-domain transferability between the new FT Speech corpus and the established SBRead corpus.
## Datasets
- **FT Speech** — total ?; splits: train (-1), dev (-1), test (-1)
- **SBRead** — total ?; splits: train (-1), dev (-1), test (-1)
## Metrics
- `WER` **(primary)** — range: percent
- Word Error Rate: the minimum number of insertions, deletions, and substitutions of words required to transform the predicted transcript into the reference transcript, divided by the total number of words in the reference transcript.
## Input / output format
**Input**: 40-dimensional MFCC audio features (subsampled with iVector speaker adaptation) for acoustic modeling, combined with text transcripts for language modeling.
**Output**: Word-level transcribed text corresponding to the input audio sequence.
## Scoring recipe
```python
def calculate_wer(predictions, references):
total_errors = 0
total_words = 0
for pred, ref in zip(predictions, references):
# Compute edit distance (Levenshtein) between word lists
errors = edit_distance(pred.split(), ref.split())
total_errors += errors
total_words += len(ref.split())
return (total_errors / total_words) * 100 if total_words > 0 else 0.0
```
## Common pitfalls
- Cross-domain evaluation mixes in-domain and out-of-domain test sets; failing to separate them obscures transferability results.
- Models trained on formal read speech (SBRead) perform poorly on spontaneous parliamentary speech, so domain mismatch must be explicitly reported rather than averaged.
## Evidence (verbatim from paper)
> ASR models trained on FT Speech achieve 14.01 WER and show strong transferability to Språkbanken data, while models trained on Språkbanken fail significantly on spontaneous speech, demonstrating FT Speech's value for realistic ASR development.
## Citation
```bibtex
@misc{kirkedal2020ftspeech,
title={FT Speech: Danish Parliament Speech Corpus},
author={Kirkedal et al. (2020)},
year={2020},
note={arXiv:2005.12368}
}
```
- arXiv: 2005.12368
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!