NirbhaySinghNarang2711 commited on
Commit
44dfd81
·
verified ·
1 Parent(s): 4460a7f

Add Kyutai causal-streaming predictions and benchmark results

Browse files
PACKAGE_AUDIT.json CHANGED
@@ -6,29 +6,29 @@
6
  "parquet_rows": 625,
7
  "per_condition": {
8
  "far_field": {
9
- "parquet_sha256": "7f99ef391945e8cf4629cf86f2c06384e9ebd134456f9fe44abb67df0f82f0c8",
10
  "rows": 125
11
  },
12
  "far_field_noise": {
13
- "parquet_sha256": "778b57f3e5d3e9f5e346318d9c28ef4252f41ddf338a26bb6694a925535116a9",
14
  "rows": 125
15
  },
16
  "noise": {
17
- "parquet_sha256": "719a3f4780414248947315894e6b2d8d695b8a2ae17c0ac97afd7b5126f56545",
18
  "rows": 125
19
  },
20
  "obstructed_noise": {
21
- "parquet_sha256": "e6a75899d70b619dc3b10eafe8fe537cce91e55fb99412d2bc33e03130e037db",
22
  "rows": 125
23
  },
24
  "recording_noise": {
25
- "parquet_sha256": "75c3beecd0dd844241e12ac7afa7d11f33ccf1242000abde584b279109d78eca",
26
  "rows": 125
27
  }
28
  },
29
- "predictions": 1250,
30
  "status": "PASS",
31
- "systems": 2,
32
  "unique_audio_hashes": 625,
33
  "unique_scene_ids": 625
34
  }
 
6
  "parquet_rows": 625,
7
  "per_condition": {
8
  "far_field": {
9
+ "parquet_sha256": "cb301cd6306601da8e0c1f28abc42452af024baeeeea9dc679b4d49720c0ab4e",
10
  "rows": 125
11
  },
12
  "far_field_noise": {
13
+ "parquet_sha256": "c9056a2911f9f6fd74ae3151a1cf380432afe6047efe99f75aacae1a7da51d8f",
14
  "rows": 125
15
  },
16
  "noise": {
17
+ "parquet_sha256": "2026c0ee5c4ab5217bee4479b3ccba807a6aa40a903fdb3e3ac74b1e0628bba5",
18
  "rows": 125
19
  },
20
  "obstructed_noise": {
21
+ "parquet_sha256": "b6a00148759d8ca60cd6b2a405bb152c89ac59561f2e13f2d2fa5bfa2f01adff",
22
  "rows": 125
23
  },
24
  "recording_noise": {
25
+ "parquet_sha256": "61477bf329b4bd0ab22da86310e2e2fbb76b67d3599b41790175e8e9bccee1ff",
26
  "rows": 125
27
  }
28
  },
29
+ "predictions": 1875,
30
  "status": "PASS",
31
+ "systems": 3,
32
  "unique_audio_hashes": 625,
33
  "unique_scene_ids": 625
34
  }
README.md CHANGED
@@ -95,21 +95,27 @@ documented in `results/benchmark_summary.json`.
95
  |---|---:|
96
  | A5S | **21.02%** |
97
  | ElevenLabs Scribe v2 Realtime | 23.52% |
 
98
 
99
- | Condition | N | A5S | ElevenLabs |
100
- |---|---:|---:|---:|
101
- | `far_field` | 125 | 6.06% | 5.51% |
102
- | `far_field_noise` | 125 | 32.61% | 33.74% |
103
- | `noise` | 125 | 22.14% | 28.68% |
104
- | `obstructed_noise` | 125 | 24.97% | 29.53% |
105
- | `recording_noise` | 125 | 9.53% | 10.14% |
106
 
107
  A5S used cache-aware greedy streaming at exactly 560 ms, BF16, and batch size 1.
108
  ElevenLabs used Scribe v2 Realtime with forced English, one independent WebSocket
109
  session per conversation, mono PCM16 at 16 kHz, and 100 ms chunks paced in
