shulijia commited on
Commit
db475f0
·
verified ·
1 Parent(s): 9623c93

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:f4f5d6d88a0e413748b8b3c5d48ffbea60eac06f86956a8e64d18bc171212e24
3
+ size 2384234968
last-checkpoint/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e60235e199813f24de8d00342d55ded11c4aa787cb4f3f7c19238310ec942c02
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:480389ce7f683504c393112df2c8045b3bbba2e7bfbed923d3dbd1ed09e2f087
3
+ size 14645
last-checkpoint/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72f1a554a7d63eaa7f3dc5d08c7c6817aa6f6251549a335627b56fecedbc6007
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": 1.7924697445091886,
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.03585835948005379,
14
+ "grad_norm": 34.27314758300781,
15
+ "learning_rate": 1.0714285714285714e-06,
16
+ "loss": 1.4637,
17
+ "mean_token_accuracy": 0.4938111540861428,
18
+ "num_tokens": 81920.0,
19
+ "step": 10
20
+ },
21
+ {
22
+ "epoch": 0.07171671896010758,
23
+ "grad_norm": 1.971604824066162,
24
+ "learning_rate": 2.261904761904762e-06,
25
+ "loss": 0.1837,
26
+ "mean_token_accuracy": 0.9105430521070957,
27
+ "num_tokens": 163840.0,
28
+ "step": 20
29
+ },
30
+ {
31
+ "epoch": 0.10757507844016136,
32
+ "grad_norm": 1.5035161972045898,
33
+ "learning_rate": 3.4523809523809528e-06,
34
+ "loss": 0.1305,
35
+ "mean_token_accuracy": 0.9200097851455211,
36
+ "num_tokens": 245760.0,
37
+ "step": 30
38
+ },
39
+ {
40
+ "epoch": 0.14343343792021515,
41
+ "grad_norm": 1.1470725536346436,
42
+ "learning_rate": 4.642857142857144e-06,
43
+ "loss": 0.1138,
44
+ "mean_token_accuracy": 0.9211227975785732,
45
+ "num_tokens": 327680.0,
46
+ "step": 40
47
+ },
48
+ {
49
+ "epoch": 0.17929179740026893,
50
+ "grad_norm": 1.1298787593841553,
51
+ "learning_rate": 5.833333333333334e-06,
52
+ "loss": 0.1148,
53
+ "mean_token_accuracy": 0.9197896286845207,
54
+ "num_tokens": 409600.0,
55
+ "step": 50
56
+ },
57
+ {
58
+ "epoch": 0.2151501568803227,
59
+ "grad_norm": 1.5979156494140625,
60
+ "learning_rate": 7.023809523809524e-06,
61
+ "loss": 0.1095,
62
+ "mean_token_accuracy": 0.9236179046332836,
63
+ "num_tokens": 491520.0,
64
+ "step": 60
65
+ },
66
+ {
67
+ "epoch": 0.2510085163603765,
68
+ "grad_norm": 1.0988255739212036,
69
+ "learning_rate": 8.214285714285714e-06,
70
+ "loss": 0.1169,
71
+ "mean_token_accuracy": 0.9196917824447155,
72
+ "num_tokens": 573440.0,
73
+ "step": 70
74
+ },
75
+ {
76
+ "epoch": 0.2868668758404303,
77
+ "grad_norm": 1.3338724374771118,
78
+ "learning_rate": 9.404761904761905e-06,
79
+ "loss": 0.1143,
80
+ "mean_token_accuracy": 0.9212451063096523,
81
+ "num_tokens": 655360.0,
82
+ "step": 80
83
+ },
84
+ {
85
+ "epoch": 0.3227252353204841,
86
+ "grad_norm": 1.4455316066741943,
87
+ "learning_rate": 9.933598937583003e-06,
88
+ "loss": 0.0983,
89
+ "mean_token_accuracy": 0.9258806258440018,
90
+ "num_tokens": 737280.0,
91
+ "step": 90
92
+ },
93
+ {
94
+ "epoch": 0.35858359480053786,
95
+ "grad_norm": 0.9065784215927124,
96
+ "learning_rate": 9.800796812749004e-06,
97
+ "loss": 0.102,
98
+ "step": 100
99
+ },
100
+ {
101
+ "epoch": 0.35858359480053786,
102
+ "eval_loss": 0.20674440264701843,
103
+ "eval_mean_token_accuracy": 0.9613424020428811,
104
+ "eval_num_tokens": 819200.0,
105
+ "eval_runtime": 16.3158,
106
+ "eval_samples_per_second": 30.4,
107
+ "eval_steps_per_second": 1.9,
108
+ "step": 100
109
+ },
110
+ {
111
+ "epoch": 0.39444195428059164,
112
+ "grad_norm": 1.0492079257965088,
113
+ "learning_rate": 9.667994687915008e-06,
114
+ "loss": 0.1034,
115
+ "mean_token_accuracy": 0.9230185877531767,
116
+ "num_tokens": 901120.0,
117
+ "step": 110
118
+ },
119
+ {
120
+ "epoch": 0.4303003137606454,
121
+ "grad_norm": 1.6536624431610107,
122
+ "learning_rate": 9.535192563081011e-06,
123
+ "loss": 0.1002,
124
+ "mean_token_accuracy": 0.923434441536665,
125
+ "num_tokens": 983040.0,
126
+ "step": 120
127
+ },
128
+ {
129
+ "epoch": 0.46615867324069926,
130
+ "grad_norm": 1.1484298706054688,
131
+ "learning_rate": 9.402390438247013e-06,
132
+ "loss": 0.1058,
133
+ "mean_token_accuracy": 0.9229941286146641,
134
+ "num_tokens": 1064960.0,
135
+ "step": 130
136
+ },
137
+ {
138
+ "epoch": 0.502017032720753,
139
+ "grad_norm": 1.4916162490844727,
140
+ "learning_rate": 9.269588313413015e-06,
141
+ "loss": 0.1009,
142
+ "mean_token_accuracy": 0.9243762232363224,
143
+ "num_tokens": 1146880.0,
144
+ "step": 140
145
+ },
146
+ {
147
+ "epoch": 0.5378753922008068,
148
+ "grad_norm": 0.8371472358703613,
149
+ "learning_rate": 9.136786188579018e-06,
150
+ "loss": 0.0994,
151
+ "mean_token_accuracy": 0.9255259282886982,
152
+ "num_tokens": 1228800.0,
153
+ "step": 150
154
+ },
155
+ {
156
+ "epoch": 0.5737337516808606,
157
+ "grad_norm": 1.047681450843811,
158
+ "learning_rate": 9.00398406374502e-06,
159
+ "loss": 0.0947,
160
+ "mean_token_accuracy": 0.92612524330616,
161
+ "num_tokens": 1310720.0,
162
+ "step": 160
163
+ },
164
+ {
165
+ "epoch": 0.6095921111609144,
166
+ "grad_norm": 1.0631628036499023,
167
+ "learning_rate": 8.871181938911023e-06,
168
+ "loss": 0.0935,
169
+ "mean_token_accuracy": 0.92897504940629,
170
+ "num_tokens": 1392640.0,
171
+ "step": 170
172
+ },
173
+ {
174
+ "epoch": 0.6454504706409682,
175
+ "grad_norm": 1.6005651950836182,
176
+ "learning_rate": 8.738379814077027e-06,
177
+ "loss": 0.1077,
178
+ "mean_token_accuracy": 0.9225171200931073,
179
+ "num_tokens": 1474560.0,
180
+ "step": 180
181
+ },
182
+ {
183
+ "epoch": 0.681308830121022,
184
+ "grad_norm": 1.3261204957962036,
185
+ "learning_rate": 8.605577689243028e-06,
186
+ "loss": 0.1061,
187
+ "mean_token_accuracy": 0.924278375506401,
188
+ "num_tokens": 1556480.0,
189
+ "step": 190
190
+ },
191
+ {
192
+ "epoch": 0.7171671896010757,
193
+ "grad_norm": 1.008877158164978,
194
+ "learning_rate": 8.472775564409032e-06,
195
+ "loss": 0.0976,
196
+ "step": 200
197
+ },
198
+ {
199
+ "epoch": 0.7171671896010757,
200
+ "eval_loss": 0.19721779227256775,
201
+ "eval_mean_token_accuracy": 0.9629048070599956,
202
+ "eval_num_tokens": 1638400.0,
203
+ "eval_runtime": 16.3561,
204
+ "eval_samples_per_second": 30.325,
205
+ "eval_steps_per_second": 1.895,
206
+ "step": 200
207
+ },
208
+ {
209
+ "epoch": 0.7530255490811295,
210
+ "grad_norm": 0.883868396282196,
211
+ "learning_rate": 8.339973439575035e-06,
212
+ "loss": 0.1057,
213
+ "mean_token_accuracy": 0.9233732834458351,
214
+ "num_tokens": 1720320.0,
215
+ "step": 210
216
+ },
217
+ {
218
+ "epoch": 0.7888839085611833,
219
+ "grad_norm": 1.525195598602295,
220
+ "learning_rate": 8.207171314741037e-06,
221
+ "loss": 0.0989,
222
+ "mean_token_accuracy": 0.9242783725261688,
223
+ "num_tokens": 1802240.0,
224
+ "step": 220
225
+ },
226
+ {
227
+ "epoch": 0.8247422680412371,
228
+ "grad_norm": 1.3191965818405151,
229
+ "learning_rate": 8.074369189907039e-06,
230
+ "loss": 0.098,
231
+ "mean_token_accuracy": 0.9269080244004726,
232
+ "num_tokens": 1884160.0,
233
+ "step": 230
234
+ },
235
+ {
236
+ "epoch": 0.8606006275212909,
237
+ "grad_norm": 1.0714839696884155,
238
+ "learning_rate": 7.941567065073042e-06,
239
+ "loss": 0.094,
240
+ "mean_token_accuracy": 0.9265777908265591,
241
+ "num_tokens": 1966080.0,
242
+ "step": 240
243
+ },
244
+ {
245
+ "epoch": 0.8964589870013447,
246
+ "grad_norm": 0.9984266757965088,
247
+ "learning_rate": 7.808764940239044e-06,
248
+ "loss": 0.0977,
249
+ "mean_token_accuracy": 0.9248776882886887,
250
+ "num_tokens": 2048000.0,
251
+ "step": 250
252
+ },
253
+ {
254
+ "epoch": 0.9323173464813985,
255
+ "grad_norm": 2.015933036804199,
256
+ "learning_rate": 7.675962815405047e-06,
257
+ "loss": 0.1066,
258
+ "mean_token_accuracy": 0.9215386480093002,
259
+ "num_tokens": 2129920.0,
260
+ "step": 260
261
+ },
262
+ {
263
+ "epoch": 0.9681757059614523,
264
+ "grad_norm": 1.067070722579956,
265
+ "learning_rate": 7.54316069057105e-06,
266
+ "loss": 0.0929,
267
+ "mean_token_accuracy": 0.9263820938766003,
268
+ "num_tokens": 2211840.0,
269
+ "step": 270
270
+ },
271
+ {
272
+ "epoch": 1.0035858359480054,
273
+ "grad_norm": 1.1101266145706177,
274
+ "learning_rate": 7.410358565737052e-06,
275
+ "loss": 0.0965,
276
+ "mean_token_accuracy": 0.9286457428449317,
277
+ "num_tokens": 2292224.0,
278
+ "step": 280
279
+ },
280
+ {
281
+ "epoch": 1.039444195428059,
282
+ "grad_norm": 1.0757286548614502,
283
+ "learning_rate": 7.277556440903056e-06,
284
+ "loss": 0.0869,
285
+ "mean_token_accuracy": 0.9264065511524677,
286
+ "num_tokens": 2374144.0,
287
+ "step": 290
288
+ },
289
+ {
290
+ "epoch": 1.075302554908113,
291
+ "grad_norm": 1.1019095182418823,
292
+ "learning_rate": 7.144754316069058e-06,
293
+ "loss": 0.0879,
294
+ "step": 300
295
+ },
296
+ {
297
+ "epoch": 1.075302554908113,
298
+ "eval_loss": 0.1915178894996643,
299
+ "eval_mean_token_accuracy": 0.9640371549514032,
300
+ "eval_num_tokens": 2456064.0,
301
+ "eval_runtime": 16.505,
302
+ "eval_samples_per_second": 30.051,
303
+ "eval_steps_per_second": 1.878,
304
+ "step": 300
305
+ },
306
+ {
307
+ "epoch": 1.1111609143881667,
308
+ "grad_norm": 1.0466500520706177,
309
+ "learning_rate": 7.011952191235061e-06,
310
+ "loss": 0.0879,
311
+ "mean_token_accuracy": 0.9255442745983601,
312
+ "num_tokens": 2537984.0,
313
+ "step": 310
314
+ },
315
+ {
316
+ "epoch": 1.1470192738682206,
317
+ "grad_norm": 1.2108771800994873,
318
+ "learning_rate": 6.879150066401063e-06,
319
+ "loss": 0.0839,
320
+ "mean_token_accuracy": 0.9280210368335247,
321
+ "num_tokens": 2619904.0,
322
+ "step": 320
323
+ },
324
+ {
325
+ "epoch": 1.1828776333482742,
326
+ "grad_norm": 1.227398157119751,
327
+ "learning_rate": 6.746347941567065e-06,
328
+ "loss": 0.0873,
329
+ "mean_token_accuracy": 0.9268346399068832,
330
+ "num_tokens": 2701824.0,
331
+ "step": 330
332
+ },
333
+ {
334
+ "epoch": 1.2187359928283281,
335
+ "grad_norm": 1.1710433959960938,
336
+ "learning_rate": 6.613545816733068e-06,
337
+ "loss": 0.0864,
338
+ "mean_token_accuracy": 0.9291829705238343,
339
+ "num_tokens": 2783744.0,
340
+ "step": 340
341
+ },
342
+ {
343
+ "epoch": 1.254594352308382,
344
+ "grad_norm": 0.7288998961448669,
345
+ "learning_rate": 6.480743691899071e-06,
346
+ "loss": 0.0832,
347
+ "mean_token_accuracy": 0.9274461828172207,
348
+ "num_tokens": 2865664.0,
349
+ "step": 350
350
+ },
351
+ {
352
+ "epoch": 1.2904527117884357,
353
+ "grad_norm": 0.9756599068641663,
354
+ "learning_rate": 6.347941567065074e-06,
355
+ "loss": 0.0877,
356
+ "mean_token_accuracy": 0.9264799416065216,
357
+ "num_tokens": 2947584.0,
358
+ "step": 360
359
+ },
360
+ {
361
+ "epoch": 1.3263110712684893,
362
+ "grad_norm": 0.8574710488319397,
363
+ "learning_rate": 6.215139442231076e-06,
364
+ "loss": 0.0834,
365
+ "mean_token_accuracy": 0.9264310173690319,
366
+ "num_tokens": 3029504.0,
367
+ "step": 370
368
+ },
369
+ {
370
+ "epoch": 1.3621694307485432,
371
+ "grad_norm": 0.8161070346832275,
372
+ "learning_rate": 6.082337317397079e-06,
373
+ "loss": 0.0905,
374
+ "mean_token_accuracy": 0.9243517585098744,
375
+ "num_tokens": 3111424.0,
376
+ "step": 380
377
+ },
378
+ {
379
+ "epoch": 1.3980277902285971,
380
+ "grad_norm": 1.0958417654037476,
381
+ "learning_rate": 5.949535192563081e-06,
382
+ "loss": 0.0887,
383
+ "mean_token_accuracy": 0.9284735769033432,
384
+ "num_tokens": 3193344.0,
385
+ "step": 390
386
+ },
387
+ {
388
+ "epoch": 1.4338861497086508,
389
+ "grad_norm": 1.1335010528564453,
390
+ "learning_rate": 5.816733067729085e-06,
391
+ "loss": 0.0866,
392
+ "step": 400
393
+ },
394
+ {
395
+ "epoch": 1.4338861497086508,
396
+ "eval_loss": 0.18865975737571716,
397
+ "eval_mean_token_accuracy": 0.96484992196483,
398
+ "eval_num_tokens": 3275264.0,
399
+ "eval_runtime": 16.4332,
400
+ "eval_samples_per_second": 30.183,
401
+ "eval_steps_per_second": 1.886,
402
+ "step": 400
403
+ },
404
+ {
405
+ "epoch": 1.4697445091887047,
406
+ "grad_norm": 1.3601367473602295,
407
+ "learning_rate": 5.683930942895087e-06,
408
+ "loss": 0.0831,
409
+ "mean_token_accuracy": 0.9286631602793932,
410
+ "num_tokens": 3357184.0,
411
+ "step": 410
412
+ },
413
+ {
414
+ "epoch": 1.5056028686687584,
415
+ "grad_norm": 1.1618033647537231,
416
+ "learning_rate": 5.551128818061089e-06,
417
+ "loss": 0.0808,
418
+ "mean_token_accuracy": 0.9301369853317738,
419
+ "num_tokens": 3439104.0,
420
+ "step": 420
421
+ },
422
+ {
423
+ "epoch": 1.5414612281488123,
424
+ "grad_norm": 0.935874879360199,
425
+ "learning_rate": 5.418326693227092e-06,
426
+ "loss": 0.09,
427
+ "mean_token_accuracy": 0.9258806236088276,
428
+ "num_tokens": 3521024.0,
429
+ "step": 430
430
+ },
431
+ {
432
+ "epoch": 1.577319587628866,
433
+ "grad_norm": 0.919820249080658,
434
+ "learning_rate": 5.285524568393094e-06,
435
+ "loss": 0.0851,
436
+ "mean_token_accuracy": 0.9262475587427617,
437
+ "num_tokens": 3602944.0,
438
+ "step": 440
439
+ },
440
+ {
441
+ "epoch": 1.6131779471089198,
442
+ "grad_norm": 1.010582447052002,
443
+ "learning_rate": 5.152722443559097e-06,
444
+ "loss": 0.0897,
445
+ "mean_token_accuracy": 0.925966241210699,
446
+ "num_tokens": 3684864.0,
447
+ "step": 450
448
+ },
449
+ {
450
+ "epoch": 1.6490363065889735,
451
+ "grad_norm": 1.0693650245666504,
452
+ "learning_rate": 5.0199203187251e-06,
453
+ "loss": 0.0854,
454
+ "mean_token_accuracy": 0.9283757336437702,
455
+ "num_tokens": 3766784.0,
456
+ "step": 460
457
+ },
458
+ {
459
+ "epoch": 1.6848946660690274,
460
+ "grad_norm": 1.615464448928833,
461
+ "learning_rate": 4.887118193891103e-06,
462
+ "loss": 0.0841,
463
+ "mean_token_accuracy": 0.927409490197897,
464
+ "num_tokens": 3848704.0,
465
+ "step": 470
466
+ },
467
+ {
468
+ "epoch": 1.7207530255490813,
469
+ "grad_norm": 1.1889654397964478,
470
+ "learning_rate": 4.754316069057105e-06,
471
+ "loss": 0.0863,
472
+ "mean_token_accuracy": 0.9249755389988422,
473
+ "num_tokens": 3930624.0,
474
+ "step": 480
475
+ },
476
+ {
477
+ "epoch": 1.756611385029135,
478
+ "grad_norm": 1.2814576625823975,
479
+ "learning_rate": 4.621513944223108e-06,
480
+ "loss": 0.0848,
481
+ "mean_token_accuracy": 0.9265410959720611,
482
+ "num_tokens": 4012544.0,
483
+ "step": 490
484
+ },
485
+ {
486
+ "epoch": 1.7924697445091886,
487
+ "grad_norm": 1.200701117515564,
488
+ "learning_rate": 4.4887118193891105e-06,
489
+ "loss": 0.0856,
490
+ "step": 500
491
+ },
492
+ {
493
+ "epoch": 1.7924697445091886,
494
+ "eval_loss": 0.1854122281074524,
495
+ "eval_mean_token_accuracy": 0.9655364328815091,
496
+ "eval_num_tokens": 4094464.0,
497
+ "eval_runtime": 16.4158,
498
+ "eval_samples_per_second": 30.215,
499
+ "eval_steps_per_second": 1.888,
500
+ "step": 500
501
+ }
502
+ ],
503
+ "logging_steps": 10,
504
+ "max_steps": 837,
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.0820868850581504e+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:f4257d78e9f1443177ac1c65b362853a70e0ff7b90ad352985f25f3d5cac4207
3
+ size 6097
last-checkpoint/vocab.json ADDED
The diff for this file is too large to render. See raw diff