juiceb0xc0de commited on
Commit
637e90f
·
verified ·
1 Parent(s): 3eca5fb

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ model: WeiboAI/VibeThinker-1.5B
3
+ atlas_type: activation census + Sub-Zero brain atlas
4
+ corpus: 9,523 diverse prompts
5
+ layers: 28
6
+ sacred_layers: 18-27
7
+ ---
8
+
9
+ # VibeThinker-1.5B Brain Atlas
10
+
11
+ This is an internal-mechanics atlas for the 1.5B parameter VibeThinker model. The goal was not to benchmark end-task accuracy, but to map what the network is actually doing with its parameters: where it computes, where it stores behaviorally relevant structure, and which late-layer directions are safe to touch.
12
+
13
+ ## What was run
14
+
15
+ - **Activation census** over 9,523 prompts spanning compliance, reasoning, code, math, multilingual, and refusal-style questions.
16
+ - **Per-layer feature taxonomy** for `mlp`, `gate`, `up`, and attention heads.
17
+ - **OV-circuit spectral analysis** per head (`W_V @ W_O`).
18
+ - **Sub-Zero surgery pass** on every layer, with a capability fence across `code`, `math`, `reasoning`, `factual`, and `multilingual` domains.
19
+ - Pipeline was run on a CPU-only environment.
20
+
21
+ ## Key geometry
22
+
23
+ | Property | Value |
24
+ |---|---|
25
+ | Layers | 28 |
26
+ | d_model | 1536 |
27
+ | d_mlp | 8960 |
28
+ | Attention heads | 12 |
29
+ | KV heads | 2 |
30
+ | Head dim | 128 |
31
+ | Sacred (deep Sub-Zero) layers | 18–27 |
32
+
33
+ ## What the numbers suggest
34
+
35
+ ### The model is not a lookup table
36
+
37
+ OV-circuit spectral concentration averages **0.049**, with effective rank around **55**. That is a distributed signature, not a sparse “copy-paste” attention pattern. Attention heads appear to be doing weighted computation across many directions, not memorizing specific token-to-token jumps.
38
+
39
+ ### Feature activation is broad
40
+
41
+ The feature taxonomy is dominated by `partial_shared` and `broadly_shared` classes, with a smaller `non_activated` tail and very few `all_shared` features. Most dimensions responded to many prompts rather than one hyper-specific trigger.
42
+
43
+ ### Late layers are load-bearing
44
+
45
+ Sub-Zero finds structured singular-value subspace only in layers 18–27, which is **36% of the network depth**. The first half of the model looks like wide preprocessing; the second half does the structured transformation.
46
+
47
+ ### Surgical fragility is the main caveat
48
+
49
+ The capability fence keeps about **74.5%** of tested axes, but the rejected ones hit hard:
50
+
51
+ - Layer 18 `up_proj` axis 0 does **0.81** damage to code generation.
52
+ - Layer 18 `up_proj` axis 0 also scores the highest math, reasoning, and multilingual damage.
53
+ - Several `down_proj` and `gate_proj` axes in the early sacred layers fail the fence.
54
+
55
+ Interpretation: the 1.5B late-layer subspace is doing a lot of work per direction. It has less redundancy than the larger variant, so removing a top singular value tends to break more than one capability at once.
56
+
57
+ ### Classifier stability dips in the middle
58
+
59
+ Sub-Zero classifier accuracy drops to **0.75–0.83** around layers 13–17, then recovers in the late sacred layers. That mid-network region is messier or more entangled than the clean late-layer representation.
60
+
61
+ ## Bottom line
62
+
63
+ VibeThinker-1.5B behaves like a compact reasoning model: distributed attention, broad-feature MLPs, and a deep-but-narrow sacred region where a small number of directions carry most of the task load. It is interpretable, but not easy to edit safely because its late layers are not highly redundant.