110
- wall-clock real time.
111
-
112
- Each row contains raw predictions and utterance-level S/D/I counts for both
 
 
 
 
 
113
  systems. Aggregate results live under `results/`.
114
 
115
  ## Loading
@@ -121,6 +127,7 @@ dataset = load_dataset("AirCaps/mega-asr-conversational-overlap")
121
  example = dataset["noise"][0]
122
  print(example["text"])
123
  print(example["a5s_prediction"])
 
124
  ```
125
 
126
  Recent versions of `datasets` may require `torchcodec` for decoded audio. Use
@@ -134,7 +141,7 @@ are needed.
134
  - Pinned upstream revision: `a8a35d3319737190d6fd3d39157b258eaab35980`
135
  - Construction date: 2026-08-24
136
  - Source usage: 1,250 / 1,250, with zero within-condition repetitions
137
- - Final audit: 625 decoded WAVs, 1,250 matched predictions, zero missing or corrupt rows
138
 
139
  Because this is derived from a training corpus rather than a speaker-disjoint
140
  held-out benchmark, it should be treated as a fixed diagnostic suite. Do not
 
95
  |---|---:|
96
  | A5S | **21.02%** |
97
  | ElevenLabs Scribe v2 Realtime | 23.52% |
98
+ | Kyutai STT 1B EN/FR | 57.41% |
99
 
100
+ | Condition | N | A5S | ElevenLabs | Kyutai |
101
+ |---|---:|---:|---:|---:|
102
+ | `far_field` | 125 | 6.06% | 5.51% | 20.70% |
103
+ | `far_field_noise` | 125 | 32.61% | 33.74% | 86.24% |
104
+ | `noise` | 125 | 22.14% | 28.68% | 54.46% |
105
+ | `obstructed_noise` | 125 | 24.97% | 29.53% | 66.22% |
106
+ | `recording_noise` | 125 | 9.53% | 10.14% | 37.54% |
107
 
108
  A5S used cache-aware greedy streaming at exactly 560 ms, BF16, and batch size 1.
109
  ElevenLabs used Scribe v2 Realtime with forced English, one independent WebSocket
110
  session per conversation, mono PCM16 at 16 kHz, and 100 ms chunks paced in
111
+ wall-clock real time. Kyutai used the official causal Mimi-to-LMGen transcript
112
+ path with 80 ms audio frames, a configured 0.5 s text delay, BF16, temperature 0,
113
+ batch size 1, and fresh streaming state for every conversation. The pinned
114
+ PyTorch checkpoint exposes no semantic-VAD extra heads, so no transcript-gating
115
+ VAD was active. Kyutai returned a blank transcript for 24.48% of conversations;
116
+ these count as deletions in WER.
117
+
118
+ Each row contains raw predictions and utterance-level S/D/I counts for all three
119
  systems. Aggregate results live under `results/`.
120
 
121
  ## Loading
 
127
  example = dataset["noise"][0]
128
  print(example["text"])
129
  print(example["a5s_prediction"])
130
+ print(example["kyutai_prediction"])
131
  ```
132
 
133
  Recent versions of `datasets` may require `torchcodec` for decoded audio. Use
 
141
  - Pinned upstream revision: `a8a35d3319737190d6fd3d39157b258eaab35980`
142
  - Construction date: 2026-08-24
143
  - Source usage: 1,250 / 1,250, with zero within-condition repetitions
144
+ - Final audit: 625 decoded WAVs, 1,875 matched predictions, zero missing or corrupt rows
145
 
146
  Because this is derived from a training corpus rather than a speaker-disjoint
147
  held-out benchmark, it should be treated as a fixed diagnostic suite. Do not
