johnbean393 commited on
Commit
04aa486
·
verified ·
1 Parent(s): 923bb36

Describe evaluation content and distribution

Browse files
Files changed (1) hide show
  1. README.md +45 -19
README.md CHANGED
@@ -23,27 +23,57 @@ configs:
23
 
24
  # Fluid 2 — dictation cleanup eval
25
 
26
- This repository is the compact, text-only copy of the exact **7,161-row**
27
- development partition used by the Fluid 2 Qwen3.5 0.8B training run. It is
28
- intended for reproducible comparison of Fluid 2 checkpoints without fetching
29
- or decoding the parent corpus's large audio payloads.
30
 
31
  | Split | Rows | Documents | Audio |
32
  | --- | ---: | ---: | --- |
33
  | `eval` | 7,161 | 2,718 | Not included |
34
 
35
- The rows are the original deterministic document-grouped 2% assignment from
36
- [`johnbean393/fluid-2-sft-asr`](https://huggingface.co/datasets/johnbean393/fluid-2-sft-asr).
37
- The split algorithm is SHA-256 over `document_id` with seed `20260813`; no
38
- document overlaps the parent dataset's train or test partitions. Exact file,
39
- row-order, and order-independent membership hashes are recorded in
40
- [`split_manifest.json`](split_manifest.json).
41
 
42
- > This is a development/evaluation set, not the final blind test set. It is
43
- > evaluated 20 times during each Fluid 2 training run, so its metrics are useful
44
- > for model selection and like-for-like comparisons but should not be presented
45
- > as an unbiased final test result. The separate 7,152-row `test` split in the
46
- > parent dataset remains untouched.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
  ## Schema and loading
49
 
@@ -104,10 +134,6 @@ completion-token limit are likewise reported separately and excluded from those
104
  text-quality scores. Throughput and inference-failure counts still cover the full
105
  7,161-request census.
106
 
107
- The corpus combines sources with different upstream terms. The parent dataset
108
- card documents provenance and license labels; this repository does not replace
109
- those terms with a blanket license.
110
-
111
  <!-- FLUID2_EVAL_RESULTS_START -->
112
  ## Published model results
113
 
 
23
 
24
  # Fluid 2 — dictation cleanup eval
25
 
26
+ This repository contains **7,161 text-only voice-dictation cleanup evaluation
27
+ rows** for like-for-like model comparison. No audio is included or fetched.
 
 
28
 
29
  | Split | Rows | Documents | Audio |
30
  | --- | ---: | ---: | --- |
31
  | `eval` | 7,161 | 2,718 | Not included |
32
 
33
+ ## What this benchmark tests
 
 
 
 
 
34
 
35
+ The benchmark measures whether a model can turn noisy voice dictation into the
36
+ intended written text without answering it or adding content. The rows cover:
37
+
38
+ - local ASR, spelling, capitalization, punctuation, and grammar repair;
39
+ - filler removal, abandoned starts, cancellations, and correction chains;
40
+ - spoken punctuation plus line, paragraph, and list formatting;
41
+ - short notes and questions through long, multi-paragraph passages; and
42
+ - dictation with no surrounding context, one-sided context, or both previous
43
+ and following context fields.
44
+
45
+ The 121 empty-target rows represent fully cancelled dictation and test whether
46
+ the model stops without emitting cleaned text.
47
+
48
+ ## Measured content distribution
49
+
50
+ The following counts are computed over all 7,161 rows. Target-length counts
51
+ include the 121 empty targets.
52
+
53
+ | Clean-target length | Rows | Share |
54
+ | --- | ---: | ---: |
55
+ | Empty | 121 | 1.69% |
56
+ | 1–50 characters | 3,198 | 44.66% |
57
+ | 51–150 characters | 2,601 | 36.32% |
58
+ | 151–500 characters | 1,123 | 15.68% |
59
+ | 501+ characters | 118 | 1.65% |
60
+
61
+ | Available context | Rows | Share |
62
+ | --- | ---: | ---: |
63
+ | Neither side | 2,069 | 28.89% |
64
+ | Previous only | 2,665 | 37.22% |
65
+ | Following only | 655 | 9.15% |
66
+ | Previous and following | 1,772 | 24.75% |
67
+
68
+ The median ASR input is 14 words (95th percentile: 53; maximum: 596). Among
69
+ non-empty targets, the median is 11 words (95th percentile: 44; maximum: 427).
70
+ Of the 7,040 non-empty targets, 6,764 (96.08%) differ exactly from their ASR
71
+ input; 5,068 are shorter, 1,389 are longer, and 583 have the same character
72
+ length while still potentially differing in content.
73
+
74
+ Formatting behaviors are materially represented and the categories overlap:
75
+ 1,090 targets contain a line break, 562 contain a blank-line paragraph break,
76
+ 203 contain a Markdown-style list item, and 423 end in a question mark.
77
 
78
  ## Schema and loading
79
 
 
134
  text-quality scores. Throughput and inference-failure counts still cover the full
135
  7,161-request census.
136
 
 
 
 
 
137
  <!-- FLUID2_EVAL_RESULTS_START -->
138
  ## Published model results
139