CircularBalls commited on
Commit
7f39fca
·
verified ·
1 Parent(s): bc16fa0

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TT638D Four Function Targeted Generalization
2
+
3
+ Goal:
4
+ Fix TT638C dense failures before any dyadic/Mercy proof.
5
+
6
+ TT638C evidence:
7
+ - seen failed on uppercase canonical prompts for SUBTRACT, MULTIPLY, DIVIDE
8
+ - heldout failed on divide phrasing: `Create divide so it computes a over b.`
9
+
10
+ TT638D changes:
11
+ - balanced uppercase function-template coverage across ADD/SUBTRACT/MULTIPLY/DIVIDE
12
+ - explicit regression gate for TT638C failed prompts
13
+ - targeted divide `a over b` coverage
14
+ - fresh heldout prompts not used as train rows
data/test.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdf29be1a7e2c392d81e1a2ada7470a4cabced8b457fd27206fd6b8a49bbd73d
3
+ size 1659
data/test_heldout.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:476351788dc576cf1a5132ef8b1e981d15e4f0a2ce3c25a2c59c8bdea84c1115
3
+ size 522
data/test_regression.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a58cca36d2872e5e35023755d70ad5499361af455f60deb828f5b851a35736f
3
+ size 317
data/test_seen.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:584411a4231ecfe9ef63ad708d556c7b534e8edfd877a5e683f04d748838ff09
3
+ size 1664
data/train_shards/train-00000.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fae22ed415900c1ff9d3c2a75ebc18da73f41391f88c6d032457f6ed78e1bcc1
3
+ size 92059
data/validation.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:040db3f92332b12dedcde8935c349922d8e5502aad29c4dec3c60bfc240e45ec
3
+ size 1665
tokenizer/tokenizer.json ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [
6
+ {
7
+ "id": 0,
8
+ "content": "<PAD>",
9
+ "single_word": false,
10
+ "lstrip": false,
11
+ "rstrip": false,
12
+ "normalized": false,
13
+ "special": true
14
+ },
15
+ {
16
+ "id": 1,
17
+ "content": "<BOS>",
18
+ "single_word": false,
19
+ "lstrip": false,
20
+ "rstrip": false,
21
+ "normalized": false,
22
+ "special": true
23
+ },
24
+ {
25
+ "id": 2,
26
+ "content": "<EOS>",
27
+ "single_word": false,
28
+ "lstrip": false,
29
+ "rstrip": false,
30
+ "normalized": false,
31
+ "special": true
32
+ },
33
+ {
34
+ "id": 3,
35
+ "content": "<END>",
36
+ "single_word": false,
37
+ "lstrip": false,
38
+ "rstrip": false,
39
+ "normalized": false,
40
+ "special": true
41
+ },
42
+ {
43
+ "id": 4,
44
+ "content": "<UNK>",
45
+ "single_word": false,
46
+ "lstrip": false,
47
+ "rstrip": false,
48
+ "normalized": false,
49
+ "special": true
50
+ }
51
+ ],
52
+ "normalizer": null,
53
+ "pre_tokenizer": {
54
+ "type": "Sequence",
55
+ "pretokenizers": [
56
+ {
57
+ "type": "WhitespaceSplit"
58
+ },
59
+ {
60
+ "type": "Punctuation",
61
+ "behavior": "Isolated"
62
+ }
63
+ ]
64
+ },
65
+ "post_processor": null,
66
+ "decoder": null,
67
+ "model": {
68
+ "type": "WordLevel",
69
+ "vocab": {
70
+ "<PAD>": 0,
71
+ "<BOS>": 1,
72
+ "<EOS>": 2,
73
+ "<END>": 3,
74
+ "<UNK>": 4,
75
+ ":": 5,
76
+ "a": 6,
77
+ "b": 7,
78
+ "(": 8,
79
+ ")": 9,
80
+ ",": 10,
81
+ ".": 11,
82
+ "return": 12,
83
+ "<": 13,
84
+ ">": 14,
85
+ "Answer": 15,
86
+ "END": 16,
87
+ "Instruction": 17,
88
+ "def": 18,
89
+ "function": 19,
90
+ "divide": 20,
91
+ "multiply": 21,
92
+ "subtract": 22,
93
+ "add": 23,
94
+ "the": 24,
95
+ "-": 25,
96
+ "/": 26,
97
+ "*": 27,
98
+ "+": 28,
99
+ "Make": 29,
100
+ "Write": 30,
101
+ "Create": 31,
102
+ "named": 32,
103
+ "Define": 33,
104
+ "Python": 34,
105
+ "Return": 35,
106
+ "for": 36,
107
+ "that": 37,
108
+ "DIVIDE": 38,
109
+ "MULTIPLY": 39,
110
+ "SUBTRACT": 40,
111
+ "it": 41,
112
+ "so": 42,
113
+ "ADD": 43,
114
+ "Build": 44,
115
+ "Function": 45,
116
+ "Implement": 46,
117
+ "Please": 47,
118
+ "called": 48,
119
+ "name": 49,
120
+ "returns": 50,
121
+ "using": 51,
122
+ "write": 52,
123
+ "minus": 53,
124
+ "plus": 54,
125
+ "from": 55,
126
+ "two": 56,
127
+ "by": 57,
128
+ "computes": 58,
129
+ "times": 59,
130
+ "Give": 60,
131
+ "Operation": 61,
132
+ "Operator": 62,
133
+ "Use": 63,
134
+ "compute": 64,
135
+ "in": 65,
136
+ "input": 66,
137
+ "me": 67,
138
+ "operator": 68,
139
+ "small": 69,
140
+ "use": 70,
141
+ "uses": 71,
142
+ "addition": 72,
143
+ "divided": 73,
144
+ "division": 74,
145
+ "multiplication": 75,
146
+ "over": 76,
147
+ "subtraction": 77,
148
+ "and": 78,
149
+ "difference": 79,
150
+ "numbers": 80,
151
+ "product": 81,
152
+ "quotient": 82,
153
+ "slash": 83,
154
+ "star": 84,
155
+ "sum": 85,
156
+ "adding": 86,
157
+ "adds": 87,
158
+ "divides": 88,
159
+ "dividing": 89,
160
+ "multiplies": 90,
161
+ "multiplying": 91,
162
+ "subtracting": 92,
163
+ "subtracts": 93
164
+ },
165
+ "unk_token": "<UNK>"
166
+ }
167
+ }