SHA256SUMS CHANGED
@@ -1,10 +1,11 @@
1
- 136f72b36299e875d7d5421e7457f89585936b0e200b5ad152ef732ea06136b3 PACKAGE_AUDIT.json
2
- 63134a10b93af58149078252108639e7c45788e6aae2d2863db00b52232a4598 README.md
3
- 7f99ef391945e8cf4629cf86f2c06384e9ebd134456f9fe44abb67df0f82f0c8 data/far_field.parquet
4
- 778b57f3e5d3e9f5e346318d9c28ef4252f41ddf338a26bb6694a925535116a9 data/far_field_noise.parquet
5
- 719a3f4780414248947315894e6b2d8d695b8a2ae17c0ac97afd7b5126f56545 data/noise.parquet
6
- e6a75899d70b619dc3b10eafe8fe537cce91e55fb99412d2bc33e03130e037db data/obstructed_noise.parquet
7
- 75c3beecd0dd844241e12ac7afa7d11f33ccf1242000abde584b279109d78eca data/recording_noise.parquet
8
  e3f369de3b0d598e074c6f33252f8810f1f76239eddd1fd0a25e966394762c3d provenance/CONSTRUCTION.json
9
- 774f5bc5aa98a8f3df517c6c3139bbc8f33bf2722efd026d48dea751ea27ecce results/benchmark_summary.csv
10
- 1015251d9be6acf7b1d1d411e14b99809948c6b159a93fc2d4e56647b0182a7d results/benchmark_summary.json
 
 
1
+ 5f880ca4e67d419fb27bb81796cd1b92d25e214d8183578d186e5e83c4c46f4e PACKAGE_AUDIT.json
2
+ c67a9972de8cf3741bb3abbaec737dbab362e276de5122a3ad541232659f9a9e README.md
3
+ cb301cd6306601da8e0c1f28abc42452af024baeeeea9dc679b4d49720c0ab4e data/far_field.parquet
4
+ c9056a2911f9f6fd74ae3151a1cf380432afe6047efe99f75aacae1a7da51d8f data/far_field_noise.parquet
5
+ 2026c0ee5c4ab5217bee4479b3ccba807a6aa40a903fdb3e3ac74b1e0628bba5 data/noise.parquet
6
+ b6a00148759d8ca60cd6b2a405bb152c89ac59561f2e13f2d2fa5bfa2f01adff data/obstructed_noise.parquet
7
+ 61477bf329b4bd0ab22da86310e2e2fbb76b67d3599b41790175e8e9bccee1ff data/recording_noise.parquet
8
  e3f369de3b0d598e074c6f33252f8810f1f76239eddd1fd0a25e966394762c3d provenance/CONSTRUCTION.json
