shulijia commited on
Commit
3224a91
·
verified ·
1 Parent(s): 7d51cbb

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:01b3db4645b756626ddb7973621c7080eb13b0cd3e61a68e8900b8dad0bdf8cf
3
+ size 2384234968
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3c79b3b09e0fde56710ab2921706a60ecd1ab3863b5011393584ba98921bd47
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:cffb954d72cf1189fd8e1ba7b775e0ce7b92c5c02d033bea47ee68057e2ca6b1
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.16732201121057474,
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.003346440224211495,
14
+ "grad_norm": 381.50091552734375,
15
+ "learning_rate": 1.0033444816053512e-07,
16
+ "loss": 2.3531,
17
+ "mean_token_accuracy": 0.15974804367870094,
18
+ "num_tokens": 81920.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.00669288044842299,
23
+ "grad_norm": 108.59841918945312,
24
+ "learning_rate": 2.118171683389075e-07,
25
+ "loss": 1.0615,
26
+ "mean_token_accuracy": 0.6265044037252665,
27
+ "num_tokens": 163840.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.010039320672634485,
32
+ "grad_norm": 11.361440658569336,
33
+ "learning_rate": 3.2329988851727985e-07,
34
+ "loss": 0.3431,
35
+ "mean_token_accuracy": 0.8708292551338672,
36
+ "num_tokens": 245760.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.01338576089684598,
41
+ "grad_norm": 3.652024507522583,
42
+ "learning_rate": 4.347826086956522e-07,
43
+ "loss": 0.1778,
44
+ "mean_token_accuracy": 0.8943126246333122,
45
+ "num_tokens": 327680.0,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.016732201121057475,
50
+ "grad_norm": 1.5740631818771362,
51
+ "learning_rate": 5.462653288740246e-07,
52
+ "loss": 0.1206,
53
+ "mean_token_accuracy": 0.9035469651222229,
54
+ "num_tokens": 409600.0,
55
+ "step": 50
56
+ },
57
+ {
58
+ "epoch": 0.02007864134526897,
59
+ "grad_norm": 1.726568341255188,
60
+ "learning_rate": 6.577480490523969e-07,
61
+ "loss": 0.1,
62
+ "mean_token_accuracy": 0.8987769059836864,
63
+ "num_tokens": 491520.0,
64
+ "step": 60
65
+ },
66
+ {
67
+ "epoch": 0.023425081569480467,
68
+ "grad_norm": 1.6954574584960938,
69
+ "learning_rate": 7.692307692307694e-07,
70
+ "loss": 0.0884,
71
+ "mean_token_accuracy": 0.9068860106170178,
72
+ "num_tokens": 573440.0,
73
+ "step": 70
74
+ },
75
+ {
76
+ "epoch": 0.02677152179369196,
77
+ "grad_norm": 1.5214804410934448,
78
+ "learning_rate": 8.807134894091417e-07,
79
+ "loss": 0.0763,
80
+ "mean_token_accuracy": 0.900403618067503,
81
+ "num_tokens": 655360.0,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.030117962017903455,
86
+ "grad_norm": 1.4563462734222412,
87
+ "learning_rate": 9.92196209587514e-07,
88
+ "loss": 0.0821,
89
+ "mean_token_accuracy": 0.9011130131781101,
90
+ "num_tokens": 737280.0,
91
+ "step": 90
92
+ },
93
+ {
94
+ "epoch": 0.03346440224211495,
95
+ "grad_norm": 2.252185106277466,
96
+ "learning_rate": 1.1036789297658864e-06,
97
+ "loss": 0.0854,
98
+ "step": 100
99
+ },
100
+ {
101
+ "epoch": 0.03346440224211495,
102
+ "eval_loss": 0.16463333368301392,
103
+ "eval_mean_token_accuracy": 0.9641127235538609,
104
+ "eval_num_tokens": 819200.0,
105
+ "eval_runtime": 175.4066,
106
+ "eval_samples_per_second": 30.29,
107
+ "eval_steps_per_second": 1.898,
108
+ "step": 100
109
+ },
110
+ {
111
+ "epoch": 0.036810842466326446,
112
+ "grad_norm": 1.5207161903381348,
113
+ "learning_rate": 1.2151616499442587e-06,
114
+ "loss": 0.079,
115
+ "mean_token_accuracy": 0.9014860544353723,
116
+ "num_tokens": 901120.0,
117
+ "step": 110
118
+ },
119
+ {
120
+ "epoch": 0.04015728269053794,
121
+ "grad_norm": 1.2643405199050903,
122
+ "learning_rate": 1.326644370122631e-06,
123
+ "loss": 0.0938,
124
+ "mean_token_accuracy": 0.8938845384865999,
125
+ "num_tokens": 983040.0,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.04350372291474944,
130
+ "grad_norm": 1.358339786529541,
131
+ "learning_rate": 1.4381270903010034e-06,
132
+ "loss": 0.0709,
133
+ "mean_token_accuracy": 0.9086961820721626,
134
+ "num_tokens": 1064960.0,
135
+ "step": 130
136
+ },
137
+ {
138
+ "epoch": 0.04685016313896093,
139
+ "grad_norm": 1.613029956817627,
140
+ "learning_rate": 1.5496098104793757e-06,
141
+ "loss": 0.0808,
142
+ "mean_token_accuracy": 0.9017000988125801,
143
+ "num_tokens": 1146880.0,
144
+ "step": 140
145
+ },
146
+ {
147
+ "epoch": 0.05019660336317242,
148
+ "grad_norm": 1.4856306314468384,
149
+ "learning_rate": 1.6610925306577483e-06,
150
+ "loss": 0.0753,
151
+ "mean_token_accuracy": 0.9064946159720421,
152
+ "num_tokens": 1228800.0,
153
+ "step": 150
154
+ },
155
+ {
156
+ "epoch": 0.05354304358738392,
157
+ "grad_norm": 1.4290050268173218,
158
+ "learning_rate": 1.7725752508361204e-06,
159
+ "loss": 0.079,
160
+ "mean_token_accuracy": 0.9070816986262799,
161
+ "num_tokens": 1310720.0,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.056889483811595414,
166
+ "grad_norm": 1.8561420440673828,
167
+ "learning_rate": 1.884057971014493e-06,
168
+ "loss": 0.0835,
169
+ "mean_token_accuracy": 0.9007093951106071,
170
+ "num_tokens": 1392640.0,
171
+ "step": 170
172
+ },
173
+ {
174
+ "epoch": 0.06023592403580691,
175
+ "grad_norm": 1.7619956731796265,
176
+ "learning_rate": 1.9955406911928653e-06,
177
+ "loss": 0.0777,
178
+ "mean_token_accuracy": 0.9031800344586373,
179
+ "num_tokens": 1474560.0,
180
+ "step": 180
181
+ },
182
+ {
183
+ "epoch": 0.06358236426001841,
184
+ "grad_norm": 1.7907612323760986,
185
+ "learning_rate": 2.1070234113712374e-06,
186
+ "loss": 0.0778,
187
+ "mean_token_accuracy": 0.901002936810255,
188
+ "num_tokens": 1556480.0,
189
+ "step": 190
190
+ },
191
+ {
192
+ "epoch": 0.0669288044842299,
193
+ "grad_norm": 1.2975612878799438,
194
+ "learning_rate": 2.21850613154961e-06,
195
+ "loss": 0.0784,
196
+ "step": 200
197
+ },
198
+ {
199
+ "epoch": 0.0669288044842299,
200
+ "eval_loss": 0.1590431183576584,
201
+ "eval_mean_token_accuracy": 0.9647363902212264,
202
+ "eval_num_tokens": 1638400.0,
203
+ "eval_runtime": 176.3424,
204
+ "eval_samples_per_second": 30.129,
205
+ "eval_steps_per_second": 1.888,
206
+ "step": 200
207
+ },
208
+ {
209
+ "epoch": 0.07027524470844139,
210
+ "grad_norm": 1.2653632164001465,
211
+ "learning_rate": 2.329988851727982e-06,
212
+ "loss": 0.0754,
213
+ "mean_token_accuracy": 0.9063295017927885,
214
+ "num_tokens": 1720320.0,
215
+ "step": 210
216
+ },
217
+ {
218
+ "epoch": 0.07362168493265289,
219
+ "grad_norm": 1.3196860551834106,
220
+ "learning_rate": 2.4414715719063546e-06,
221
+ "loss": 0.0831,
222
+ "mean_token_accuracy": 0.9038772054016591,
223
+ "num_tokens": 1802240.0,
224
+ "step": 220
225
+ },
226
+ {
227
+ "epoch": 0.07696812515686438,
228
+ "grad_norm": 2.6671698093414307,
229
+ "learning_rate": 2.552954292084727e-06,
230
+ "loss": 0.0824,
231
+ "mean_token_accuracy": 0.9060909979045391,
232
+ "num_tokens": 1884160.0,
233
+ "step": 230
234
+ },
235
+ {
236
+ "epoch": 0.08031456538107588,
237
+ "grad_norm": 1.3936796188354492,
238
+ "learning_rate": 2.6644370122630997e-06,
239
+ "loss": 0.0818,
240
+ "mean_token_accuracy": 0.9011741690337658,
241
+ "num_tokens": 1966080.0,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.08366100560528737,
246
+ "grad_norm": 1.2653836011886597,
247
+ "learning_rate": 2.7759197324414714e-06,
248
+ "loss": 0.0824,
249
+ "mean_token_accuracy": 0.9036448128521443,
250
+ "num_tokens": 2048000.0,
251
+ "step": 250
252
+ },
253
+ {
254
+ "epoch": 0.08700744582949888,
255
+ "grad_norm": 1.739853024482727,
256
+ "learning_rate": 2.887402452619844e-06,
257
+ "loss": 0.084,
258
+ "mean_token_accuracy": 0.9064579255878925,
259
+ "num_tokens": 2129920.0,
260
+ "step": 260
261
+ },
262
+ {
263
+ "epoch": 0.09035388605371036,
264
+ "grad_norm": 1.2843964099884033,
265
+ "learning_rate": 2.9988851727982165e-06,
266
+ "loss": 0.0802,
267
+ "mean_token_accuracy": 0.9025440298020839,
268
+ "num_tokens": 2211840.0,
269
+ "step": 270
270
+ },
271
+ {
272
+ "epoch": 0.09370032627792187,
273
+ "grad_norm": 1.6027252674102783,
274
+ "learning_rate": 3.110367892976589e-06,
275
+ "loss": 0.0856,
276
+ "mean_token_accuracy": 0.8990215286612511,
277
+ "num_tokens": 2293760.0,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 0.09704676650213336,
282
+ "grad_norm": 1.1412756443023682,
283
+ "learning_rate": 3.2218506131549616e-06,
284
+ "loss": 0.0828,
285
+ "mean_token_accuracy": 0.898263206705451,
286
+ "num_tokens": 2375680.0,
287
+ "step": 290
288
+ },
289
+ {
290
+ "epoch": 0.10039320672634484,
291
+ "grad_norm": 1.7126843929290771,
292
+ "learning_rate": 3.3333333333333333e-06,
293
+ "loss": 0.0832,
294
+ "step": 300
295
+ },
296
+ {
297
+ "epoch": 0.10039320672634484,
298
+ "eval_loss": 0.15664729475975037,
299
+ "eval_mean_token_accuracy": 0.9648091143315977,
300
+ "eval_num_tokens": 2457600.0,
301
+ "eval_runtime": 175.0886,
302
+ "eval_samples_per_second": 30.345,
303
+ "eval_steps_per_second": 1.902,
304
+ "step": 300
305
+ },
306
+ {
307
+ "epoch": 0.10373964695055635,
308
+ "grad_norm": 1.1052848100662231,
309
+ "learning_rate": 3.444816053511706e-06,
310
+ "loss": 0.0801,
311
+ "mean_token_accuracy": 0.9030760779976845,
312
+ "num_tokens": 2539520.0,
313
+ "step": 310
314
+ },
315
+ {
316
+ "epoch": 0.10708608717476784,
317
+ "grad_norm": 1.6072983741760254,
318
+ "learning_rate": 3.5562987736900784e-06,
319
+ "loss": 0.071,
320
+ "mean_token_accuracy": 0.9074119366705418,
321
+ "num_tokens": 2621440.0,
322
+ "step": 320
323
+ },
324
+ {
325
+ "epoch": 0.11043252739897934,
326
+ "grad_norm": 1.0676347017288208,
327
+ "learning_rate": 3.667781493868451e-06,
328
+ "loss": 0.0839,
329
+ "mean_token_accuracy": 0.9030088067054749,
330
+ "num_tokens": 2703360.0,
331
+ "step": 330
332
+ },
333
+ {
334
+ "epoch": 0.11377896762319083,
335
+ "grad_norm": 1.418855905532837,
336
+ "learning_rate": 3.7792642140468235e-06,
337
+ "loss": 0.0781,
338
+ "mean_token_accuracy": 0.9011252447962761,
339
+ "num_tokens": 2785280.0,
340
+ "step": 340
341
+ },
342
+ {
343
+ "epoch": 0.11712540784740233,
344
+ "grad_norm": 1.4775986671447754,
345
+ "learning_rate": 3.890746934225196e-06,
346
+ "loss": 0.0892,
347
+ "mean_token_accuracy": 0.899718688428402,
348
+ "num_tokens": 2867200.0,
349
+ "step": 350
350
+ },
351
+ {
352
+ "epoch": 0.12047184807161382,
353
+ "grad_norm": 1.73708176612854,
354
+ "learning_rate": 4.002229654403568e-06,
355
+ "loss": 0.0779,
356
+ "mean_token_accuracy": 0.9028987258672714,
357
+ "num_tokens": 2949120.0,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 0.12381828829582532,
362
+ "grad_norm": 1.9001389741897583,
363
+ "learning_rate": 4.11371237458194e-06,
364
+ "loss": 0.0847,
365
+ "mean_token_accuracy": 0.901920247823,
366
+ "num_tokens": 3031040.0,
367
+ "step": 370
368
+ },
369
+ {
370
+ "epoch": 0.12716472852003682,
371
+ "grad_norm": 1.1271719932556152,
372
+ "learning_rate": 4.225195094760313e-06,
373
+ "loss": 0.0756,
374
+ "mean_token_accuracy": 0.8988625220954418,
375
+ "num_tokens": 3112960.0,
376
+ "step": 380
377
+ },
378
+ {
379
+ "epoch": 0.1305111687442483,
380
+ "grad_norm": 1.6783229112625122,
381
+ "learning_rate": 4.336677814938685e-06,
382
+ "loss": 0.0801,
383
+ "mean_token_accuracy": 0.8964407987892627,
384
+ "num_tokens": 3194880.0,
385
+ "step": 390
386
+ },
387
+ {
388
+ "epoch": 0.1338576089684598,
389
+ "grad_norm": 1.6774762868881226,
390
+ "learning_rate": 4.448160535117057e-06,
391
+ "loss": 0.081,
392
+ "step": 400
393
+ },
394
+ {
395
+ "epoch": 0.1338576089684598,
396
+ "eval_loss": 0.15611669421195984,
397
+ "eval_mean_token_accuracy": 0.9646247326432764,
398
+ "eval_num_tokens": 3276800.0,
399
+ "eval_runtime": 175.7197,
400
+ "eval_samples_per_second": 30.236,
401
+ "eval_steps_per_second": 1.895,
402
+ "step": 400
403
+ },
404
+ {
405
+ "epoch": 0.1372040491926713,
406
+ "grad_norm": 1.566451907157898,
407
+ "learning_rate": 4.559643255295429e-06,
408
+ "loss": 0.0748,
409
+ "mean_token_accuracy": 0.902238254994154,
410
+ "num_tokens": 3358720.0,
411
+ "step": 410
412
+ },
413
+ {
414
+ "epoch": 0.14055048941688278,
415
+ "grad_norm": 1.9855010509490967,
416
+ "learning_rate": 4.671125975473802e-06,
417
+ "loss": 0.0793,
418
+ "mean_token_accuracy": 0.8993517622351647,
419
+ "num_tokens": 3440640.0,
420
+ "step": 420
421
+ },
422
+ {
423
+ "epoch": 0.1438969296410943,
424
+ "grad_norm": 1.4213474988937378,
425
+ "learning_rate": 4.782608695652174e-06,
426
+ "loss": 0.081,
427
+ "mean_token_accuracy": 0.9107754409313202,
428
+ "num_tokens": 3522560.0,
429
+ "step": 430
430
+ },
431
+ {
432
+ "epoch": 0.14724336986530578,
433
+ "grad_norm": 1.1975512504577637,
434
+ "learning_rate": 4.894091415830547e-06,
435
+ "loss": 0.0779,
436
+ "mean_token_accuracy": 0.9046599790453911,
437
+ "num_tokens": 3604480.0,
438
+ "step": 440
439
+ },
440
+ {
441
+ "epoch": 0.15058981008951727,
442
+ "grad_norm": 1.486319661140442,
443
+ "learning_rate": 5.0055741360089194e-06,
444
+ "loss": 0.0774,
445
+ "mean_token_accuracy": 0.908084636181593,
446
+ "num_tokens": 3686400.0,
447
+ "step": 450
448
+ },
449
+ {
450
+ "epoch": 0.15393625031372876,
451
+ "grad_norm": 1.5909311771392822,
452
+ "learning_rate": 5.1170568561872916e-06,
453
+ "loss": 0.0738,
454
+ "mean_token_accuracy": 0.9056506864726543,
455
+ "num_tokens": 3768320.0,
456
+ "step": 460
457
+ },
458
+ {
459
+ "epoch": 0.15728269053794028,
460
+ "grad_norm": 1.4979009628295898,
461
+ "learning_rate": 5.228539576365663e-06,
462
+ "loss": 0.08,
463
+ "mean_token_accuracy": 0.8925146766006946,
464
+ "num_tokens": 3850240.0,
465
+ "step": 470
466
+ },
467
+ {
468
+ "epoch": 0.16062913076215177,
469
+ "grad_norm": 1.234427809715271,
470
+ "learning_rate": 5.340022296544037e-06,
471
+ "loss": 0.0737,
472
+ "mean_token_accuracy": 0.9070327773690223,
473
+ "num_tokens": 3932160.0,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 0.16397557098636326,
478
+ "grad_norm": 1.022118091583252,
479
+ "learning_rate": 5.451505016722408e-06,
480
+ "loss": 0.0714,
481
+ "mean_token_accuracy": 0.9069349311292172,
482
+ "num_tokens": 4014080.0,
483
+ "step": 490
484
+ },
485
+ {
486
+ "epoch": 0.16732201121057474,
487
+ "grad_norm": 1.6332159042358398,
488
+ "learning_rate": 5.562987736900781e-06,
489
+ "loss": 0.075,
490
+ "step": 500
491
+ },
492
+ {
493
+ "epoch": 0.16732201121057474,
494
+ "eval_loss": 0.15604229271411896,
495
+ "eval_mean_token_accuracy": 0.9643613817813518,
496
+ "eval_num_tokens": 4096000.0,
497
+ "eval_runtime": 175.0619,
498
+ "eval_samples_per_second": 30.349,
499
+ "eval_steps_per_second": 1.902,
500
+ "step": 500
501
+ }
502
+ ],
503
+ "logging_steps": 10,
504
+ "max_steps": 8967,
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:3d4f6f13fea75164963245fb8d890903867d91777044058c6a0690e2ac12c8aa
3
+ size 6033
last-checkpoint/vocab.json ADDED
The diff for this file is too large to render. See raw diff