NagaYu commited on
Commit
cdc3dee
·
verified ·
1 Parent(s): f11807b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +110 -0
README.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ language:
4
+ - ja
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ - text2text-generation
8
+ tags:
9
+ - asr-error-correction
10
+ - japanese
11
+ - whisper
12
+ - phonetics
13
+ pretty_name: Mondegreen ASR error pairs
14
+ size_categories:
15
+ - 1K<n<10K
16
+ ---
17
+
18
+ # Mondegreen ASR error pairs
19
+
20
+ `(ASR hypothesis, gold text)` pairs for Japanese ASR post-correction.
21
+
22
+ This build is **simulated** -- errors come from a phonetic corruption model, not from a real ASR system. It exists so the whole pipeline (gate training, benchmarks, figures, CI) is reproducible without a GPU. Treat every number derived from it as a stated assumption, not a measurement.
23
+
24
+ ## How it was made
25
+
26
+ ```
27
+ synthetic text
28
+ -> phonetic corruption model (mondegreen.simulate)
29
+ -> hypothesis
30
+ ```
31
+
32
+ **No audio was involved in this build.** Errors were generated by perturbing the *reading* of each term with the confusion classes the distance function discounts (voicing, long vowels, geminates, moraic nasal) and re-rendering it the way ASR would -- as katakana, or as a homophone kanji spelling drawn from the bundled reading table. The acoustic condition fields below record which condition each record *would* correspond to, and are carried through for parity with the measured pipeline.
33
+
34
+ To rebuild this dataset with a real TTS -> Whisper round trip:
35
+
36
+ ```bash
37
+ python scripts/harvest_errors.py --mode real --whisper-size small -n 2000
38
+ ```
39
+
40
+ **No LLM judges correctness anywhere in this pipeline.**
41
+
42
+ - provenance: **simulated**
43
+ - pairs: 9000
44
+ - glossary terms used: 12000
45
+ - acoustic conditions: ['close/15.0', 'close/20.0', 'close/None', 'far/10.0', 'far/12.0', 'reverb/5.0']
46
+
47
+ ## Source text and licence
48
+
49
+ | field | value |
50
+ | --- | --- |
51
+ | corpus | `synthetic` |
52
+ | licence | CC0-1.0 |
53
+ | verification | Generated by mondegreen.harvest.SentenceFactory; no third-party text. |
54
+ | url | — |
55
+
56
+ If you add a corpus, add it to `mondegreen.harvest.CORPUS_LICENSES` with a
57
+ verified licence first. The harvester refuses unknown corpora by design.
58
+
59
+ ## Pathology labels
60
+
61
+ | label | 日本語 | how it is produced |
62
+ | --- | --- | --- |
63
+ | `term-phonetic` | 固有名詞の音韻的置換 | glossary term rendered as a homophone or near-homophone |
64
+ | `voicing` | 濁音・清音の取り違え | rendaku / devoicing slip inside a term |
65
+ | `long-vowel` | 長音の脱落・付加 | chouon added or dropped |
66
+ | `geminate` | 促音の脱落・付加 | sokuon added or dropped |
67
+ | `moraic-nasal` | 撥音の脱落 | moraic nasal swallowed, typically in far-field audio |
68
+ | `particle-drop` | 助詞の欠落 | unstressed particle lost |
69
+ | `word-drop` | 語の脱落 | short span deleted entirely |
70
+ | `number-unit` | 数字・単位の誤り | digit or counter substituted |
71
+ | `hallucination` | 定型の幻聴 | canned phrase emitted over silence or noise-only audio |
72
+
73
+ Observed counts in this build:
74
+
75
+ | label | count |
76
+ | --- | --- |
77
+ | `geminate` | 3217 |
78
+ | `hallucination` | 1080 |
79
+ | `long-vowel` | 5688 |
80
+ | `moraic-nasal` | 548 |
81
+ | `number-unit` | 821 |
82
+ | `particle-drop` | 450 |
83
+ | `term-phonetic` | 6093 |
84
+ | `voicing` | 3048 |
85
+ | `word-drop` | 259 |
86
+
87
+ ## Fields
88
+
89
+ | field | meaning |
90
+ | --- | --- |
91
+ | `id` | stable record id |
92
+ | `gold` | the text that was spoken (exact) |
93
+ | `hypothesis` | what the ASR returned |
94
+ | `glossary_terms` | glossary surfaces occurring in `gold` |
95
+ | `error_types` | pathology labels |
96
+ | `speaker`, `speed`, `snr_db`, `room` | acoustic condition |
97
+ | `asr_model` | which ASR produced the hypothesis |
98
+ | `source_corpus`, `source_license` | provenance of the gold text |
99
+ | `split` | train / test (disjoint speakers, sentences and glossaries) |
100
+ | `provenance` | `measured` (real TTS+ASR) or `simulated` |
101
+
102
+ ## Intended use
103
+
104
+ Training and evaluating **post-correction** systems. Not for training ASR models.
105
+
106
+ ## Privacy
107
+
108
+ All names in this dataset are **synthetic**, generated by
109
+ `mondegreen.harvest.GlossaryBuilder`. No real person's voice or name was used, and
110
+ no real meeting audio exists anywhere in this pipeline.