9
+ e91f7c08a70d50bb9fd97eaa3d34045a2d67f0c7deb0d8e6c766e2198543eff2 provenance/KYUTAI_EVALUATION.json
10
+ 7df9934ac4a8e5bc454e1516e9ee723e3216c800535da8d0fee2ab6f87872c6b results/benchmark_summary.csv
11
+ 94fb5b48c7b4777fa3cd33d91c8e80b9d6ddca48cdd7c46d57adfbee9b998a3b results/benchmark_summary.json
data/far_field.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7f99ef391945e8cf4629cf86f2c06384e9ebd134456f9fe44abb67df0f82f0c8
3
- size 80133930
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb301cd6306601da8e0c1f28abc42452af024baeeeea9dc679b4d49720c0ab4e
3
+ size 80169593
data/far_field_noise.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:778b57f3e5d3e9f5e346318d9c28ef4252f41ddf338a26bb6694a925535116a9
3
- size 120236686
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9056a2911f9f6fd74ae3151a1cf380432afe6047efe99f75aacae1a7da51d8f
3
+ size 120253549
data/noise.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:719a3f4780414248947315894e6b2d8d695b8a2ae17c0ac97afd7b5126f56545
3
- size 88962956
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2026c0ee5c4ab5217bee4479b3ccba807a6aa40a903fdb3e3ac74b1e0628bba5
3
+ size 88993025
data/obstructed_noise.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e6a75899d70b619dc3b10eafe8fe537cce91e55fb99412d2bc33e03130e037db
3
- size 78890811
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a00148759d8ca60cd6b2a405bb152c89ac59561f2e13f2d2fa5bfa2f01adff
3
+ size 78914917
data/recording_noise.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:75c3beecd0dd844241e12ac7afa7d11f33ccf1242000abde584b279109d78eca
3
- size 74693280
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61477bf329b4bd0ab22da86310e2e2fbb76b67d3599b41790175e8e9bccee1ff
3
+ size 74724006
provenance/KYUTAI_EVALUATION.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "evaluation": {
3
+ "audio_hash_mismatches": 0,
4
+ "blank_predictions": 153,
5
+ "bucket_mismatches": 0,
6
+ "conditions": {
7
+ "far_field": 125,
8
+ "far_field_noise": 125,
9
+ "noise": 125,
10
+ "obstructed_noise": 125,
11
+ "recording_noise": 125
12
+ },
13
+ "duration_mismatches": 0,
14
+ "examples": 625,
15
+ "reference_mismatches": 0,
16
+ "runtime_failures": 0
17
+ },
18
+ "inference": {
19
+ "batch_size": 1,
20
+ "causal": true,
21
+ "configured_text_delay_seconds": 0.5,
22
+ "implementation": "official moshi.run_inference Mimi.encode -> LMGen.step loop",
23
+ "model_frame_rate_hz": 12.5,
24
+ "model_input_sample_rate_hz": 24000,
25
+ "right_padding": "official run_inference rule: audio_delay_seconds + 1.0 seconds",
26
+ "semantic_vad": false,
27
+ "semantic_vad_note": "The pinned PyTorch checkpoint exposes zero LM extra heads. The official --vad path only observes extra-head EOT probabilities and does not gate text; this run uses LMGen.step, i.e. the VAD-disabled transcript path.",
28
+ "semantic_vad_observer_requested": false,
29
+ "state_isolation": "Mimi and LMGen streaming states reset before every utterance",
30
+ "temperature_audio": 0.0,
31
+ "temperature_text": 0.0
32
+ },
33
+ "model_files": {
34
+ "config.json": {
35
+ "bytes": 1261,
36
+ "sha256": "5e6aee8007000d844152932184fb7c7112d73cb9a4be562a313b6fa2b89a68f9"
37
+ },
38
+ "mimi-pytorch-e351c8d8@125.safetensors": {
39
+ "bytes": 384644900,
40
+ "sha256": "09b782f0629851a271227fb9d36db65c041790365f11bbe5d3d59369cf863f50"
41
+ },
42
+ "model.safetensors": {
43
+ "bytes": 1978423520,
44
+ "sha256": "8f6e244d44baf63c6fa3587d25a4e8d3627ecbafe177cf34a736e697bb725116"
45
+ },
46
+ "tokenizer_en_fr_audio_8000.model": {
47
+ "bytes": 120378,
48
+ "sha256": "cd87dd5d17169151782ac700280ec057e5d658a9afbe238a048ea5ff318cce69"
49
+ }
50
+ },
51
+ "model_repo": "kyutai/stt-1b-en_fr",
52
+ "model_revision": "1c34c6b4f7e9299bb61985f145052ff131005dde",
53
+ "runtime_versions": {
54
+ "device": "cuda",
55
+ "dtype": "torch.bfloat16",
56
+ "jiwer": "4.0.0",
57
+ "moshi": "0.2.13",
58
+ "python": "3.11.10 (main, Sep 7 2024, 18:35:41) [GCC 11.4.0]",
59
+ "sphn": "0.2.1",
60
+ "torch": "2.9.1+cu128"
61
+ },
62
+ "scoring": {
63
+ "aggregation": "corpus-level WER",
64
+ "normalizer": "Unicode NFKC; lowercase; normalize curly/backtick apostrophes then remove apostrophes; replace other punctuation with spaces; collapse whitespace"
65
+ },
66
+ "source_result_hashes": {
67
+ "FINAL_AUDIT.json": "5c27c00d6091d21c74eaf75f9081adc9a4717337231bc2ee40648b2da069b148",
68
+ "MATCHED_PUBLIC_PREDICTIONS.jsonl": "495b18b5201d0e3c56fae2aa568f6aa6a090191f7c645a73d95287d047e5d24e",
69
+ "PUBLIC_COMPARISON.json": "0c462026bf9304c47557deec9eb3df7fe94f910936c4cd3a2b0f525785ab7f81"
70
+ },
71
+ "status": "PASS",
72
+ "system": "Kyutai STT 1B EN/FR"
73
+ }
results/benchmark_summary.csv CHANGED
@@ -25,3 +25,16 @@ elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,0_to_lt2_db,257,
25
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,2_to_lt4_db,222,1.3242257291666673,11301,8664,1623,1014,223,2860,25.307494911954695,0.9009009009009009,12.162162162162161
26
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,4_to_lt6_db,113,0.7040244618055553,6221,4938,811,472,134,1417,22.77768847452178,0.0,7.964601769911504
27
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,6_to_8_db,33,0.21326578124999998,1893,1511,208,174,16,398,21.024828314844164,0.0,6.0606060606060606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,2_to_lt4_db,222,1.3242257291666673,11301,8664,1623,1014,223,2860,25.307494911954695,0.9009009009009009,12.162162162162161
26
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,4_to_lt6_db,113,0.7040244618055553,6221,4938,811,472,134,1417,22.77768847452178,0.0,7.964601769911504
27
  elevenlabs,ElevenLabs Scribe v2 Realtime,gain_difference_bucket,6_to_8_db,33,0.21326578124999998,1893,1511,208,174,16,398,21.024828314844164,0.0,6.0606060606060606
