AliceYin commited on
Commit
346f751
·
verified ·
1 Parent(s): 3b053c6

Upload 135M base checkpoint trained on 10B FineWeb-Edu tokens

Browse files
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - causal-lm
9
+ - pretraining
10
+ - from-scratch
11
+ - fineweb-edu
12
+ - single-gpu
13
+ - l20
14
+ datasets:
15
+ - HuggingFaceFW/fineweb-edu
16
+ ---
17
+
18
+ # l20-edu-135m
19
+
20
+ `l20-edu-135m` is a 134.5M-parameter causal language model pretrained from scratch on a single NVIDIA L20 GPU.
21
+
22
+ This is a base model checkpoint, not an instruction-tuned chat model. It is intended for research, evaluation, and downstream fine-tuning.
23
+
24
+ ## Model Details
25
+
26
+ - Architecture: Llama-style decoder-only Transformer
27
+ - Parameters: 134,515,008
28
+ - Layers: 30
29
+ - Hidden size: 576
30
+ - FFN size: 1536
31
+ - Attention heads: 9 query heads, 3 key/value heads
32
+ - Tokenizer: SmolLM2-135M tokenizer
33
+ - Training data: FineWeb-Edu sample-10BT
34
+ - Training tokens: 10,001,252,352 planned tokens
35
+ - Final checkpoint: step 18,928
36
+ - Hardware: single NVIDIA L20 GPU
37
+ - Precision: mixed precision training
38
+
39
+ ## Evaluation
40
+
41
+ Final validation:
42
+
43
+ - Loss: 2.8731
44
+ - Perplexity: 17.69
45
+
46
+ lm-eval results for the final checkpoint:
47
+
48
+ | Task | Metric | Score |
49
+ | --- | --- | ---: |
50
+ | ARC-Challenge | acc_norm | 0.2765 |
51
+ | ARC-Easy | acc_norm | 0.5059 |
52
+ | HellaSwag | acc_norm | 0.3272 |
53
+ | LAMBADA OpenAI | acc | 0.2540 |
54
+ | PIQA | acc_norm | 0.6224 |
55
+ | Winogrande | acc | 0.5099 |
56
+
57
+ Compared with public 100M-160M baselines on the same lm-eval task set, this model is competitive with several older baselines but is below modern heavily overtrained compact models such as SmolLM and SmolLM2, which use substantially larger pretraining budgets.
58
+
59
+ ## Intended Use
60
+
61
+ This checkpoint is suitable for:
62
+
63
+ - base model evaluation
64
+ - continued pretraining experiments
65
+ - supervised fine-tuning experiments
66
+ - small-model training pipeline demonstrations
67
+
68
+ It is not suitable as a production assistant without post-training, safety evaluation, and domain-specific validation.
69
+
70
+ ## Limitations
71
+
72
+ - This is a small base model trained on 10B tokens.
73
+ - It is not instruction-tuned and may not follow user requests reliably.
74
+ - It can produce incorrect facts, repetitions, or incomplete generations.
75
+ - Results should not be described as SOTA without controlled baselines and matched training-budget comparisons.
76
+
77
+ ## Citation
78
+
79
+ If you use this checkpoint, please cite or link to this repository and include the training-token budget when comparing against other compact language models.
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 0,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 0,
10
+ "head_dim": 64,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 576,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 1536,
15
+ "max_position_embeddings": 2048,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 9,
19
+ "num_hidden_layers": 30,
20
+ "num_key_value_heads": 3,
21
+ "pad_token_id": 0,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_scaling": null,
25
+ "rope_theta": 10000.0,
26
+ "tie_word_embeddings": true,
27
+ "transformers_version": "4.57.3",
28
+ "use_cache": false,
29
+ "vocab_size": 49152
30
+ }
eval/comparison.json ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "candidate": "l20-edu-135m-deepthin",
3
+ "tasks": {
4
+ "lambada_openai": {
5
+ "metric": "acc,none",
6
+ "value": 0.25402678051620414
7
+ },
8
+ "hellaswag": {
9
+ "metric": "acc_norm,none",
10
+ "value": 0.3272256522605059
11
+ },
12
+ "piqa": {
13
+ "metric": "acc_norm,none",
14
+ "value": 0.6224156692056583
15
+ },
16
+ "arc_easy": {
17
+ "metric": "acc_norm,none",
18
+ "value": 0.5058922558922558
19
+ },
20
+ "arc_challenge": {
21
+ "metric": "acc_norm,none",
22
+ "value": 0.2764505119453925
23
+ },
24
+ "winogrande": {
25
+ "metric": "acc,none",
26
+ "value": 0.5098658247829518
27
+ }
28
+ },
29
+ "baselines": {
30
+ "gpt2-small": {
31
+ "lambada_openai": {
32
+ "metric": "acc,none",
33
+ "value": 0.30758781292451
34
+ },
35
+ "hellaswag": {
36
+ "metric": "acc_norm,none",
37
+ "value": 0.31378211511651066
38
+ },
39
+ "piqa": {
40
+ "metric": "acc_norm,none",
41
+ "value": 0.6207834602829162
42
+ },
43
+ "arc_easy": {
44
+ "metric": "acc_norm,none",
45
+ "value": 0.39730639730639733
46
+ },
47
+ "arc_challenge": {
48
+ "metric": "acc_norm,none",
49
+ "value": 0.22610921501706485
50
+ },
51
+ "winogrande": {
52
+ "metric": "acc,none",
53
+ "value": 0.5067087608524072
54
+ }
55
+ },
56
+ "opt-125m": {
57
+ "lambada_openai": {
58
+ "metric": "acc,none",
59
+ "value": 0.3856006209974772
60
+ },
61
+ "hellaswag": {
62
+ "metric": "acc_norm,none",
63
+ "value": 0.31597291376219877
64
+ },
65
+ "piqa": {
66
+ "metric": "acc_norm,none",
67
+ "value": 0.6202393906420022
68
+ },
69
+ "arc_easy": {
70
+ "metric": "acc_norm,none",
71
+ "value": 0.398989898989899
72
+ },
73
+ "arc_challenge": {
74
+ "metric": "acc_norm,none",
75
+ "value": 0.22098976109215018
76
+ },
77
+ "winogrande": {
78
+ "metric": "acc,none",
79
+ "value": 0.5177584846093133
80
+ }
81
+ },
82
+ "gpt-neo-125m": {
83
+ "lambada_openai": {
84
+ "metric": "acc,none",
85
+ "value": 0.37647972055113527
86
+ },
87
+ "hellaswag": {
88
+ "metric": "acc_norm,none",
89
+ "value": 0.30551682931686913
90
+ },
91
+ "piqa": {
92
+ "metric": "acc_norm,none",
93
+ "value": 0.6213275299238302
94
+ },
95
+ "arc_easy": {
96
+ "metric": "acc_norm,none",
97
+ "value": 0.39646464646464646
98
+ },
99
+ "arc_challenge": {
100
+ "metric": "acc_norm,none",
101
+ "value": 0.23208191126279865
102
+ },
103
+ "winogrande": {
104
+ "metric": "acc,none",
105
+ "value": 0.5098658247829518
106
+ }
107
+ },
108
+ "cerebras-gpt-111m": {
109
+ "lambada_openai": {
110
+ "metric": "acc,none",
111
+ "value": 0.19115078594993207
112
+ },
113
+ "hellaswag": {
114
+ "metric": "acc_norm,none",
115
+ "value": 0.2719577773351922
116
+ },
117
+ "piqa": {
118
+ "metric": "acc_norm,none",
119
+ "value": 0.5810663764961915
120
+ },
121
+ "arc_easy": {
122
+ "metric": "acc_norm,none",
123
+ "value": 0.35058922558922556
124
+ },
125
+ "arc_challenge": {
126
+ "metric": "acc_norm,none",
127
+ "value": 0.2098976109215017
128
+ },
129
+ "winogrande": {
130
+ "metric": "acc,none",
131
+ "value": 0.49013417521704816
132
+ }
133
+ },
134
+ "pythia-160m": {
135
+ "lambada_openai": {
136
+ "metric": "acc,none",
137
+ "value": 0.12245294003493111
138
+ },
139
+ "hellaswag": {
140
+ "metric": "acc_norm,none",
141
+ "value": 0.30302728540131446
142
+ },
143
+ "piqa": {
144
+ "metric": "acc_norm,none",
145
+ "value": 0.5979325353645266
146
+ },
147
+ "arc_easy": {
148
+ "metric": "acc_norm,none",
149
+ "value": 0.3640572390572391
150
+ },
151
+ "arc_challenge": {
152
+ "metric": "acc_norm,none",
153
+ "value": 0.23122866894197952
154
+ },
155
+ "winogrande": {
156
+ "metric": "acc,none",
157
+ "value": 0.5074980268350434
158
+ }
159
+ },
160
+ "smollm-135m": {
161
+ "lambada_openai": {
162
+ "metric": "acc,none",
163
+ "value": 0.3757034737046381
164
+ },
165
+ "hellaswag": {
166
+ "metric": "acc_norm,none",
167
+ "value": 0.42650866361282613
168
+ },
169
+ "piqa": {
170
+ "metric": "acc_norm,none",
171
+ "value": 0.6822633297062024
172
+ },
173
+ "arc_easy": {
174
+ "metric": "acc_norm,none",
175
+ "value": 0.561026936026936
176
+ },
177
+ "arc_challenge": {
178
+ "metric": "acc_norm,none",
179
+ "value": 0.28754266211604096
180
+ },
181
+ "winogrande": {
182
+ "metric": "acc,none",
183
+ "value": 0.5272296764009471
184
+ }
185
+ },
186
+ "smollm2-135m": {
187
+ "lambada_openai": {
188
+ "metric": "acc,none",
189
+ "value": 0.4288763826896953
190
+ },
191
+ "hellaswag": {
192
+ "metric": "acc_norm,none",
193
+ "value": 0.43009360685122483
194
+ },
195
+ "piqa": {
196
+ "metric": "acc_norm,none",
197
+ "value": 0.6838955386289445
198
+ },
199
+ "arc_easy": {
200
+ "metric": "acc_norm,none",
201
+ "value": 0.5854377104377104
202
+ },
203
+ "arc_challenge": {
204
+ "metric": "acc_norm,none",
205
+ "value": 0.29692832764505117
206
+ },
207
+ "winogrande": {
208
+ "metric": "acc,none",
209
+ "value": 0.5248618784530387
210
+ }
211
+ }
212
+ }
213
+ }
eval/comparison.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # lm-eval Comparison
2
+
3
+ Candidate: `l20-edu-135m-deepthin`
4
+
5
+ | Task | Metric | l20-edu-135m-deepthin | gpt2-small | opt-125m | gpt-neo-125m | cerebras-gpt-111m | pythia-160m | smollm-135m | smollm2-135m |
6
+ | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
7
+ | arc_challenge | acc_norm,none | 0.2765 | 0.2261 | 0.2210 | 0.2321 | 0.2099 | 0.2312 | 0.2875 | 0.2969 |
8
+ | arc_easy | acc_norm,none | 0.5059 | 0.3973 | 0.3990 | 0.3965 | 0.3506 | 0.3641 | 0.5610 | 0.5854 |
9
+ | hellaswag | acc_norm,none | 0.3272 | 0.3138 | 0.3160 | 0.3055 | 0.2720 | 0.3030 | 0.4265 | 0.4301 |
10
+ | lambada_openai | acc,none | 0.2540 | 0.3076 | 0.3856 | 0.3765 | 0.1912 | 0.1225 | 0.3757 | 0.4289 |
11
+ | piqa | acc_norm,none | 0.6224 | 0.6208 | 0.6202 | 0.6213 | 0.5811 | 0.5979 | 0.6823 | 0.6839 |
12
+ | winogrande | acc,none | 0.5099 | 0.5067 | 0.5178 | 0.5099 | 0.4901 | 0.5075 | 0.5272 | 0.5249 |
13
+
14
+ ## Win Rates
15
+
16
+ - `gpt2-small`: 5/6 = 0.833
17
+ - `opt-125m`: 4/6 = 0.667
18
+ - `gpt-neo-125m`: 4/6 = 0.667
19
+ - `cerebras-gpt-111m`: 6/6 = 1.000
20
+ - `pythia-160m`: 6/6 = 1.000
21
+ - `smollm-135m`: 0/6 = 0.000
22
+ - `smollm2-135m`: 0/6 = 0.000
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 0,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.57.3"
7
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c53c309205a87b2cd1a113f26769dcb8e341064ed0ecda5afbd26cc30e47502
3
+ size 269060552
pretrain_config.yaml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ run_name: l20-edu-135m-deepthin
2
+ output_dir: runs/l20-edu-135m-deepthin
3
+ seed: 1337
4
+ tokenizer_name: HuggingFaceTB/SmolLM2-135M
5
+ dataset:
6
+ name: HuggingFaceFW/fineweb-edu
7
+ config_name: sample-10BT
8
+ split: train
9
+ streaming: true
10
+ text_column: text
11
+ min_chars: 300
12
+ max_chars: 50000
13
+ min_score: 3.0
14
+ min_int_score: 3
15
+ append_eos: true
16
+ shuffle_buffer: 10000
17
+ max_docs: null
18
+ local_text_path: null
19
+ model:
20
+ block_size: 2048
21
+ hidden_size: 576
22
+ intermediate_size: 1536
23
+ num_hidden_layers: 30
24
+ num_attention_heads: 9
25
+ num_key_value_heads: 3
26
+ rope_theta: 10000.0
27
+ rms_norm_eps: 1.0e-06
28
+ attention_dropout: 0.0
29
+ tie_word_embeddings: true
30
+ vocab_multiple: 64
31
+ attn_implementation: sdpa
32
+ trainer:
33
+ micro_batch_size: 6
34
+ gradient_accumulation_steps: 43
35
+ max_steps: 18928
36
+ warmup_steps: 1000
37
+ learning_rate: 0.0004
38
+ min_lr_ratio: 0.1
39
+ weight_decay: 0.1
40
+ beta1: 0.9
41
+ beta2: 0.95
42
+ grad_clip: 1.0
43
+ dtype: bfloat16
44
+ compile: true
45
+ gradient_checkpointing: true
46
+ log_interval: 10
47
+ eval_interval: 500
48
+ eval_batches: 64
49
+ save_interval: 1000
50
+ keep_last_checkpoints: 2
51
+ num_workers: 0
special_tokens_map.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "<|im_start|>",
5
+ "<|im_end|>",
6
+ "<repo_name>",
7
+ "<reponame>",
8
+ "<file_sep>",
9
+ "<filename>",
10
+ "<gh_stars>",
11
+ "<issue_start>",
12
+ "<issue_comment>",
13
+ "<issue_closed>",
14
+ "<jupyter_start>",
15
+ "<jupyter_text>",
16
+ "<jupyter_code>",
17
+ "<jupyter_output>",
18
+ "<jupyter_script>",
19
+ "<empty_output>"
20
+ ],
21
+ "bos_token": {
22
+ "content": "<|endoftext|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false
27
+ },
28
+ "eos_token": {
29
+ "content": "<|endoftext|>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false
34
+ },
35
+ "pad_token": "<|endoftext|>",
36
+ "unk_token": {
37
+ "content": "<|endoftext|>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false
42
+ }
43
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "<repo_name>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "4": {
37
+ "content": "<reponame>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "5": {
45
+ "content": "<file_sep>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "6": {
53
+ "content": "<filename>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "7": {
61
+ "content": "<gh_stars>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "8": {
69
+ "content": "<issue_start>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "9": {
77
+ "content": "<issue_comment>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "10": {
85
+ "content": "<issue_closed>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "11": {
93
+ "content": "<jupyter_start>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "12": {
101
+ "content": "<jupyter_text>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "13": {
109
+ "content": "<jupyter_code>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ },
116
+ "14": {
117
+ "content": "<jupyter_output>",
118
+ "lstrip": false,
119
+ "normalized": false,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": true
123
+ },
124
+ "15": {
125
+ "content": "<jupyter_script>",
126
+ "lstrip": false,
127
+ "normalized": false,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": true
131
+ },
132
+ "16": {
133
+ "content": "<empty_output>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": true
139
+ }
140
+ },
141
+ "additional_special_tokens": [
142
+ "<|endoftext|>",
143
+ "<|im_start|>",
144
+ "<|im_end|>",
145
+ "<repo_name>",
146
+ "<reponame>",
147
+ "<file_sep>",
148
+ "<filename>",
149
+ "<gh_stars>",
150
+ "<issue_start>",
151
+ "<issue_comment>",
152
+ "<issue_closed>",
153
+ "<jupyter_start>",
154
+ "<jupyter_text>",
155
+ "<jupyter_code>",
156
+ "<jupyter_output>",
157
+ "<jupyter_script>",
158
+ "<empty_output>"
159
+ ],
160
+ "bos_token": "<|endoftext|>",
161
+ "clean_up_tokenization_spaces": false,
162
+ "eos_token": "<|endoftext|>",
163
+ "extra_special_tokens": {},
164
+ "model_max_length": 8192,
165
+ "pad_token": "<|endoftext|>",
166
+ "tokenizer_class": "GPT2Tokenizer",
167
+ "unk_token": "<|endoftext|>",
168
+ "vocab_size": 49152
169
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff