Skip to content
Novus Examples
json233 B

ASR — 89 Transcript (JSON)

Ground-truth transcript for the 89 ASR utterance pair — expected text: “eight nine”.

Preview — first 10 linesjson
{
  "id": "digits-89",
  "text": "eight nine",
  "digits": "89",
  "language": "en",
  "sampleRate": 16000,
  "note": "Synthetic tone-digit utterance \u2014 not real speech. Ground truth for ASR harnesses.",
  "seed": 803
}

Specifications

Digits
89
Text
eight nine
Role
ground truth transcript
Seed
803

What is a .json file?

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.

How to use this file

Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.

How to use this file for testing

“ASR — 89 Transcript (JSON)” is a deterministic Novus Examples fixture for ASR testing, JSON parsing. Short synthetic digit/tone utterances with transcript JSON and clean↔noise pairs — for testing ASR loaders, WER harnesses, and audio preprocessing.

Documented properties for this file: seed 803 · ground truth transcript. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Media fixtures are short and synthetic by design. Prefer waveform or transcript ground truth in the same group when measuring ASR, trim, upscale, or sync tools; do not assume broadcast-quality masters.

Run ASR on the clip and score the transcript against the documented ground-truth script; clips are short, synthetic, and read from a fixed word or digit sequence.

Code examples

import json

with open("digits-89-transcript.json") as f:
    data = json.load(f)
print(type(data), len(data))

Generated by generation/audio_asr_wave_b.py. Free for any use, no attribution required — license.