28
+ kyutai,Kyutai STT 1B EN/FR,overall,overall,625,3.835099461805552,32928,14970,4668,13290,945,18903,57.407069970845484,24.48,0.64
29
+ kyutai,Kyutai STT 1B EN/FR,condition,far_field,125,0.6938356250000002,5608,4656,738,214,209,1161,20.70256776034237,2.4,1.6
30
+ kyutai,Kyutai STT 1B EN/FR,condition,far_field_noise,125,1.0412593402777777,9675,1425,683,7567,94,8344,86.24289405684755,61.6,0.0
31
+ kyutai,Kyutai STT 1B EN/FR,condition,noise,125,0.770268420138889,7135,3409,1060,2666,160,3886,54.46391030133147,18.4,0.8
32
+ kyutai,Kyutai STT 1B EN/FR,condition,obstructed_noise,125,0.6830526388888892,5462,2098,1266,2098,253,3617,66.22116440864153,30.4,0.0
33
+ kyutai,Kyutai STT 1B EN/FR,condition,recording_noise,125,0.6466834375,5048,3382,921,745,229,1895,37.53961965134707,9.6,0.8
34
+ kyutai,Kyutai STT 1B EN/FR,overlap_bin,overlap_50_to_100ms,210,1.262150989583333,10771,4686,1551,4534,319,6404,59.45594652307121,21.904761904761905,0.9523809523809523
35
+ kyutai,Kyutai STT 1B EN/FR,overlap_bin,overlap_gt100_to_200ms,210,1.27174515625,10813,5022,1520,4271,311,6102,56.43207250531767,25.714285714285715,0.0
36
+ kyutai,Kyutai STT 1B EN/FR,overlap_bin,overlap_gt200_to_300ms,205,1.3012033159722218,11344,5262,1597,4485,315,6397,56.391043723554304,25.853658536585368,0.975609756097561
37
+ kyutai,Kyutai STT 1B EN/FR,gain_difference_bucket,0_to_lt2_db,257,1.593583489583332,13513,6216,1869,5428,359,7656,56.65655294901206,24.124513618677042,0.0
38
+ kyutai,Kyutai STT 1B EN/FR,gain_difference_bucket,2_to_lt4_db,222,1.3242257291666673,11301,5183,1800,4318,410,6528,57.76479957525883,23.873873873873872,0.9009009009009009
39
+ kyutai,Kyutai STT 1B EN/FR,gain_difference_bucket,4_to_lt6_db,113,0.7040244618055553,6221,2522,755,2944,122,3821,61.42099340941971,29.20353982300885,1.7699115044247788
40
+ kyutai,Kyutai STT 1B EN/FR,gain_difference_bucket,6_to_8_db,33,0.21326578124999998,1893,1049,244,600,54,898,47.43792921288959,15.151515151515152,0.0
results/benchmark_summary.json CHANGED
@@ -5,7 +5,8 @@
5
  "normalizer": "Unicode NFKC; lowercase; normalize curly/backtick apostrophes then remove apostrophes; replace other punctuation with spaces; collapse whitespace",
