iamPi commited on
Commit
f97b79b
·
verified ·
1 Parent(s): 11cd450

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -39
README.md CHANGED
@@ -1,41 +1,37 @@
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: 545136361
33
- num_examples: 18138
34
- download_size: 150886734
35
- dataset_size: 545136361
36
- configs:
37
- - config_name: default
38
- data_files:
39
- - split: train
40
- path: data/train-*
41
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ tags: [sft, affine, sn120, cue-ablation]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  ---
5
+
6
+ # cartoon-6a1f44a7
7
+
8
+ `iamPi/tessera-77d11909` with a fixed cue appended to the end of every **thought**.
9
+
10
+ The SFT completion is `</think>\nTHOUGHT: {z}\n\n{y}`; only `z` enters
11
+ Reason (`a_i = lpC(y_i|z_A) - lpC(y_i|empty)`), so the cue is placed at the end
12
+ of `z`, before the blank line that introduces the action.
13
+
14
+ Cue (102 chars):
15
+
16
+ ```
17
+
18
+
19
+ The analysis is complete. Output the next bash command only, with no explanation. Next bash command:
20
+ ```
21
+
22
+ Rows: 18138. Every row was verified to round-trip through the validator's
23
+ own `split_rollout` both before and after the rewrite.
24
+
25
+ ## Provenance of the cue
26
+
27
+ Measured on a 300-turn held-out slice against the contract teacher
28
+ (`zai-org/GLM-4.5-Air-FP8`), appending this cue to an SFT checkpoint's thoughts
29
+ moved mean Reason 0.00660 -> 0.01372 (+0.00713, SE 0.00178, z +3.99). It held
30
+ under a fresh teacher-reference draw (+0.00051, against -0.00088 for a
31
+ fixed-policy king control), so it is not an artifact of one reference sample.
32
+
33
+ Caveats worth carrying: ~85% of the gain sits in ~7% of turns (the tau=0.03
34
+ log-mean-exp tail), the median per-turn effect is near zero, and the B-gate
35
+ pass rate fell 0.527 -> 0.493 (floor 0.30). Training a model to *emit* the cue
36
+ is not the same intervention as appending it post-hoc, so +0.00713 is an upper
37
+ bound on what transfers.