CK0607 commited on
Commit
d1e91f3
·
verified ·
1 Parent(s): a88c468

Round 8 gap-fill artifact: ROUND8_REPORT.md

Browse files
Files changed (1) hide show
  1. ROUND8_REPORT.md +54 -0
ROUND8_REPORT.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Round 8 — Fill R6 Gaps
2
+
3
+ R8 fills three gaps R6 left open: K-sweep at N=24, per-tensor and Procrustes methods, and a per-task breakdown.
4
+
5
+ ## 1A. K-sweep at N=24
6
+
7
+ | K | aggregate gap_recovered ± std |
8
+ |---:|---:|
9
+ | 2 | 0.032 ± 0.251 |
10
+ | 4 | 0.069 ± 0.210 |
11
+ | 6 | 0.083 ± 0.136 |
12
+ | 8 | 0.129 ± 0.156 |
13
+ | 12 | 0.131 ± 0.118 |
14
+ | 16 | 0.129 ± 0.097 |
15
+ | 20 | 0.130 ± 0.089 |
16
+ | 24 | 0.126 ± 0.089 |
17
+
18
+ No K beats R6 global_ridge at N=24 (0.135); K=12 is best among Top-K rows at 0.131.
19
+
20
+ ## 1B. Per-tensor methods
21
+
22
+ | method | N=12 | N=16 | N=24 |
23
+ |---|---:|---:|---:|
24
+ | mean | 0.077 ± 0.071 | 0.077 ± 0.071 | 0.083 ± 0.072 |
25
+ | global_ridge | 0.126 ± 0.128 | 0.137 ± 0.126 | 0.135 ± 0.104 |
26
+ | topk8_global_ridge | 0.117 ± 0.109 | 0.124 ± 0.101 | 0.121 ± 0.124 |
27
+ | pertensor_ridge | 0.115 ± 0.109 | 0.121 ± 0.093 | 0.126 ± 0.109 |
28
+ | procrustes | 0.105 ± 0.082 | 0.104 ± 0.086 | 0.100 ± 0.074 |
29
+ | pertensor_pca | 0.100 ± 0.076 | 0.100 ± 0.080 | 0.114 ± 0.103 |
30
+
31
+ ## 1C. Per-task paper table
32
+
33
+ | Domain | Task | base_Y | mean_N16 | best_R6_N16 | best_R8_new_N16 | best_learned_N16 | oracle | gap_recovered | winner |
34
+ |---|---|---|---|---|---|---|---|---|---|
35
+ | math | gsm_hard | 0.063 | 0.066±0.005 | 0.066±0.005 (mean) | 0.070±0.007 (pertensor_pca) | 0.070±0.007 (pertensor_pca) | 0.150 | 0.077±0.077 | R8:pertensor_pca |
36
+ | math | gsm8k_test_500 | 0.080 | 0.102±0.002 | 0.102±0.002 (mean) | 0.106±0.002 (pertensor_pca) | 0.106±0.002 (pertensor_pca) | 0.293 | 0.120±0.009 | R8:pertensor_pca |
37
+ | code | mbpp_test_held | 0.230 | 0.240±0.000 | 0.257±0.006 (global_ridge) | 0.250±0.000 (pertensor_ridge) | 0.257±0.006 (global_ridge) | 0.320 | 0.296±0.064 | R6:global_ridge |
38
+ | code | mbpp_plus | 0.217 | 0.212±0.002 | 0.270±0.003 (global_ridge) | 0.266±0.002 (pertensor_ridge) | 0.270±0.003 (global_ridge) | 0.450 | 0.229±0.014 | R6:global_ridge |
39
+ | science | openbookqa_test | 0.710 | 0.754±0.002 | 0.754±0.002 (mean) | 0.756±0.019 (pertensor_pca) | 0.756±0.019 (pertensor_pca) | 0.983 | 0.167±0.070 | R8:pertensor_pca |
40
+
41
+
42
+ ## Headline
43
+
44
+ Best aggregate (N, method) cell across R6 ∪ R8: R6 N=16 method=global_ridge gap_recovered=0.137 ± 0.126.
45
+ Best individual task/seed cell: R6 task=mbpp_test_held N=4 seed=1 method=global_ridge gap_recovered=0.556 acc=0.280.
46
+ Per-task winners over all evaluated R6 ∪ R8 cells: gsm_hard: R6:topk8_global_ridge N=8 seed=0; gsm8k_test_500: R6:mean N=12 seed=1; mbpp_test_held: R6:global_ridge N=4 seed=1; mbpp_plus: R6:topk8_global_ridge N=24 seed=0; openbookqa_test: R8:pertensor_pca N=12 seed=2.
47
+
48
+ ## Honest failure modes
49
+
50
+ - No surrogate was used: every R8 accuracy comes from the same `model.generate(do_sample=False, num_beams=1)` path as R6.
51
+ - Degenerate cells (gap_recovered ≤ -0.25): gsm_hard:topk2_global_ridge:N24:seed0=-0.31
52
+ - Cross-domain/locality failures at K<5: none on aggregate, though individual tasks vary.
53
+ - Seed instability (std > 0.15): none for 1B aggregate method×N cells.
54
+ - Code-task evaluation remains the R4/R6 cheap string/span proxy rather than sandboxed unit tests.