Evaluates keyword spotting models trained on real versus synthetic speech data, measuring how ASR-based filtering of hallucinated synthetic commands affects classification accuracy on the Google Speech Commands dataset. Use when the user wants to benchmark on Google Speech Commands (GSC), or asks about evaluating this task. Reports Accuracy (%).
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill gsc-speech-commands-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gsc Speech Commands Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-gsc-speech-commands-eval)More formats (shields.io, HTML) on the badges page.
---
name: gsc-speech-commands-eval
description: Evaluates keyword spotting models trained on real versus synthetic speech data, measuring how ASR-based filtering of hallucinated synthetic commands affects classification accuracy on the Google Speech Commands dataset. Use when the user wants to benchmark on Google Speech Commands (GSC), or asks about evaluating this task. Reports Accuracy (%).
metadata:
skill_kind: dataset_eval
source_arxiv: 2409.12745
bibtex_key: quintas2024enhancing
confidence: high
---
# gsc-speech-commands-eval
> Enhancing Synthetic Training Data for Speech Commands: From ASR-Based Filtering to Domain Adaptation in SSL Latent Space — Quintas et al. (2024) (arXiv:2409.12745, 2024)
## What this evaluates
Evaluates keyword spotting models trained on real versus synthetic speech data, measuring how ASR-based filtering of hallucinated synthetic commands affects classification accuracy on the Google Speech Commands dataset.
## Datasets
- **Google Speech Commands (GSC)** — total ?; splits: train (-1), val (-1), test (-1)
## Metrics
- `Accuracy (%)` **(primary)** — range: percent
- Percentage of correctly classified audio commands in the test set. Computed as (number of correct predictions / total number of test instances) * 100.
## Input / output format
**Input**: Audio recordings of spoken short commands (keywords), processed through the MatchboxNet convolutional architecture.
**Output**: Discrete class label corresponding to the spoken command.
## Scoring recipe
```python
correct = sum(1 for pred, gold in zip(predictions, gold_labels) if pred == gold)
accuracy = (correct / len(gold_labels)) * 100
return accuracy
```
## Common pitfalls
- Models are trained on synthetic data but evaluated on real GSC test data, creating a domain gap that heavily impacts accuracy.
- Literature baselines (e.g., [17]) include a silence class during training, while this evaluation explicitly excludes it, making direct accuracy comparisons invalid.
- Results are averaged over 5 random seeds with standard deviation reported; single-run results may not be comparable to literature values.
## Evidence (verbatim from paper)
> Accuracy values are reported in Table 1. As expected, the best results were obtained with the original GSC training data (Real), with accuracy values above 98% . Results obtained in the Synth. condition, using synthetic data for training, achieved accuracy values of 89 - 90% . The ASR-based filtering technique led to an accuracy gain of over two percentage points on MatchboxNet models, demonstrating that uncontrolled hallucinations in synthetic training data can contaminate the dataset and degrade model performance.
## Citation
```bibtex
@misc{quintas2024enhancing,
title={Enhancing Synthetic Training Data for Speech Commands: From ASR-Based Filtering to Domain Adaptation in SSL Latent Space},
author={Quintas et al. (2024)},
year={2024},
note={arXiv:2409.12745}
}
```
- arXiv: 2409.12745
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!