shulijia commited on
Commit
6dcd081
·
verified ·
1 Parent(s): fa1aa63

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:0b1514dec225c32796bf17ae91df1efbedff16770f87134536510c376db44f8a
3
+ size 2384234968
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a765662602eb6c8d8d6afedaada9b89aec6edb58bc83eb1f9fb8258b56a6dbf3
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:6fe2e9359a249bf536141cc2adaf29aafd6692034cb799b7811071fb4a8fa895
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.51013901288101,
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.010202780257620201,
14
+ "grad_norm": 260.24359130859375,
15
+ "learning_rate": 3.050847457627119e-07,
16
+ "loss": 2.0366,
17
+ "mean_token_accuracy": 0.30430528270080687,
18
+ "num_tokens": 81920.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.020405560515240402,
23
+ "grad_norm": 8.787101745605469,
24
+ "learning_rate": 6.440677966101695e-07,
25
+ "loss": 0.4795,
26
+ "mean_token_accuracy": 0.7842343423515559,
27
+ "num_tokens": 163840.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.030608340772860603,
32
+ "grad_norm": 2.546109914779663,
33
+ "learning_rate": 9.830508474576272e-07,
34
+ "loss": 0.2811,
35
+ "mean_token_accuracy": 0.7887230932712554,
36
+ "num_tokens": 245760.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.040811121030480804,
41
+ "grad_norm": 1.6891285181045532,
42
+ "learning_rate": 1.322033898305085e-06,
43
+ "loss": 0.2437,
44
+ "mean_token_accuracy": 0.7887108601629734,
45
+ "num_tokens": 327680.0,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.05101390128810101,
50
+ "grad_norm": 1.4003736972808838,
51
+ "learning_rate": 1.6610169491525424e-06,
52
+ "loss": 0.1967,
53
+ "mean_token_accuracy": 0.8213307205587626,
54
+ "num_tokens": 409600.0,
55
+ "step": 50
56
+ },
57
+ {
58
+ "epoch": 0.061216681545721206,
59
+ "grad_norm": 1.322206735610962,
60
+ "learning_rate": 2.0000000000000003e-06,
61
+ "loss": 0.1866,
62
+ "mean_token_accuracy": 0.8232754405587912,
63
+ "num_tokens": 491520.0,
64
+ "step": 60
65
+ },
66
+ {
67
+ "epoch": 0.07141946180334141,
68
+ "grad_norm": 1.0175601243972778,
69
+ "learning_rate": 2.338983050847458e-06,
70
+ "loss": 0.1857,
71
+ "mean_token_accuracy": 0.8193126220256091,
72
+ "num_tokens": 573440.0,
73
+ "step": 70
74
+ },
75
+ {
76
+ "epoch": 0.08162224206096161,
77
+ "grad_norm": 1.211675763130188,
78
+ "learning_rate": 2.6779661016949153e-06,
79
+ "loss": 0.2031,
80
+ "mean_token_accuracy": 0.8052103683352471,
81
+ "num_tokens": 655360.0,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.09182502231858182,
86
+ "grad_norm": 1.411903738975525,
87
+ "learning_rate": 3.0169491525423733e-06,
88
+ "loss": 0.1695,
89
+ "mean_token_accuracy": 0.8328277852386237,
90
+ "num_tokens": 737280.0,
91
+ "step": 90
92
+ },
93
+ {
94
+ "epoch": 0.10202780257620202,
95
+ "grad_norm": 1.1134300231933594,
96
+ "learning_rate": 3.3559322033898308e-06,
97
+ "loss": 0.1774,
98
+ "step": 100
99
+ },
100
+ {
101
+ "epoch": 0.10202780257620202,
102
+ "eval_loss": 0.3714689612388611,
103
+ "eval_mean_token_accuracy": 0.9218803294208071,
104
+ "eval_num_tokens": 819200.0,
105
+ "eval_runtime": 57.4295,
106
+ "eval_samples_per_second": 30.35,
107
+ "eval_steps_per_second": 1.898,
108
+ "step": 100
109
+ },
110
+ {
111
+ "epoch": 0.11223058283382222,
112
+ "grad_norm": 1.4475913047790527,
113
+ "learning_rate": 3.6949152542372883e-06,
114
+ "loss": 0.201,
115
+ "mean_token_accuracy": 0.8046171688474715,
116
+ "num_tokens": 901120.0,
117
+ "step": 110
118
+ },
119
+ {
120
+ "epoch": 0.12243336309144241,
121
+ "grad_norm": 1.349639892578125,
122
+ "learning_rate": 4.033898305084746e-06,
123
+ "loss": 0.1804,
124
+ "mean_token_accuracy": 0.837047453597188,
125
+ "num_tokens": 983040.0,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.13263614334906262,
130
+ "grad_norm": 1.417497158050537,
131
+ "learning_rate": 4.372881355932203e-06,
132
+ "loss": 0.1924,
133
+ "mean_token_accuracy": 0.8148605648428202,
134
+ "num_tokens": 1064960.0,
135
+ "step": 130
136
+ },
137
+ {
138
+ "epoch": 0.14283892360668282,
139
+ "grad_norm": 1.3936995267868042,
140
+ "learning_rate": 4.711864406779661e-06,
141
+ "loss": 0.163,
142
+ "mean_token_accuracy": 0.8406066499650479,
143
+ "num_tokens": 1146880.0,
144
+ "step": 140
145
+ },
146
+ {
147
+ "epoch": 0.15304170386430302,
148
+ "grad_norm": 1.44363534450531,
149
+ "learning_rate": 5.050847457627119e-06,
150
+ "loss": 0.1729,
151
+ "mean_token_accuracy": 0.8302715256810188,
152
+ "num_tokens": 1228800.0,
153
+ "step": 150
154
+ },
155
+ {
156
+ "epoch": 0.16324448412192322,
157
+ "grad_norm": 1.8258130550384521,
158
+ "learning_rate": 5.389830508474577e-06,
159
+ "loss": 0.2014,
160
+ "mean_token_accuracy": 0.8025073353201151,
161
+ "num_tokens": 1310720.0,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.17344726437954341,
166
+ "grad_norm": 1.1588246822357178,
167
+ "learning_rate": 5.728813559322034e-06,
168
+ "loss": 0.1443,
169
+ "mean_token_accuracy": 0.8415484335273504,
170
+ "num_tokens": 1392640.0,
171
+ "step": 170
172
+ },
173
+ {
174
+ "epoch": 0.18365004463716364,
175
+ "grad_norm": 1.254883050918579,
176
+ "learning_rate": 6.067796610169492e-06,
177
+ "loss": 0.1778,
178
+ "mean_token_accuracy": 0.8339163407683372,
179
+ "num_tokens": 1474560.0,
180
+ "step": 180
181
+ },
182
+ {
183
+ "epoch": 0.19385282489478384,
184
+ "grad_norm": 1.2132680416107178,
185
+ "learning_rate": 6.40677966101695e-06,
186
+ "loss": 0.1667,
187
+ "mean_token_accuracy": 0.8244251500815153,
188
+ "num_tokens": 1556480.0,
189
+ "step": 190
190
+ },
191
+ {
192
+ "epoch": 0.20405560515240403,
193
+ "grad_norm": 2.548218011856079,
194
+ "learning_rate": 6.745762711864408e-06,
195
+ "loss": 0.2145,
196
+ "step": 200
197
+ },
198
+ {
199
+ "epoch": 0.20405560515240403,
200
+ "eval_loss": 0.3642668128013611,
201
+ "eval_mean_token_accuracy": 0.9229242588401935,
202
+ "eval_num_tokens": 1638400.0,
203
+ "eval_runtime": 57.5623,
204
+ "eval_samples_per_second": 30.28,
205
+ "eval_steps_per_second": 1.894,
206
+ "step": 200
207
+ },
208
+ {
209
+ "epoch": 0.21425838541002423,
210
+ "grad_norm": 1.3910863399505615,
211
+ "learning_rate": 7.084745762711865e-06,
212
+ "loss": 0.1597,
213
+ "mean_token_accuracy": 0.8126651160418987,
214
+ "num_tokens": 1720320.0,
215
+ "step": 210
216
+ },
217
+ {
218
+ "epoch": 0.22446116566764443,
219
+ "grad_norm": 1.2566277980804443,
220
+ "learning_rate": 7.423728813559322e-06,
221
+ "loss": 0.2208,
222
+ "mean_token_accuracy": 0.7881604678928852,
223
+ "num_tokens": 1802240.0,
224
+ "step": 220
225
+ },
226
+ {
227
+ "epoch": 0.23466394592526463,
228
+ "grad_norm": 1.33622145652771,
229
+ "learning_rate": 7.76271186440678e-06,
230
+ "loss": 0.2035,
231
+ "mean_token_accuracy": 0.8045621320605278,
232
+ "num_tokens": 1884160.0,
233
+ "step": 230
234
+ },
235
+ {
236
+ "epoch": 0.24486672618288483,
237
+ "grad_norm": 1.836193323135376,
238
+ "learning_rate": 8.101694915254237e-06,
239
+ "loss": 0.214,
240
+ "mean_token_accuracy": 0.8097847364842892,
241
+ "num_tokens": 1966080.0,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.255069506440505,
246
+ "grad_norm": 1.4251341819763184,
247
+ "learning_rate": 8.440677966101696e-06,
248
+ "loss": 0.1803,
249
+ "mean_token_accuracy": 0.828669274225831,
250
+ "num_tokens": 2048000.0,
251
+ "step": 250
252
+ },
253
+ {
254
+ "epoch": 0.26527228669812525,
255
+ "grad_norm": 1.1287310123443604,
256
+ "learning_rate": 8.779661016949153e-06,
257
+ "loss": 0.1606,
258
+ "mean_token_accuracy": 0.8455479431897401,
259
+ "num_tokens": 2129920.0,
260
+ "step": 260
261
+ },
262
+ {
263
+ "epoch": 0.2754750669557454,
264
+ "grad_norm": 1.3048515319824219,
265
+ "learning_rate": 9.11864406779661e-06,
266
+ "loss": 0.192,
267
+ "mean_token_accuracy": 0.8095523472875357,
268
+ "num_tokens": 2211840.0,
269
+ "step": 270
270
+ },
271
+ {
272
+ "epoch": 0.28567784721336564,
273
+ "grad_norm": 1.205189824104309,
274
+ "learning_rate": 9.457627118644069e-06,
275
+ "loss": 0.1634,
276
+ "mean_token_accuracy": 0.8332681011408567,
277
+ "num_tokens": 2293760.0,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 0.29588062747098587,
282
+ "grad_norm": 1.1755797863006592,
283
+ "learning_rate": 9.796610169491526e-06,
284
+ "loss": 0.1732,
285
+ "mean_token_accuracy": 0.8340386509895324,
286
+ "num_tokens": 2375680.0,
287
+ "step": 290
288
+ },
289
+ {
290
+ "epoch": 0.30608340772860604,
291
+ "grad_norm": 0.934645414352417,
292
+ "learning_rate": 9.984894259818732e-06,
293
+ "loss": 0.1549,
294
+ "step": 300
295
+ },
296
+ {
297
+ "epoch": 0.30608340772860604,
298
+ "eval_loss": 0.3624379634857178,
299
+ "eval_mean_token_accuracy": 0.9229021159880751,
300
+ "eval_num_tokens": 2457600.0,
301
+ "eval_runtime": 57.7877,
302
+ "eval_samples_per_second": 30.162,
303
+ "eval_steps_per_second": 1.886,
304
+ "step": 300
305
+ },
306
+ {
307
+ "epoch": 0.31628618798622626,
308
+ "grad_norm": 1.1164205074310303,
309
+ "learning_rate": 9.947129909365559e-06,
310
+ "loss": 0.2037,
311
+ "mean_token_accuracy": 0.8229818981140852,
312
+ "num_tokens": 2539520.0,
313
+ "step": 310
314
+ },
315
+ {
316
+ "epoch": 0.32648896824384643,
317
+ "grad_norm": 1.6080290079116821,
318
+ "learning_rate": 9.909365558912388e-06,
319
+ "loss": 0.1655,
320
+ "mean_token_accuracy": 0.8383806247264147,
321
+ "num_tokens": 2621440.0,
322
+ "step": 320
323
+ },
324
+ {
325
+ "epoch": 0.33669174850146666,
326
+ "grad_norm": 1.7296229600906372,
327
+ "learning_rate": 9.871601208459214e-06,
328
+ "loss": 0.1692,
329
+ "mean_token_accuracy": 0.8398361042141914,
330
+ "num_tokens": 2703360.0,
331
+ "step": 330
332
+ },
333
+ {
334
+ "epoch": 0.34689452875908683,
335
+ "grad_norm": 1.560202956199646,
336
+ "learning_rate": 9.833836858006043e-06,
337
+ "loss": 0.1634,
338
+ "mean_token_accuracy": 0.8469789601862431,
339
+ "num_tokens": 2785280.0,
340
+ "step": 340
341
+ },
342
+ {
343
+ "epoch": 0.35709730901670705,
344
+ "grad_norm": 1.3795727491378784,
345
+ "learning_rate": 9.79607250755287e-06,
346
+ "loss": 0.1855,
347
+ "mean_token_accuracy": 0.8138087071478367,
348
+ "num_tokens": 2867200.0,
349
+ "step": 350
350
+ },
351
+ {
352
+ "epoch": 0.3673000892743273,
353
+ "grad_norm": 1.2756742238998413,
354
+ "learning_rate": 9.758308157099698e-06,
355
+ "loss": 0.1718,
356
+ "mean_token_accuracy": 0.8184319950640202,
357
+ "num_tokens": 2949120.0,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 0.37750286953194745,
362
+ "grad_norm": 1.400534987449646,
363
+ "learning_rate": 9.720543806646527e-06,
364
+ "loss": 0.1952,
365
+ "mean_token_accuracy": 0.8136619333177805,
366
+ "num_tokens": 3031040.0,
367
+ "step": 370
368
+ },
369
+ {
370
+ "epoch": 0.3877056497895677,
371
+ "grad_norm": 1.342689871788025,
372
+ "learning_rate": 9.682779456193354e-06,
373
+ "loss": 0.1788,
374
+ "mean_token_accuracy": 0.8290117412805558,
375
+ "num_tokens": 3112960.0,
376
+ "step": 380
377
+ },
378
+ {
379
+ "epoch": 0.39790843004718784,
380
+ "grad_norm": 1.3245270252227783,
381
+ "learning_rate": 9.645015105740182e-06,
382
+ "loss": 0.1873,
383
+ "mean_token_accuracy": 0.7956702545285225,
384
+ "num_tokens": 3194880.0,
385
+ "step": 390
386
+ },
387
+ {
388
+ "epoch": 0.40811121030480807,
389
+ "grad_norm": 1.291096568107605,
390
+ "learning_rate": 9.60725075528701e-06,
391
+ "loss": 0.1787,
392
+ "step": 400
393
+ },
394
+ {
395
+ "epoch": 0.40811121030480807,
396
+ "eval_loss": 0.36029601097106934,
397
+ "eval_mean_token_accuracy": 0.923489727558346,
398
+ "eval_num_tokens": 3276800.0,
399
+ "eval_runtime": 57.908,
400
+ "eval_samples_per_second": 30.099,
401
+ "eval_steps_per_second": 1.882,
402
+ "step": 400
403
+ },
404
+ {
405
+ "epoch": 0.41831399056242824,
406
+ "grad_norm": 1.3212350606918335,
407
+ "learning_rate": 9.569486404833838e-06,
408
+ "loss": 0.1496,
409
+ "mean_token_accuracy": 0.8377201575785875,
410
+ "num_tokens": 3358720.0,
411
+ "step": 410
412
+ },
413
+ {
414
+ "epoch": 0.42851677082004846,
415
+ "grad_norm": 1.523993730545044,
416
+ "learning_rate": 9.531722054380666e-06,
417
+ "loss": 0.1641,
418
+ "mean_token_accuracy": 0.8505503918975592,
419
+ "num_tokens": 3440640.0,
420
+ "step": 420
421
+ },
422
+ {
423
+ "epoch": 0.4387195510776687,
424
+ "grad_norm": 1.156558871269226,
425
+ "learning_rate": 9.493957703927493e-06,
426
+ "loss": 0.1888,
427
+ "mean_token_accuracy": 0.8096257328987122,
428
+ "num_tokens": 3522560.0,
429
+ "step": 430
430
+ },
431
+ {
432
+ "epoch": 0.44892233133528886,
433
+ "grad_norm": 1.5226343870162964,
434
+ "learning_rate": 9.456193353474322e-06,
435
+ "loss": 0.2161,
436
+ "mean_token_accuracy": 0.7928326830267907,
437
+ "num_tokens": 3604480.0,
438
+ "step": 440
439
+ },
440
+ {
441
+ "epoch": 0.4591251115929091,
442
+ "grad_norm": 1.3767129182815552,
443
+ "learning_rate": 9.418429003021148e-06,
444
+ "loss": 0.1528,
445
+ "mean_token_accuracy": 0.8581580229103565,
446
+ "num_tokens": 3686400.0,
447
+ "step": 450
448
+ },
449
+ {
450
+ "epoch": 0.46932789185052926,
451
+ "grad_norm": 1.1373906135559082,
452
+ "learning_rate": 9.380664652567977e-06,
453
+ "loss": 0.184,
454
+ "mean_token_accuracy": 0.830980920791626,
455
+ "num_tokens": 3768320.0,
456
+ "step": 460
457
+ },
458
+ {
459
+ "epoch": 0.4795306721081495,
460
+ "grad_norm": 1.0881078243255615,
461
+ "learning_rate": 9.342900302114804e-06,
462
+ "loss": 0.1923,
463
+ "mean_token_accuracy": 0.7920254383236169,
464
+ "num_tokens": 3850240.0,
465
+ "step": 470
466
+ },
467
+ {
468
+ "epoch": 0.48973345236576965,
469
+ "grad_norm": 1.3152629137039185,
470
+ "learning_rate": 9.305135951661632e-06,
471
+ "loss": 0.1833,
472
+ "mean_token_accuracy": 0.8362769082188606,
473
+ "num_tokens": 3932160.0,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 0.4999362326233899,
478
+ "grad_norm": 1.1821073293685913,
479
+ "learning_rate": 9.267371601208461e-06,
480
+ "loss": 0.1611,
481
+ "mean_token_accuracy": 0.8425269067287445,
482
+ "num_tokens": 4014080.0,
483
+ "step": 490
484
+ },
485
+ {
486
+ "epoch": 0.51013901288101,
487
+ "grad_norm": 1.365282654762268,
488
+ "learning_rate": 9.229607250755288e-06,
489
+ "loss": 0.1787,
490
+ "step": 500
491
+ },
492
+ {
493
+ "epoch": 0.51013901288101,
494
+ "eval_loss": 0.35945412516593933,
495
+ "eval_mean_token_accuracy": 0.9235786708123094,
496
+ "eval_num_tokens": 4096000.0,
497
+ "eval_runtime": 57.395,
498
+ "eval_samples_per_second": 30.369,
499
+ "eval_steps_per_second": 1.899,
500
+ "step": 500
501
+ }
502
+ ],
503
+ "logging_steps": 10,
504
+ "max_steps": 2943,
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:172844cfd333cb12c6a26bee28a1060180c6bc8496b23d34e22af21beda70dc8
3
+ size 6097
last-checkpoint/vocab.json ADDED
The diff for this file is too large to render. See raw diff