iamPi commited on
Commit
861c814
·
verified ·
1 Parent(s): 1e78179

Document the cleaning pass.

Browse files
Files changed (1) hide show
  1. README.md +63 -39
README.md CHANGED
@@ -1,41 +1,65 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: prompt
5
- dtype: string
6
- - name: completion
7
- dtype: string
8
- - name: turn_id
9
- dtype: string
10
- - name: traj_id
11
- dtype: string
12
- - name: source
13
- dtype: string
14
- - name: language
15
- dtype: string
16
- - name: phase
17
- dtype: string
18
- - name: stratum
19
- dtype: string
20
- - name: n_prefix_chars
21
- dtype: int64
22
- - name: n_prefix_tokens
23
- dtype: int64
24
- - name: teacher_lift
25
- dtype: float64
26
- - name: modal_share
27
- dtype: float64
28
- - name: n_pool_refs
29
- dtype: int64
30
- splits:
31
- - name: train
32
- num_bytes: 520544302
33
- num_examples: 17655
34
- download_size: 143902230
35
- dataset_size: 520544302
36
- configs:
37
- - config_name: default
38
- data_files:
39
- - split: train
40
- path: data/train-*
41
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ task_categories: [text-generation]
4
+ tags: [bittensor, sn120, affine, sft]
5
+ size_categories: [10K<n<100K]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
+
8
+ # verdigris-d2d8b9d2
9
+
10
+ Cleaned SFT corpus for Bittensor **SN120 (Affine)**, Reason v4
11
+ (`weight_version_key=7`). 17,655 rows, TRL prompt-completion format.
12
+
13
+ Format is exactly `</think>
14
+ THOUGHT: {z}
15
+
16
+ {y}` on every row.
17
+
18
+ ## How it was cleaned
19
+
20
+ Derived from [`iamPi/tessera-77d11909`](https://huggingface.co/datasets/iamPi/tessera-77d11909).
21
+ Prompts and actions are byte-identical to the source; only the thought
22
+ channel changed, and 483 rows (2.66%) were removed.
23
+
24
+ ### Repaired in place (40.08% of rows had at least one defect)
25
+
26
+ | defect | rows |
27
+ |---|---|
28
+ | stray `<think>` / `</think>` / `<thinking>` / `</thinking>` in the thought | 7,124 |
29
+ | corrupted THOUGHT label (`THO`, `THOTH:`, `THOFTWARE:`, `THOTHought:`, `THOURLY Thought:`, `THOproperly` …) | 218 |
30
+ | duplicated leading `THOUGHT:` / `THOUGHT` | 188 |
31
+ | a second THOUGHT label mid-thought | 72 |
32
+ | in-thought ` ```bash ` fence retagged to ` ```sh ` | 114 |
33
+
34
+ The retag matters: the validator's `BASH_RE` matches only ` ```bash `, and
35
+ `split_rollout` takes the **last** match as the action. A thought that quotes
36
+ a bash fence could therefore be mistaken for the command whenever a model's
37
+ real fence came out malformed.
38
+
39
+ ### Removed (483 rows)
40
+
41
+ | reason | rows |
42
+ |---|---|
43
+ | thought shorter than the 80-char crown floor | 444 |
44
+ | completion longer than the 1,792-token rollout budget | 34 |
45
+ | harness output (`<returncode>` / `<output>`) leaked into the thought | 5 |
46
+
47
+ Those last five were collapsed multi-turn transcripts: the "thought"
48
+ contained the result of a command that had not been run yet, which would
49
+ train the model to hallucinate observations.
50
+
51
+ Two-channel thoughts — latent analysis followed by a visible summary — were
52
+ **kept**. That is the contract's own shape: `split_rollout` joins the latent
53
+ and visible halves on purpose, and 57 of the 61 such rows carry genuinely
54
+ distinct text in each half.
55
+
56
+ ## Guarantees
57
+
58
+ Every row was checked after rewriting: it round-trips through the validator's
59
+ own `split_rollout`, is byte-identical to the `force_text()` rendering, has no
60
+ think tag / THOUGHT label / bash fence / harness tag in its thought, clears
61
+ the 80-char floor, and fits the rollout budget.
62
+
63
+ ## Variants
64
+
65
+ A cue-appended build with an identical row set exists for A/B testing.