Compactbot commited on
Commit
41f5d28
·
verified ·
1 Parent(s): 0bc9f03

Machine-readable findings: correlations + per-model summary + caveats

Browse files
Files changed (1) hide show
  1. arch_findings.json +125 -0
arch_findings.json ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "n_models": 4,
3
+ "n_with_macro": 4,
4
+ "correlations": {
5
+ "total_params": {
6
+ "r": -0.13171951916328523,
7
+ "n": 4
8
+ },
9
+ "n_layers": {
10
+ "r": -0.5375124456001662,
11
+ "n": 4
12
+ },
13
+ "d_model": {
14
+ "r": 0.5671372674429019,
15
+ "n": 4
16
+ },
17
+ "n_heads": {
18
+ "r": 0.5671372674429019,
19
+ "n": 4
20
+ },
21
+ "ffn_dim": {
22
+ "r": 0.9208998623145593,
23
+ "n": 3
24
+ },
25
+ "vocab_size": {
26
+ "r": 0.3646043405335206,
27
+ "n": 4
28
+ },
29
+ "max_ctx": {
30
+ "r": 0.1538621267359702,
31
+ "n": 4
32
+ }
33
+ },
34
+ "correlations_ranked": [
35
+ [
36
+ "ffn_dim",
37
+ 0.9208998623145593,
38
+ 3
39
+ ],
40
+ [
41
+ "d_model",
42
+ 0.5671372674429019,
43
+ 4
44
+ ],
45
+ [
46
+ "n_heads",
47
+ 0.5671372674429019,
48
+ 4
49
+ ],
50
+ [
51
+ "n_layers",
52
+ -0.5375124456001662,
53
+ 4
54
+ ],
55
+ [
56
+ "vocab_size",
57
+ 0.3646043405335206,
58
+ 4
59
+ ],
60
+ [
61
+ "max_ctx",
62
+ 0.1538621267359702,
63
+ 4
64
+ ],
65
+ [
66
+ "total_params",
67
+ -0.13171951916328523,
68
+ 4
69
+ ]
70
+ ],
71
+ "best_macro_model": {
72
+ "repo_id": "exnivo/tinybrain-100m-base",
73
+ "macro": 0.5120183232855188,
74
+ "arch": {
75
+ "total_params": 103385856,
76
+ "n_layers": 12,
77
+ "d_model": 768,
78
+ "n_heads": 12,
79
+ "ffn_dim": 2048,
80
+ "vocab_size": 24000,
81
+ "max_ctx": 2048
82
+ }
83
+ },
84
+ "models": [
85
+ {
86
+ "repo_id": "exnivo/tinybrain-100m-base",
87
+ "macro": 0.5120183232855188,
88
+ "total_params": 103385856,
89
+ "model_type": "llama",
90
+ "n_layers": 12,
91
+ "d_model": 768
92
+ },
93
+ {
94
+ "repo_id": "aksern/nexi-g1",
95
+ "macro": 0.4822002572056585,
96
+ "total_params": 30339456,
97
+ "model_type": "gpt2",
98
+ "n_layers": 6,
99
+ "d_model": 384
100
+ },
101
+ {
102
+ "repo_id": "oddadmix/Emhotob-25M-Egyptian-English-v2",
103
+ "macro": 0.39475337003755284,
104
+ "total_params": 25271424,
105
+ "model_type": "llama",
106
+ "n_layers": 8,
107
+ "d_model": 384
108
+ },
109
+ {
110
+ "repo_id": "textilelabs/Loom-Crucible-Preview",
111
+ "macro": 0.391990733057559,
112
+ "total_params": 154980864,
113
+ "model_type": "llama",
114
+ "n_layers": 52,
115
+ "d_model": 512
116
+ }
117
+ ],
118
+ "caveats": [
119
+ "n is very small (4 models); correlations are illustrative, not statistical.",
120
+ "All scores are zero-shot loglikelihood on a single harness (lm-eval 0.4.13, float32, bs=8, cuda:0).",
121
+ "BLiMP is the mean acc over its subtasks; ARC-Easy/PIQA are acc; HellaSwag is acc_norm.",
122
+ "Models span different training corpora and token counts, so arch and data effects are confounded.",
123
+ "A tiny model trained on a narrow domain can score well on one task and poorly on another; macro hides that."
124
+ ]
125
+ }