MaxChess commited on
Commit
045ef73
·
verified ·
1 Parent(s): a2c0622

Initialize private AR card

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-7B-Instruct
3
+ datasets:
4
+ - MaxChess/nla-affect-10k
5
+ library_name: transformers
6
+ license: apache-2.0
7
+ tags:
8
+ - natural-language-autoencoder
9
+ - activation-reconstructor
10
+ - interpretability
11
+ - affect
12
+ ---
13
+
14
+ # Qwen2.5-7B NLA Affect AR
15
+
16
+ Experimental activation reconstructor (AR): explanation text to a 3,584-dimensional
17
+ Qwen2.5-7B-Instruct layer-20 activation direction. The backbone is truncated to 21
18
+ transformer blocks and uses a separately saved `value_head.safetensors`.
19
+
20
+ ## Evaluation on 200 AR-held-out teacher explanations
21
+
22
+ - Directional FVE: 0.34277.
23
+ - Bootstrap 95% CI: [0.30129, 0.37560].
24
+ - Mean cosine similarity: 0.76460.
25
+ - Shuffled FVE: -0.77740.
26
+
27
+ Targets and predictions are independently L2-normalized. FVE is
28
+ `1 - mean(||h-h_hat||^2) / mean(||h-mean(h)||^2)` on normalized directions.
29
+
30
+ ## Training
31
+
32
+ - 5,000 examples, one epoch, 209 optimizer steps.
33
+ - Direction-only normalized MSE, scale `sqrt(3584)`.
34
+ - Effective global batch: 24 on three V100-32GB GPUs.
35
+ - PyTorch SDPA.
36
+
37
+ This AR score measures reconstruction from teacher explanations. The current full
38
+ AV -> AR cycle is substantially weaker (FVE 0.03765), indicating that AV is the main
39
+ bottleneck. See `MaxChess/nla-affect-10k` for exact splits and source code.