6
  "protocols": {
7
  "a5s": "cache-aware greedy streaming, 560 ms chunks/context, BF16, batch 1",
8
- "elevenlabs": "Scribe v2 Realtime; forced English; independent session per scene; mono PCM16 16 kHz; 100 ms chunks paced in wall-clock real time"
 
9
  },
10
  "status": "PASS",
11
  "systems": {
@@ -364,6 +365,237 @@
364
  "wer_pct": 23.517978620019438
365
  },
366
  "system": "ElevenLabs Scribe v2 Realtime"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  }
368
  }
369
  }
 
5
  "normalizer": "Unicode NFKC; lowercase; normalize curly/backtick apostrophes then remove apostrophes; replace other punctuation with spaces; collapse whitespace",
6
  "protocols": {
7
  "a5s": "cache-aware greedy streaming, 560 ms chunks/context, BF16, batch 1",
8
+ "elevenlabs": "Scribe v2 Realtime; forced English; independent session per scene; mono PCM16 16 kHz; 100 ms chunks paced in wall-clock real time",
9
+ "kyutai": "Official causal Mimi -> LMGen path; 80 ms frames; configured 0.5 s text delay; BF16; temperature 0; batch 1; fresh state per conversation; no semantic-VAD gating"
10
  },
11
  "status": "PASS",
12
  "systems": {
 
365
  "wer_pct": 23.517978620019438
366
  },
367
  "system": "ElevenLabs Scribe v2 Realtime"
