DuoNeural commited on
Commit
6c4b628
·
verified ·
1 Parent(s): f209392

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +130 -0
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - duoneural
5
+ - safety-geometry
6
+ - native-refusal
7
+ - research
8
+ - from-scratch
9
+ ---
10
+
11
+ # DuoNeural Native Refusal 0PCT (~50M)
12
+
13
+ Part of the **Native Refusal Geometry** experiment series.
14
+ DuoNeural 2026-06-07 | Archon, Jesse Caldwell, Aura
15
+
16
+ ## What this is
17
+
18
+ A ~50M parameter GPT-style language model trained **from scratch** with
19
+ **0% refusal data** mixed into the pretraining corpus.
20
+
21
+ This is a research model investigating whether native refusal training
22
+ (pretraining data mixture) produces the same safety geometry signature as
23
+ RLHF-aligned models — specifically the three-zone crystallization arc
24
+ documented in DuoNeural P36.
25
+
26
+ ## Experiment series
27
+
28
+ | Model | Refusal fraction | HF repo |
29
+ |-------|-----------------|---------|
30
+ | 0pct | 0% (baseline) | DuoNeural/native-refusal-0pct-50m |
31
+ | 10pct | 10% | DuoNeural/native-refusal-10pct-50m |
32
+ | 25pct | 25% | DuoNeural/native-refusal-25pct-50m |
33
+ | 50pct | 50% | DuoNeural/native-refusal-50pct-50m |
34
+
35
+ All 4 models use identical architecture and initialization (seed=42).
36
+ The only variable is refusal data fraction.
37
+
38
+ ## Architecture
39
+
40
+ - Standard GPT: d_model=384, 16 layers, 8 heads, SwiGLU FFN
41
+ - ~50M parameters, tied embeddings
42
+ - Trained on FineWeb-Edu + synthetic refusal pairs
43
+ - AdamW optimizer, cosine LR decay
44
+ - 300M tokens total
45
+
46
+ ## Geometry results
47
+
48
+ ```json
49
+ {
50
+ "probe_layers": [
51
+ 1,
52
+ 2,
53
+ 3,
54
+ 4,
55
+ 5,
56
+ 6,
57
+ 7,
58
+ 8,
59
+ 9,
60
+ 10,
61
+ 11,
62
+ 12,
63
+ 13,
64
+ 14,
65
+ 15,
66
+ 16
67
+ ],
68
+ "angles_by_layer": {
69
+ "1": {
70
+ "refusal|harm_awareness": 10.46,
71
+ "refusal|self_identity": 7.74,
72
+ "refusal|ethics": 9.07,
73
+ "refusal|benign_general": 9.08,
74
+ "harm_awareness|self_identity": 10.74,
75
+ "harm_awareness|ethics": 9.54,
76
+ "harm_awareness|benign_general": 10.45,
77
+ "self_identity|ethics": 8.53,
78
+ "self_identity|benign_general": 9.49,
79
+ "ethics|benign_general": 9.95
80
+ },
81
+ "2": {
82
+ "refusal|harm_awareness": 8.5,
83
+ "refusal|self_identity": 7.5,
84
+ "refusal|ethics": 8.18,
85
+ "refusal|benign_general": 9.23,
86
+ "harm_awareness|self_identity": 9.29,
87
+ "harm_awareness|ethics": 7.39,
88
+ "harm_awareness|benign_general": 9.86,
89
+ "self_identity|ethics": 7.62,
90
+ "self_identity|benign_general": 8.55,
91
+ "ethics|benign_general": 8.75
92
+ },
93
+ "3": {
94
+ "refusal|harm_awareness": 8.66,
95
+ "refusal|self_identity": 6.86,
96
+ "refusal|ethics": 8.58,
97
+ "refusal|benign_general": 9.27,
98
+ "harm_awareness|self_identity": 8.66,
99
+ "harm_awareness|ethics": 6.53,
100
+ "harm_awareness|benign_general": 9.77,
101
+ "self_identity|ethics": 7.39,
102
+ "self_identity|benign_general": 8.43,
103
+ "ethics|benign_general": 8.38
104
+ },
105
+ "4": {
106
+ "refusal|harm_awareness": 10.65,
107
+ "refusal|self_identity": 7.43,
108
+ "refusal|ethics": 10.0,
109
+ "refusal|benign_general": 11.39,
110
+ "harm_awareness|self_identity": 10.56,
111
+ "harm_awareness|ethics": 7.67,
112
+ "harm_awareness|benign_general": 11.19,
113
+ "self_identity|ethics": 8.96,
114
+ "self_identity|benign_general": 10.2,
115
+ "ethics|benign_general": 9.49
116
+ },
117
+ "5": {
118
+ "refusal|harm_awareness": 12.59,
119
+ "refusal|self_identity": 9.11,
120
+ "refusal|ethics": 11.68,
121
+ "refusal|benign_general": 14.05,
122
+ "harm_awareness|self_identity": 11.87,
123
+ "harm_a
124
+ ```
125
+
126
+ ## Connected papers
127
+
128
+ - DuoNeural P34: Reasoning Channel Bypass (two-loci model)
129
+ - DuoNeural P35: DHP Scope Constraints (GBSP)
130
+ - DuoNeural P36: Scale-Dependent Safety Geometry