# Gsc Speech Commands Eval

> 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 (%).

- Skill: `qhjqhj00/gsc-speech-commands-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/gsc-speech-commands-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/gsc-speech-commands-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/gsc-speech-commands-eval

---


# 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

