shulijia commited on
Commit
b29f69d
·
verified ·
1 Parent(s): fda2bfa

Training in progress, step 500, checkpoint

Browse files
.gitattributes CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ last-checkpoint/tokenizer.json filter=lfs diff=lfs merge=lfs -text
last-checkpoint/added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
last-checkpoint/chat_template.jinja ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
27
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
28
+ {%- elif message.role == "assistant" %}
29
+ {%- set content = message.content %}
30
+ {%- set reasoning_content = '' %}
31
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
32
+ {%- set reasoning_content = message.reasoning_content %}
33
+ {%- else %}
34
+ {%- if '</think>' in message.content %}
35
+ {%- set content = message.content.split('</think>')[-1].lstrip('\n') %}
36
+ {%- set reasoning_content = message.content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
37
+ {%- endif %}
38
+ {%- endif %}
39
+ {%- if loop.index0 > ns.last_query_index %}
40
+ {%- if loop.last or (not loop.last and reasoning_content) %}
41
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
42
+ {%- else %}
43
+ {{- '<|im_start|>' + message.role + '\n' + content }}
44
+ {%- endif %}
45
+ {%- else %}
46
+ {{- '<|im_start|>' + message.role + '\n' + content }}
47
+ {%- endif %}
48
+ {%- if message.tool_calls %}
49
+ {%- for tool_call in message.tool_calls %}
50
+ {%- if (loop.first and content) or (not loop.first) %}
51
+ {{- '\n' }}
52
+ {%- endif %}
53
+ {%- if tool_call.function %}
54
+ {%- set tool_call = tool_call.function %}
55
+ {%- endif %}
56
+ {{- '<tool_call>\n{"name": "' }}
57
+ {{- tool_call.name }}
58
+ {{- '", "arguments": ' }}
59
+ {%- if tool_call.arguments is string %}
60
+ {{- tool_call.arguments }}
61
+ {%- else %}
62
+ {{- tool_call.arguments | tojson }}
63
+ {%- endif %}
64
+ {{- '}\n</tool_call>' }}
65
+ {%- endfor %}
66
+ {%- endif %}
67
+ {{- '<|im_end|>\n' }}
68
+ {%- elif message.role == "tool" %}
69
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
70
+ {{- '<|im_start|>user' }}
71
+ {%- endif %}
72
+ {{- '\n<tool_response>\n' }}
73
+ {{- message.content }}
74
+ {{- '\n</tool_response>' }}
75
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+ {%- endfor %}
80
+ {%- if add_generation_prompt %}
81
+ {{- '<|im_start|>assistant\n' }}
82
+ {%- if enable_thinking is defined and enable_thinking is false %}
83
+ {{- '<think>\n\n</think>\n\n' }}
84
+ {%- endif %}
85
+ {%- endif %}
last-checkpoint/config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151643,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "max_position_embeddings": 32768,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen3",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 8,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": null,
22
+ "rope_theta": 1000000,
23
+ "sliding_window": null,
24
+ "tie_word_embeddings": true,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.52.2",
27
+ "use_cache": true,
28
+ "use_sliding_window": false,
29
+ "vocab_size": 151936
30
+ }
last-checkpoint/generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "eos_token_id": 151643,
4
+ "max_new_tokens": 2048,
5
+ "transformers_version": "4.52.2"
6
+ }
last-checkpoint/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
last-checkpoint/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e249578534885bf18e85ed3051a243e8263941d3d0ba848bbc97638bd4e661f5
3
+ size 2384234968
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf1855d5b8c436d908cb12ebbf857141fa8d4c1ea9720eb9734f8cc6406e8e65
3
+ size 4768663315
last-checkpoint/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fd9432b50864b1799d071a2391f13a188cc959e985675ab69fd688672db2853
3
+ size 14645
last-checkpoint/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3196a10bb857dcf4855ef96b8a08ea02263a952d7cbffe4e74b97152ea5c5a7
3
+ size 1465
last-checkpoint/special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|endoftext|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
last-checkpoint/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:574de68a0f63f2004784a421c7d42c2b2786c05cb38542d2ed3525757a1f7fde
3
+ size 11422932
last-checkpoint/tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|endoftext|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
last-checkpoint/trainer_state.json ADDED
@@ -0,0 +1,524 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.7128854036713598,
6
+ "eval_steps": 100,
7
+ "global_step": 500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.014257708073427196,
14
+ "grad_norm": 80.31977081298828,
15
+ "learning_rate": 4.265402843601896e-07,
16
+ "loss": 1.7215,
17
+ "mean_token_accuracy": 0.4386619367171079,
18
+ "num_tokens": 81920.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.02851541614685439,
23
+ "grad_norm": 5.226085186004639,
24
+ "learning_rate": 9.004739336492892e-07,
25
+ "loss": 0.4476,
26
+ "mean_token_accuracy": 0.7448018610477447,
27
+ "num_tokens": 163840.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.04277312422028159,
32
+ "grad_norm": 1.4328534603118896,
33
+ "learning_rate": 1.3744075829383887e-06,
34
+ "loss": 0.293,
35
+ "mean_token_accuracy": 0.7609466724097729,
36
+ "num_tokens": 245760.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.05703083229370878,
41
+ "grad_norm": 1.468935251235962,
42
+ "learning_rate": 1.8483412322274883e-06,
43
+ "loss": 0.2499,
44
+ "mean_token_accuracy": 0.7796599786728621,
45
+ "num_tokens": 327680.0,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.07128854036713599,
50
+ "grad_norm": 1.6373568773269653,
51
+ "learning_rate": 2.322274881516588e-06,
52
+ "loss": 0.225,
53
+ "mean_token_accuracy": 0.7888087052851915,
54
+ "num_tokens": 409600.0,
55
+ "step": 50
56
+ },
57
+ {
58
+ "epoch": 0.08554624844056317,
59
+ "grad_norm": 1.3717502355575562,
60
+ "learning_rate": 2.7962085308056874e-06,
61
+ "loss": 0.2301,
62
+ "mean_token_accuracy": 0.7796599812805652,
63
+ "num_tokens": 491520.0,
64
+ "step": 60
65
+ },
66
+ {
67
+ "epoch": 0.09980395651399038,
68
+ "grad_norm": 1.4575324058532715,
69
+ "learning_rate": 3.2701421800947867e-06,
70
+ "loss": 0.2165,
71
+ "mean_token_accuracy": 0.7822773970663548,
72
+ "num_tokens": 573440.0,
73
+ "step": 70
74
+ },
75
+ {
76
+ "epoch": 0.11406166458741757,
77
+ "grad_norm": 1.7066882848739624,
78
+ "learning_rate": 3.7440758293838865e-06,
79
+ "loss": 0.2484,
80
+ "mean_token_accuracy": 0.7653864935040474,
81
+ "num_tokens": 655360.0,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.12831937266084478,
86
+ "grad_norm": 1.3280051946640015,
87
+ "learning_rate": 4.218009478672986e-06,
88
+ "loss": 0.2092,
89
+ "mean_token_accuracy": 0.8033390413969755,
90
+ "num_tokens": 737280.0,
91
+ "step": 90
92
+ },
93
+ {
94
+ "epoch": 0.14257708073427197,
95
+ "grad_norm": 1.1487761735916138,
96
+ "learning_rate": 4.691943127962086e-06,
97
+ "loss": 0.2303,
98
+ "step": 100
99
+ },
100
+ {
101
+ "epoch": 0.14257708073427197,
102
+ "eval_loss": 0.4363424479961395,
103
+ "eval_mean_token_accuracy": 0.9056754631873889,
104
+ "eval_num_tokens": 819200.0,
105
+ "eval_runtime": 41.3394,
106
+ "eval_samples_per_second": 30.165,
107
+ "eval_steps_per_second": 1.887,
108
+ "step": 100
109
+ },
110
+ {
111
+ "epoch": 0.15683478880769916,
112
+ "grad_norm": 1.2161787748336792,
113
+ "learning_rate": 5.165876777251185e-06,
114
+ "loss": 0.1977,
115
+ "mean_token_accuracy": 0.7886374732479453,
116
+ "num_tokens": 901120.0,
117
+ "step": 110
118
+ },
119
+ {
120
+ "epoch": 0.17109249688112635,
121
+ "grad_norm": 1.2622631788253784,
122
+ "learning_rate": 5.639810426540285e-06,
123
+ "loss": 0.272,
124
+ "mean_token_accuracy": 0.7660469669848681,
125
+ "num_tokens": 983040.0,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.18535020495455357,
130
+ "grad_norm": 1.6876330375671387,
131
+ "learning_rate": 6.1137440758293845e-06,
132
+ "loss": 0.2425,
133
+ "mean_token_accuracy": 0.7557363010942936,
134
+ "num_tokens": 1064960.0,
135
+ "step": 130
136
+ },
137
+ {
138
+ "epoch": 0.19960791302798075,
139
+ "grad_norm": 1.7104541063308716,
140
+ "learning_rate": 6.587677725118484e-06,
141
+ "loss": 0.2536,
142
+ "mean_token_accuracy": 0.7589774951338768,
143
+ "num_tokens": 1146880.0,
144
+ "step": 140
145
+ },
146
+ {
147
+ "epoch": 0.21386562110140794,
148
+ "grad_norm": 1.7957197427749634,
149
+ "learning_rate": 7.061611374407583e-06,
150
+ "loss": 0.2307,
151
+ "mean_token_accuracy": 0.7757460869848728,
152
+ "num_tokens": 1228800.0,
153
+ "step": 150
154
+ },
155
+ {
156
+ "epoch": 0.22812332917483513,
157
+ "grad_norm": 1.3486217260360718,
158
+ "learning_rate": 7.535545023696683e-06,
159
+ "loss": 0.2096,
160
+ "mean_token_accuracy": 0.8065435424447059,
161
+ "num_tokens": 1310720.0,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.24238103724826235,
166
+ "grad_norm": 1.7759106159210205,
167
+ "learning_rate": 8.009478672985783e-06,
168
+ "loss": 0.2394,
169
+ "mean_token_accuracy": 0.7681506846100092,
170
+ "num_tokens": 1392640.0,
171
+ "step": 170
172
+ },
173
+ {
174
+ "epoch": 0.25663874532168957,
175
+ "grad_norm": 1.4754517078399658,
176
+ "learning_rate": 8.483412322274883e-06,
177
+ "loss": 0.2284,
178
+ "mean_token_accuracy": 0.7852617405354977,
179
+ "num_tokens": 1474560.0,
180
+ "step": 180
181
+ },
182
+ {
183
+ "epoch": 0.27089645339511675,
184
+ "grad_norm": 1.4712748527526855,
185
+ "learning_rate": 8.957345971563981e-06,
186
+ "loss": 0.1902,
187
+ "mean_token_accuracy": 0.7985200572758913,
188
+ "num_tokens": 1556480.0,
189
+ "step": 190
190
+ },
191
+ {
192
+ "epoch": 0.28515416146854394,
193
+ "grad_norm": 1.8678069114685059,
194
+ "learning_rate": 9.431279620853082e-06,
195
+ "loss": 0.2482,
196
+ "step": 200
197
+ },
198
+ {
199
+ "epoch": 0.28515416146854394,
200
+ "eval_loss": 0.4305071532726288,
201
+ "eval_mean_token_accuracy": 0.9062988207890437,
202
+ "eval_num_tokens": 1638400.0,
203
+ "eval_runtime": 41.308,
204
+ "eval_samples_per_second": 30.188,
205
+ "eval_steps_per_second": 1.888,
206
+ "step": 200
207
+ },
208
+ {
209
+ "epoch": 0.29941186954197113,
210
+ "grad_norm": 1.591244101524353,
211
+ "learning_rate": 9.905213270142182e-06,
212
+ "loss": 0.219,
213
+ "mean_token_accuracy": 0.7843933456577361,
214
+ "num_tokens": 1720320.0,
215
+ "step": 210
216
+ },
217
+ {
218
+ "epoch": 0.3136695776153983,
219
+ "grad_norm": 2.2734687328338623,
220
+ "learning_rate": 9.95778364116095e-06,
221
+ "loss": 0.2099,
222
+ "mean_token_accuracy": 0.7872798424214125,
223
+ "num_tokens": 1802240.0,
224
+ "step": 220
225
+ },
226
+ {
227
+ "epoch": 0.3279272856888255,
228
+ "grad_norm": 1.6370080709457397,
229
+ "learning_rate": 9.905013192612138e-06,
230
+ "loss": 0.192,
231
+ "mean_token_accuracy": 0.7989359103143215,
232
+ "num_tokens": 1884160.0,
233
+ "step": 230
234
+ },
235
+ {
236
+ "epoch": 0.3421849937622527,
237
+ "grad_norm": 1.4441734552383423,
238
+ "learning_rate": 9.852242744063325e-06,
239
+ "loss": 0.2143,
240
+ "mean_token_accuracy": 0.808133564144373,
241
+ "num_tokens": 1966080.0,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.3564427018356799,
246
+ "grad_norm": 1.1315490007400513,
247
+ "learning_rate": 9.799472295514513e-06,
248
+ "loss": 0.1918,
249
+ "mean_token_accuracy": 0.7888331696391105,
250
+ "num_tokens": 2048000.0,
251
+ "step": 250
252
+ },
253
+ {
254
+ "epoch": 0.37070040990910713,
255
+ "grad_norm": 0.9603747725486755,
256
+ "learning_rate": 9.7467018469657e-06,
257
+ "loss": 0.1924,
258
+ "mean_token_accuracy": 0.8039628200232982,
259
+ "num_tokens": 2129920.0,
260
+ "step": 260
261
+ },
262
+ {
263
+ "epoch": 0.3849581179825343,
264
+ "grad_norm": 1.666515827178955,
265
+ "learning_rate": 9.693931398416887e-06,
266
+ "loss": 0.1782,
267
+ "mean_token_accuracy": 0.803094419836998,
268
+ "num_tokens": 2211840.0,
269
+ "step": 270
270
+ },
271
+ {
272
+ "epoch": 0.3992158260559615,
273
+ "grad_norm": 1.8663837909698486,
274
+ "learning_rate": 9.641160949868074e-06,
275
+ "loss": 0.2374,
276
+ "mean_token_accuracy": 0.7656678084284068,
277
+ "num_tokens": 2293760.0,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 0.4134735341293887,
282
+ "grad_norm": 1.5346232652664185,
283
+ "learning_rate": 9.588390501319263e-06,
284
+ "loss": 0.2,
285
+ "mean_token_accuracy": 0.7928816072642804,
286
+ "num_tokens": 2375680.0,
287
+ "step": 290
288
+ },
289
+ {
290
+ "epoch": 0.4277312422028159,
291
+ "grad_norm": 1.631354570388794,
292
+ "learning_rate": 9.53562005277045e-06,
293
+ "loss": 0.2238,
294
+ "step": 300
295
+ },
296
+ {
297
+ "epoch": 0.4277312422028159,
298
+ "eval_loss": 0.42917218804359436,
299
+ "eval_mean_token_accuracy": 0.9063309125411205,
300
+ "eval_num_tokens": 2457600.0,
301
+ "eval_runtime": 41.3603,
302
+ "eval_samples_per_second": 30.15,
303
+ "eval_steps_per_second": 1.886,
304
+ "step": 300
305
+ },
306
+ {
307
+ "epoch": 0.4419889502762431,
308
+ "grad_norm": 1.4803297519683838,
309
+ "learning_rate": 9.482849604221636e-06,
310
+ "loss": 0.2441,
311
+ "mean_token_accuracy": 0.7797455977648496,
312
+ "num_tokens": 2539520.0,
313
+ "step": 310
314
+ },
315
+ {
316
+ "epoch": 0.45624665834967026,
317
+ "grad_norm": 1.4234380722045898,
318
+ "learning_rate": 9.430079155672825e-06,
319
+ "loss": 0.2552,
320
+ "mean_token_accuracy": 0.7678449124097824,
321
+ "num_tokens": 2621440.0,
322
+ "step": 320
323
+ },
324
+ {
325
+ "epoch": 0.4705043664230975,
326
+ "grad_norm": 1.5810368061065674,
327
+ "learning_rate": 9.37730870712401e-06,
328
+ "loss": 0.225,
329
+ "mean_token_accuracy": 0.7840631131082774,
330
+ "num_tokens": 2703360.0,
331
+ "step": 330
332
+ },
333
+ {
334
+ "epoch": 0.4847620744965247,
335
+ "grad_norm": 1.540651559829712,
336
+ "learning_rate": 9.324538258575199e-06,
337
+ "loss": 0.1879,
338
+ "mean_token_accuracy": 0.7923556782305241,
339
+ "num_tokens": 2785280.0,
340
+ "step": 340
341
+ },
342
+ {
343
+ "epoch": 0.4990197825699519,
344
+ "grad_norm": 1.7700861692428589,
345
+ "learning_rate": 9.271767810026386e-06,
346
+ "loss": 0.228,
347
+ "mean_token_accuracy": 0.7943493168801069,
348
+ "num_tokens": 2867200.0,
349
+ "step": 350
350
+ },
351
+ {
352
+ "epoch": 0.5132774906433791,
353
+ "grad_norm": 1.2500240802764893,
354
+ "learning_rate": 9.218997361477573e-06,
355
+ "loss": 0.2557,
356
+ "mean_token_accuracy": 0.7765655562281608,
357
+ "num_tokens": 2949120.0,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 0.5275351987168063,
362
+ "grad_norm": 1.4669880867004395,
363
+ "learning_rate": 9.166226912928761e-06,
364
+ "loss": 0.2077,
365
+ "mean_token_accuracy": 0.7948140885680914,
366
+ "num_tokens": 3031040.0,
367
+ "step": 370
368
+ },
369
+ {
370
+ "epoch": 0.5417929067902335,
371
+ "grad_norm": 1.4171335697174072,
372
+ "learning_rate": 9.113456464379948e-06,
373
+ "loss": 0.2263,
374
+ "mean_token_accuracy": 0.7792441301047802,
375
+ "num_tokens": 3112960.0,
376
+ "step": 380
377
+ },
378
+ {
379
+ "epoch": 0.5560506148636607,
380
+ "grad_norm": 1.6694875955581665,
381
+ "learning_rate": 9.060686015831135e-06,
382
+ "loss": 0.1963,
383
+ "mean_token_accuracy": 0.8029109600931406,
384
+ "num_tokens": 3194880.0,
385
+ "step": 390
386
+ },
387
+ {
388
+ "epoch": 0.5703083229370879,
389
+ "grad_norm": 1.242436170578003,
390
+ "learning_rate": 9.007915567282322e-06,
391
+ "loss": 0.2046,
392
+ "step": 400
393
+ },
394
+ {
395
+ "epoch": 0.5703083229370879,
396
+ "eval_loss": 0.4270094931125641,
397
+ "eval_mean_token_accuracy": 0.9065381089846293,
398
+ "eval_num_tokens": 3276800.0,
399
+ "eval_runtime": 41.4607,
400
+ "eval_samples_per_second": 30.077,
401
+ "eval_steps_per_second": 1.881,
402
+ "step": 400
403
+ },
404
+ {
405
+ "epoch": 0.5845660310105151,
406
+ "grad_norm": 1.7970621585845947,
407
+ "learning_rate": 8.95514511873351e-06,
408
+ "loss": 0.2489,
409
+ "mean_token_accuracy": 0.7863931017927825,
410
+ "num_tokens": 3358720.0,
411
+ "step": 410
412
+ },
413
+ {
414
+ "epoch": 0.5988237390839423,
415
+ "grad_norm": 1.1633917093276978,
416
+ "learning_rate": 8.902374670184698e-06,
417
+ "loss": 0.2433,
418
+ "mean_token_accuracy": 0.7638698622584343,
419
+ "num_tokens": 3440640.0,
420
+ "step": 420
421
+ },
422
+ {
423
+ "epoch": 0.6130814471573695,
424
+ "grad_norm": 1.1505024433135986,
425
+ "learning_rate": 8.849604221635884e-06,
426
+ "loss": 0.2055,
427
+ "mean_token_accuracy": 0.7901785716414451,
428
+ "num_tokens": 3522560.0,
429
+ "step": 430
430
+ },
431
+ {
432
+ "epoch": 0.6273391552307966,
433
+ "grad_norm": 1.0602478981018066,
434
+ "learning_rate": 8.796833773087073e-06,
435
+ "loss": 0.2245,
436
+ "mean_token_accuracy": 0.7706947140395641,
437
+ "num_tokens": 3604480.0,
438
+ "step": 440
439
+ },
440
+ {
441
+ "epoch": 0.6415968633042238,
442
+ "grad_norm": 1.772160291671753,
443
+ "learning_rate": 8.744063324538258e-06,
444
+ "loss": 0.1874,
445
+ "mean_token_accuracy": 0.8206702545285225,
446
+ "num_tokens": 3686400.0,
447
+ "step": 450
448
+ },
449
+ {
450
+ "epoch": 0.655854571377651,
451
+ "grad_norm": 1.3542793989181519,
452
+ "learning_rate": 8.691292875989447e-06,
453
+ "loss": 0.1848,
454
+ "mean_token_accuracy": 0.804293054714799,
455
+ "num_tokens": 3768320.0,
456
+ "step": 460
457
+ },
458
+ {
459
+ "epoch": 0.6701122794510782,
460
+ "grad_norm": 1.0653384923934937,
461
+ "learning_rate": 8.638522427440634e-06,
462
+ "loss": 0.235,
463
+ "mean_token_accuracy": 0.7650929525494575,
464
+ "num_tokens": 3850240.0,
465
+ "step": 470
466
+ },
467
+ {
468
+ "epoch": 0.6843699875245054,
469
+ "grad_norm": 1.6029295921325684,
470
+ "learning_rate": 8.58575197889182e-06,
471
+ "loss": 0.1925,
472
+ "mean_token_accuracy": 0.8006971623748541,
473
+ "num_tokens": 3932160.0,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 0.6986276955979326,
478
+ "grad_norm": 1.4445295333862305,
479
+ "learning_rate": 8.53298153034301e-06,
480
+ "loss": 0.2081,
481
+ "mean_token_accuracy": 0.7856042090803385,
482
+ "num_tokens": 4014080.0,
483
+ "step": 490
484
+ },
485
+ {
486
+ "epoch": 0.7128854036713598,
487
+ "grad_norm": 1.2714146375656128,
488
+ "learning_rate": 8.480211081794196e-06,
489
+ "loss": 0.1993,
490
+ "step": 500
491
+ },
492
+ {
493
+ "epoch": 0.7128854036713598,
494
+ "eval_loss": 0.4256138503551483,
495
+ "eval_mean_token_accuracy": 0.9067788590223361,
496
+ "eval_num_tokens": 4096000.0,
497
+ "eval_runtime": 41.1978,
498
+ "eval_samples_per_second": 30.269,
499
+ "eval_steps_per_second": 1.893,
500
+ "step": 500
501
+ }
502
+ ],
503
+ "logging_steps": 10,
504
+ "max_steps": 2106,
505
+ "num_input_tokens_seen": 0,
506
+ "num_train_epochs": 3,
507
+ "save_steps": 500,
508
+ "stateful_callbacks": {
509
+ "TrainerControl": {
510
+ "args": {
511
+ "should_epoch_stop": false,
512
+ "should_evaluate": false,
513
+ "should_log": false,
514
+ "should_save": true,
515
+ "should_training_stop": false
516
+ },
517
+ "attributes": {}
518
+ }
519
+ },
520
+ "total_flos": 1.0824928198656e+16,
521
+ "train_batch_size": 2,
522
+ "trial_name": null,
523
+ "trial_params": null
524
+ }
last-checkpoint/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebadd6b809574cfdb487492b78e26345d3b70d2bdc512a8c71f7542ef65ecd4a
3
+ size 6097
last-checkpoint/vocab.json ADDED
The diff for this file is too large to render. See raw diff