368
+ },
369
+ "kyutai": {
370
+ "by_condition": {
371
+ "far_field": {
372
+ "audio_hours": 0.6938356250000002,
373
+ "blank_pct": 2.4,
374
+ "compute_rtf": 0.10300705742163713,
375
+ "deletions": 214,
376
+ "errors": 1161,
377
+ "exact_pct": 1.6,
378
+ "examples": 125,
379
+ "hits": 4656,
380
+ "inference_seconds": 257.291877835989,
381
+ "insertions": 209,
382
+ "reference_words": 5608,
383
+ "substitutions": 738,
384
+ "throughput_x_realtime": 9.708072679978772,
385
+ "wer_pct": 20.70256776034237
386
+ },
387
+ "far_field_noise": {
388
+ "audio_hours": 1.0412593402777777,
389
+ "blank_pct": 61.6,
390
+ "compute_rtf": 0.09871145284689975,
391
+ "deletions": 7567,
392
+ "errors": 8344,
393
+ "exact_pct": 0.0,
394
+ "examples": 125,
395
+ "hits": 1425,
396
+ "inference_seconds": 370.02320016920567,
397
+ "insertions": 94,
398
+ "reference_words": 9675,
399
+ "substitutions": 683,
400
+ "throughput_x_realtime": 10.130536742793034,
401
+ "wer_pct": 86.24289405684755
402
+ },
403
+ "noise": {
404
+ "audio_hours": 0.770268420138889,
405
+ "blank_pct": 18.4,
406
+ "compute_rtf": 0.10051511161189904,
407
+ "deletions": 2666,
408
+ "errors": 3886,
409
+ "exact_pct": 0.8,
410
+ "examples": 125,
411
+ "hits": 3409,
412
+ "inference_seconds": 278.7250183969736,
413
+ "insertions": 160,
414
+ "reference_words": 7135,
415
+ "substitutions": 1060,
416
+ "throughput_x_realtime": 9.948752818990249,
417
+ "wer_pct": 54.46391030133147
418
+ },
419
+ "obstructed_noise": {
420
+ "audio_hours": 0.6830526388888892,
421
+ "blank_pct": 30.4,
422
+ "compute_rtf": 0.10129849841796311,
423
+ "deletions": 2098,
424
+ "errors": 3617,
425
+ "exact_pct": 0.0,
426
+ "examples": 125,
427
+ "hits": 2098,
428
+ "inference_seconds": 249.09194397553802,
429
+ "insertions": 253,
430
+ "reference_words": 5462,
431
+ "substitutions": 1266,
432
+ "throughput_x_realtime": 9.871814643035927,
433
+ "wer_pct": 66.22116440864153
434
+ },
435
+ "recording_noise": {
436
+ "audio_hours": 0.6466834375,
437
+ "blank_pct": 9.6,
438
+ "compute_rtf": 0.10166343494678864,
439
+ "deletions": 745,
440
+ "errors": 1895,
441
+ "exact_pct": 0.8,
442
+ "examples": 125,
443
+ "hits": 3382,
444
+ "inference_seconds": 236.67861448600888,
445
+ "insertions": 229,
446
+ "reference_words": 5048,
447
+ "substitutions": 921,
448
+ "throughput_x_realtime": 9.836378246745323,
449
+ "wer_pct": 37.53961965134707
450
+ }
451
+ },
452
+ "by_gain_difference_bucket": {
453
+ "0_to_lt2_db": {
454
+ "audio_hours": 1.593583489583332,
455
+ "blank_pct": 24.124513618677042,
456
+ "compute_rtf": 0.1011517427615704,
457
+ "deletions": 5428,
458
+ "errors": 7656,
459
+ "exact_pct": 0.0,
460
+ "examples": 257,
461
+ "hits": 6216,
462
+ "inference_seconds": 580.2974899467081,
463
+ "insertions": 359,
464
+ "reference_words": 13513,
465
+ "substitutions": 1869,
466
+ "throughput_x_realtime": 9.886137131192566,
467
+ "wer_pct": 56.65655294901206
468
+ },
469
+ "2_to_lt4_db": {
470
+ "audio_hours": 1.3242257291666673,
471
+ "blank_pct": 23.873873873873872,
472
+ "compute_rtf": 0.10070255621896959,
473
+ "deletions": 4318,
474
+ "errors": 6528,
475
+ "exact_pct": 0.9009009009009009,
476
+ "examples": 222,
477
+ "hits": 5183,
478
+ "inference_seconds": 480.0704973768443,
479
+ "insertions": 410,
480
+ "reference_words": 11301,
481
+ "substitutions": 1800,
482
+ "throughput_x_realtime": 9.93023451982272,
483
+ "wer_pct": 57.76479957525883
484
+ },
485
+ "4_to_lt6_db": {
486
+ "audio_hours": 0.7040244618055553,
487
+ "blank_pct": 29.20353982300885,
488
+ "compute_rtf": 0.10044629289196041,
489
+ "deletions": 2944,
490
+ "errors": 3821,
491
+ "exact_pct": 1.7699115044247788,
492
+ "examples": 113,
493
+ "hits": 2522,
494
+ "inference_seconds": 254.57993025705218,
495
+ "insertions": 122,
496
+ "reference_words": 6221,
497
+ "substitutions": 755,
498
+ "throughput_x_realtime": 9.955569003184573,
499
+ "wer_pct": 61.42099340941971
500
+ },
501
+ "6_to_8_db": {
502
+ "audio_hours": 0.21326578124999998,
503
+ "blank_pct": 15.151515151515152,
504
+ "compute_rtf": 0.10011339011480361,
505
+ "deletions": 600,
506
+ "errors": 898,
507
+ "exact_pct": 0.0,
508
+ "examples": 33,
509
+ "hits": 1049,
510
+ "inference_seconds": 76.86273728311062,
511
+ "insertions": 54,
512
+ "reference_words": 1893,
513
+ "substitutions": 244,
514
+ "throughput_x_realtime": 9.988673831275358,
515
+ "wer_pct": 47.43792921288959
516
+ }
517
+ },
518
+ "by_overlap_bin": {
519
+ "overlap_50_to_100ms": {
520
+ "audio_hours": 1.262150989583333,
521
+ "blank_pct": 21.904761904761905,
522
+ "compute_rtf": 0.10064477627635869,
523
+ "deletions": 4534,
524
+ "errors": 6404,
525
+ "exact_pct": 0.9523809523809523,
526
+ "examples": 210,
527
+ "hits": 4686,
528
+ "inference_seconds": 457.3040543049574,
529
+ "insertions": 319,
530
+ "reference_words": 10771,
531
+ "substitutions": 1551,
532
+ "throughput_x_realtime": 9.935935445413659,
533
+ "wer_pct": 59.45594652307121
534
+ },
535
+ "overlap_gt100_to_200ms": {
536
+ "audio_hours": 1.27174515625,
537
+ "blank_pct": 25.714285714285715,
538
+ "compute_rtf": 0.10153194209642508,
539
+ "deletions": 4271,
540
+ "errors": 6102,
541
+ "exact_pct": 0.0,
542
+ "examples": 210,
543
+ "hits": 5022,
544
+ "inference_seconds": 464.84192003682256,
545
+ "insertions": 311,
546
+ "reference_words": 10813,
547
+ "substitutions": 1520,
548
+ "throughput_x_realtime": 9.849117227072227,
549
+ "wer_pct": 56.43207250531767
550
+ },
551
+ "overlap_gt200_to_300ms": {
552
+ "audio_hours": 1.3012033159722218,
553
+ "blank_pct": 25.853658536585368,
554
+ "compute_rtf": 0.10026289485637789,
555
+ "deletions": 4485,
556
+ "errors": 6397,
557
+ "exact_pct": 0.975609756097561,
558
+ "examples": 205,
559
+ "hits": 5262,
560
+ "inference_seconds": 469.6646805219352,
561
+ "insertions": 315,
562
+ "reference_words": 11344,
563
+ "substitutions": 1597,
564
+ "throughput_x_realtime": 9.973779446847763,
565
+ "wer_pct": 56.391043723554304
566
+ }
567
+ },
568
+ "model_repo": "kyutai/stt-1b-en_fr",
569
+ "model_revision": "1c34c6b4f7e9299bb61985f145052ff131005dde",
570
+ "overall": {
571
+ "audio_hours": 3.835099461805552,
572
+ "blank_pct": 24.48,
573
+ "compute_rtf": 0.10080939872507501,
574
+ "deletions": 13290,
575
+ "errors": 18903,
576
+ "exact_pct": 0.64,
577
+ "examples": 625,
578
+ "hits": 14970,
579
+ "inference_seconds": 1391.8106548637152,
580
+ "insertions": 945,
581
+ "reference_words": 32928,
582
+ "substitutions": 4668,
583
+ "throughput_x_realtime": 9.919709993779213,
584
+ "wer_pct": 57.407069970845484
585
+ },
586
+ "streaming": {
587
+ "algorithmic_text_delay_seconds": 0.5,
588
+ "audio_delivery": "one complete 80 ms Mimi frame at a time",
589
+ "batch_size": 1,
590
+ "genuinely_causal": true,
591
+ "model_config_causal": true,
592
+ "precision": "BF16",
593
+ "semantic_vad": false,
594
+ "semantic_vad_available_in_checkpoint": false,
595
+ "semantic_vad_effect_on_text": "none; official observer path does not gate transcript tokens",
596
+ "semantic_vad_observer_requested": false
597
+ },
598
+ "system": "Kyutai STT 1B EN/FR"
599
  }
600
  }
601
  }