fengyao1909 commited on
Commit
96eb3fe
·
verified ·
1 Parent(s): 8948d70

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip 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
 
 
33
  *.zip 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
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
+ }
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 %}
config.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3MoeForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "decoder_sparse_step": 1,
9
+ "eos_token_id": 151643,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 6144,
15
+ "max_position_embeddings": 32768,
16
+ "max_window_layers": 48,
17
+ "mlp_only_layers": [],
18
+ "model_type": "qwen3_moe",
19
+ "moe_intermediate_size": 768,
20
+ "norm_topk_prob": true,
21
+ "num_attention_heads": 32,
22
+ "num_experts": 128,
23
+ "num_experts_per_tok": 8,
24
+ "num_hidden_layers": 48,
25
+ "num_key_value_heads": 4,
26
+ "output_router_logits": false,
27
+ "rms_norm_eps": 1e-06,
28
+ "rope_scaling": null,
29
+ "rope_theta": 1000000.0,
30
+ "router_aux_loss_coef": 0.001,
31
+ "sliding_window": null,
32
+ "tie_word_embeddings": false,
33
+ "torch_dtype": "bfloat16",
34
+ "transformers_version": "4.52.0.dev0",
35
+ "use_cache": false,
36
+ "use_sliding_window": false,
37
+ "vocab_size": 151936
38
+ }
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.0.dev0"
6
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7318717ed1c68f510acb89d11ae502dabd001336fb37b2003a390ce9c23a510f
3
+ size 4997184968
model-00002-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07b9c4aa21e6b93889b63f5f295e5c9c98cf69c89a8fcf3915e49df2cdbd1a17
3
+ size 4997741608
model-00003-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4c9ac72c33c43c9a22245eacca6b7267d12b95162e499f91ca3c1a4304aaf40
3
+ size 4997742208
model-00004-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ec2778a4028a52340257c07f98b931245834bdeb38122b87790426530ed925a
3
+ size 4997743184
model-00005-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00ade347e400de480233e0e3ba081d238ab928e972915ab188c728ebf9908ee5
3
+ size 4997743184
model-00006-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d23b217d55b7573b7f4dd169ffc3ba505a83f7de1af5b6e438d1559c4f7e2755
3
+ size 4997743184
model-00007-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2c04ef8d4a6ae077862d301f613d61154d76480ee39ad9b8db0e0837e2bc1ca
3
+ size 4997743184
model-00008-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e2abb61e95606c9adfb877502b35502f93ae74cb295aaa241cf8505f4218b35
3
+ size 4997743184
model-00009-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:959e584d6913b374e7713cab56c03a218d6615a25be784c837b4ce09e19733dd
3
+ size 4997743184
model-00010-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f59c6b0849da35b2da0162a1f69f65f02f89abd94b7ebd8b0be0987f15f047d7
3
+ size 4997743184
model-00011-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cf3d1a5ead3dd9fa1c66c61b341cdf720ea0f4e3488f0ff70db6ea17cc3eac2
3
+ size 4997743184
model-00012-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55458f62a98149ffd9fa873d2b36577d5cb5d499bbf155a45ca2585850860849
3
+ size 4997743184
model-00013-of-00013.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac8f7e099be720ee726b9db90150c3d229e459a3807cd2f234e9c4a2ce938002
3
+ size 1094220288
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
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": "<|im_end|>",
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
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
trainer_state.json ADDED
@@ -0,0 +1,1133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.3333333333333333,
6
+ "eval_steps": 500,
7
+ "global_step": 157,
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.0021231422505307855,
14
+ "grad_norm": 6.233692311689662,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.3677,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.004246284501061571,
21
+ "grad_norm": 6.036329344230565,
22
+ "learning_rate": 1.2499999999999999e-06,
23
+ "loss": 1.4092,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.006369426751592357,
28
+ "grad_norm": 6.056066195237692,
29
+ "learning_rate": 2.4999999999999998e-06,
30
+ "loss": 1.3995,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.008492569002123142,
35
+ "grad_norm": 5.922965787004136,
36
+ "learning_rate": 3.75e-06,
37
+ "loss": 1.3975,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.010615711252653927,
42
+ "grad_norm": 5.286633700836792,
43
+ "learning_rate": 4.9999999999999996e-06,
44
+ "loss": 1.3654,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.012738853503184714,
49
+ "grad_norm": 4.272128958690016,
50
+ "learning_rate": 6.25e-06,
51
+ "loss": 1.357,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.014861995753715499,
56
+ "grad_norm": 3.3415834474393087,
57
+ "learning_rate": 7.5e-06,
58
+ "loss": 1.2136,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.016985138004246284,
63
+ "grad_norm": 2.97877807094389,
64
+ "learning_rate": 8.750000000000001e-06,
65
+ "loss": 1.2796,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.01910828025477707,
70
+ "grad_norm": 2.871670675310436,
71
+ "learning_rate": 9.999999999999999e-06,
72
+ "loss": 1.2221,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.021231422505307854,
77
+ "grad_norm": 3.328688346998038,
78
+ "learning_rate": 1.125e-05,
79
+ "loss": 1.2234,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.02335456475583864,
84
+ "grad_norm": 2.803564933108231,
85
+ "learning_rate": 1.25e-05,
86
+ "loss": 1.1813,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.025477707006369428,
91
+ "grad_norm": 2.6965733342170646,
92
+ "learning_rate": 1.375e-05,
93
+ "loss": 1.1396,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.027600849256900213,
98
+ "grad_norm": 3.096481749634196,
99
+ "learning_rate": 1.5e-05,
100
+ "loss": 1.2022,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.029723991507430998,
105
+ "grad_norm": 2.274249270127275,
106
+ "learning_rate": 1.625e-05,
107
+ "loss": 1.1202,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.03184713375796178,
112
+ "grad_norm": 3.884266388124913,
113
+ "learning_rate": 1.7500000000000002e-05,
114
+ "loss": 1.1371,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.03397027600849257,
119
+ "grad_norm": 1.6993184946564164,
120
+ "learning_rate": 1.8750000000000002e-05,
121
+ "loss": 1.1044,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.036093418259023353,
126
+ "grad_norm": 1.3282225362466542,
127
+ "learning_rate": 1.9999999999999998e-05,
128
+ "loss": 1.0696,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.03821656050955414,
133
+ "grad_norm": 1.2132093388653153,
134
+ "learning_rate": 2.125e-05,
135
+ "loss": 1.0457,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.040339702760084924,
140
+ "grad_norm": 1.2631509255285398,
141
+ "learning_rate": 2.25e-05,
142
+ "loss": 1.0374,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.04246284501061571,
147
+ "grad_norm": 1.194394279683961,
148
+ "learning_rate": 2.3749999999999998e-05,
149
+ "loss": 0.9467,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.044585987261146494,
154
+ "grad_norm": 1.098708611169601,
155
+ "learning_rate": 2.5e-05,
156
+ "loss": 1.0645,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.04670912951167728,
161
+ "grad_norm": 1.0283648174128268,
162
+ "learning_rate": 2.625e-05,
163
+ "loss": 1.0394,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.04883227176220807,
168
+ "grad_norm": 0.9732861680373749,
169
+ "learning_rate": 2.75e-05,
170
+ "loss": 0.9515,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.050955414012738856,
175
+ "grad_norm": 1.017693167952402,
176
+ "learning_rate": 2.875e-05,
177
+ "loss": 0.9749,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.05307855626326964,
182
+ "grad_norm": 1.1330379055126547,
183
+ "learning_rate": 3e-05,
184
+ "loss": 1.0073,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.055201698513800426,
189
+ "grad_norm": 1.0745948466977544,
190
+ "learning_rate": 2.9999629537566803e-05,
191
+ "loss": 1.0051,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.05732484076433121,
196
+ "grad_norm": 0.8795447467848742,
197
+ "learning_rate": 2.9998518168566207e-05,
198
+ "loss": 1.0527,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.059447983014861996,
203
+ "grad_norm": 1.1167437998178333,
204
+ "learning_rate": 2.999666594789427e-05,
205
+ "loss": 1.0584,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.06157112526539278,
210
+ "grad_norm": 1.0126995680355033,
211
+ "learning_rate": 2.999407296704142e-05,
212
+ "loss": 1.0291,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.06369426751592357,
217
+ "grad_norm": 0.8834749944368594,
218
+ "learning_rate": 2.9990739354087918e-05,
219
+ "loss": 1.0342,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.06581740976645435,
224
+ "grad_norm": 0.980242387134944,
225
+ "learning_rate": 2.9986665273697548e-05,
226
+ "loss": 1.0209,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.06794055201698514,
231
+ "grad_norm": 0.8415998788153699,
232
+ "learning_rate": 2.9981850927109472e-05,
233
+ "loss": 1.0274,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.07006369426751592,
238
+ "grad_norm": 0.9010169241333265,
239
+ "learning_rate": 2.9976296552128305e-05,
240
+ "loss": 0.9844,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.07218683651804671,
245
+ "grad_norm": 0.8466313083198588,
246
+ "learning_rate": 2.9970002423112342e-05,
247
+ "loss": 0.9862,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.07430997876857749,
252
+ "grad_norm": 3.0775818765498997,
253
+ "learning_rate": 2.996296885096003e-05,
254
+ "loss": 0.9921,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.07643312101910828,
259
+ "grad_norm": 0.9668150868467069,
260
+ "learning_rate": 2.9955196183094604e-05,
261
+ "loss": 1.0312,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.07855626326963906,
266
+ "grad_norm": 0.8491853067637553,
267
+ "learning_rate": 2.9946684803446928e-05,
268
+ "loss": 0.9704,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.08067940552016985,
273
+ "grad_norm": 1.4205641764205312,
274
+ "learning_rate": 2.9937435132436517e-05,
275
+ "loss": 0.9659,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.08280254777070063,
280
+ "grad_norm": 0.9441030271305156,
281
+ "learning_rate": 2.9927447626950795e-05,
282
+ "loss": 0.9507,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.08492569002123142,
287
+ "grad_norm": 1.2675209983159783,
288
+ "learning_rate": 2.9916722780322504e-05,
289
+ "loss": 1.002,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.0870488322717622,
294
+ "grad_norm": 1.6463034987153113,
295
+ "learning_rate": 2.9905261122305344e-05,
296
+ "loss": 0.9619,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.08917197452229299,
301
+ "grad_norm": 0.9187757905390965,
302
+ "learning_rate": 2.9893063219047815e-05,
303
+ "loss": 0.9691,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.09129511677282377,
308
+ "grad_norm": 0.9018029010217173,
309
+ "learning_rate": 2.988012967306524e-05,
310
+ "loss": 0.9658,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.09341825902335456,
315
+ "grad_norm": 0.7942951837701693,
316
+ "learning_rate": 2.9866461123210005e-05,
317
+ "loss": 1.036,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.09554140127388536,
322
+ "grad_norm": 0.7920942774535104,
323
+ "learning_rate": 2.985205824464001e-05,
324
+ "loss": 1.0362,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.09766454352441614,
329
+ "grad_norm": 1.1538568110872267,
330
+ "learning_rate": 2.983692174878531e-05,
331
+ "loss": 1.0226,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.09978768577494693,
336
+ "grad_norm": 0.8728667083119837,
337
+ "learning_rate": 2.9821052383312987e-05,
338
+ "loss": 0.9848,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.10191082802547771,
343
+ "grad_norm": 0.9041523514230781,
344
+ "learning_rate": 2.980445093209021e-05,
345
+ "loss": 0.9875,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.1040339702760085,
350
+ "grad_norm": 1.0596951962405752,
351
+ "learning_rate": 2.9787118215145502e-05,
352
+ "loss": 0.9708,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.10615711252653928,
357
+ "grad_norm": 0.9427913699014273,
358
+ "learning_rate": 2.976905508862828e-05,
359
+ "loss": 1.009,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.10828025477707007,
364
+ "grad_norm": 0.8275899758352401,
365
+ "learning_rate": 2.9750262444766502e-05,
366
+ "loss": 0.9985,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.11040339702760085,
371
+ "grad_norm": 0.975852608473361,
372
+ "learning_rate": 2.9730741211822654e-05,
373
+ "loss": 1.0062,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.11252653927813164,
378
+ "grad_norm": 0.8051301886044567,
379
+ "learning_rate": 2.9710492354047857e-05,
380
+ "loss": 0.9339,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.11464968152866242,
385
+ "grad_norm": 0.8707635236666643,
386
+ "learning_rate": 2.968951687163426e-05,
387
+ "loss": 0.9955,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.11677282377919321,
392
+ "grad_norm": 0.8254929493091868,
393
+ "learning_rate": 2.9667815800665637e-05,
394
+ "loss": 1.0298,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.11889596602972399,
399
+ "grad_norm": 0.7562926195663171,
400
+ "learning_rate": 2.9645390213066193e-05,
401
+ "loss": 1.0611,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.12101910828025478,
406
+ "grad_norm": 0.8226232019747459,
407
+ "learning_rate": 2.9622241216547623e-05,
408
+ "loss": 0.9991,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.12314225053078556,
413
+ "grad_norm": 0.7982200631080218,
414
+ "learning_rate": 2.9598369954554405e-05,
415
+ "loss": 0.9991,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.12526539278131635,
420
+ "grad_norm": 0.6963466420104463,
421
+ "learning_rate": 2.957377760620732e-05,
422
+ "loss": 0.9941,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.12738853503184713,
427
+ "grad_norm": 0.7408513127997496,
428
+ "learning_rate": 2.9548465386245185e-05,
429
+ "loss": 0.9874,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.12951167728237792,
434
+ "grad_norm": 0.8271991090411744,
435
+ "learning_rate": 2.952243454496488e-05,
436
+ "loss": 0.9139,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.1316348195329087,
441
+ "grad_norm": 1.0499980155535253,
442
+ "learning_rate": 2.9495686368159592e-05,
443
+ "loss": 0.9768,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.1337579617834395,
448
+ "grad_norm": 0.7840493370566994,
449
+ "learning_rate": 2.946822217705526e-05,
450
+ "loss": 0.999,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.13588110403397027,
455
+ "grad_norm": 0.7806728112401357,
456
+ "learning_rate": 2.9440043328245366e-05,
457
+ "loss": 1.0215,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.13800424628450106,
462
+ "grad_norm": 0.7631865352856676,
463
+ "learning_rate": 2.9411151213623894e-05,
464
+ "loss": 1.0313,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.14012738853503184,
469
+ "grad_norm": 0.7125983390885618,
470
+ "learning_rate": 2.938154726031659e-05,
471
+ "loss": 0.9669,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.14225053078556263,
476
+ "grad_norm": 0.7130914703890735,
477
+ "learning_rate": 2.9351232930610473e-05,
478
+ "loss": 0.9745,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.14437367303609341,
483
+ "grad_norm": 0.7946605985222294,
484
+ "learning_rate": 2.932020972188157e-05,
485
+ "loss": 0.9708,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.1464968152866242,
490
+ "grad_norm": 0.6811138210740744,
491
+ "learning_rate": 2.9288479166521014e-05,
492
+ "loss": 0.9494,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.14861995753715498,
497
+ "grad_norm": 0.772893213577846,
498
+ "learning_rate": 2.9256042831859295e-05,
499
+ "loss": 1.0612,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.15074309978768577,
504
+ "grad_norm": 0.7592068515404989,
505
+ "learning_rate": 2.9222902320088882e-05,
506
+ "loss": 1.0019,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.15286624203821655,
511
+ "grad_norm": 0.7696389426407971,
512
+ "learning_rate": 2.9189059268185057e-05,
513
+ "loss": 1.0222,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.15498938428874734,
518
+ "grad_norm": 0.7196168653178467,
519
+ "learning_rate": 2.9154515347825065e-05,
520
+ "loss": 0.9702,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.15711252653927812,
525
+ "grad_norm": 0.8084046623013887,
526
+ "learning_rate": 2.9119272265305546e-05,
527
+ "loss": 0.9476,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.1592356687898089,
532
+ "grad_norm": 0.7666084490813502,
533
+ "learning_rate": 2.9083331761458247e-05,
534
+ "loss": 0.9927,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.1613588110403397,
539
+ "grad_norm": 0.8464390116357674,
540
+ "learning_rate": 2.904669561156404e-05,
541
+ "loss": 0.909,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.16348195329087048,
546
+ "grad_norm": 0.6443641909940253,
547
+ "learning_rate": 2.9009365625265215e-05,
548
+ "loss": 0.9603,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.16560509554140126,
553
+ "grad_norm": 0.7599832914924824,
554
+ "learning_rate": 2.8971343646476114e-05,
555
+ "loss": 0.9786,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.16772823779193205,
560
+ "grad_norm": 0.806592225804777,
561
+ "learning_rate": 2.893263155329204e-05,
562
+ "loss": 0.9774,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.16985138004246284,
567
+ "grad_norm": 0.7338345781204999,
568
+ "learning_rate": 2.8893231257896502e-05,
569
+ "loss": 1.076,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.17197452229299362,
574
+ "grad_norm": 0.7256977111670229,
575
+ "learning_rate": 2.8853144706466725e-05,
576
+ "loss": 1.0003,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.1740976645435244,
581
+ "grad_norm": 0.9486924335177603,
582
+ "learning_rate": 2.881237387907757e-05,
583
+ "loss": 1.061,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.1762208067940552,
588
+ "grad_norm": 0.7245363724222085,
589
+ "learning_rate": 2.8770920789603687e-05,
590
+ "loss": 0.9772,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.17834394904458598,
595
+ "grad_norm": 0.8462340519151804,
596
+ "learning_rate": 2.8728787485620068e-05,
597
+ "loss": 1.0097,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.18046709129511676,
602
+ "grad_norm": 0.7351160195293913,
603
+ "learning_rate": 2.868597604830088e-05,
604
+ "loss": 0.99,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.18259023354564755,
609
+ "grad_norm": 0.7346962642071149,
610
+ "learning_rate": 2.864248859231669e-05,
611
+ "loss": 1.0185,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.18471337579617833,
616
+ "grad_norm": 0.7264358663319485,
617
+ "learning_rate": 2.859832726573e-05,
618
+ "loss": 1.018,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.18683651804670912,
623
+ "grad_norm": 0.6502521161134233,
624
+ "learning_rate": 2.855349424988915e-05,
625
+ "loss": 0.9539,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.18895966029723993,
630
+ "grad_norm": 0.7429051973625352,
631
+ "learning_rate": 2.8507991759320545e-05,
632
+ "loss": 0.932,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.1910828025477707,
637
+ "grad_norm": 0.7337271359665005,
638
+ "learning_rate": 2.8461822041619312e-05,
639
+ "loss": 1.0024,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.1932059447983015,
644
+ "grad_norm": 0.696436735871088,
645
+ "learning_rate": 2.841498737733824e-05,
646
+ "loss": 0.9241,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.19532908704883228,
651
+ "grad_norm": 0.8367022783932109,
652
+ "learning_rate": 2.8367490079875154e-05,
653
+ "loss": 0.9643,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.19745222929936307,
658
+ "grad_norm": 0.7508090587584874,
659
+ "learning_rate": 2.831933249535865e-05,
660
+ "loss": 0.9753,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.19957537154989385,
665
+ "grad_norm": 0.7462348768378886,
666
+ "learning_rate": 2.827051700253217e-05,
667
+ "loss": 0.958,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.20169851380042464,
672
+ "grad_norm": 0.7525272193363061,
673
+ "learning_rate": 2.8221046012636558e-05,
674
+ "loss": 1.0095,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.20382165605095542,
679
+ "grad_norm": 0.6809918403435731,
680
+ "learning_rate": 2.817092196929091e-05,
681
+ "loss": 0.9593,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.2059447983014862,
686
+ "grad_norm": 0.6932971348903458,
687
+ "learning_rate": 2.8120147348371912e-05,
688
+ "loss": 0.9581,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.208067940552017,
693
+ "grad_norm": 0.7197887059084126,
694
+ "learning_rate": 2.8068724657891507e-05,
695
+ "loss": 0.9432,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.21019108280254778,
700
+ "grad_norm": 0.7347184474062712,
701
+ "learning_rate": 2.801665643787303e-05,
702
+ "loss": 1.0137,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.21231422505307856,
707
+ "grad_norm": 0.673328010924802,
708
+ "learning_rate": 2.7963945260225748e-05,
709
+ "loss": 1.0148,
710
+ "step": 100
711
+ },
712
+ {
713
+ "epoch": 0.21443736730360935,
714
+ "grad_norm": 0.7214998628963789,
715
+ "learning_rate": 2.7910593728617813e-05,
716
+ "loss": 1.0484,
717
+ "step": 101
718
+ },
719
+ {
720
+ "epoch": 0.21656050955414013,
721
+ "grad_norm": 0.6722704514414892,
722
+ "learning_rate": 2.7856604478347655e-05,
723
+ "loss": 0.9654,
724
+ "step": 102
725
+ },
726
+ {
727
+ "epoch": 0.21868365180467092,
728
+ "grad_norm": 0.6556980159522945,
729
+ "learning_rate": 2.7801980176213798e-05,
730
+ "loss": 0.9148,
731
+ "step": 103
732
+ },
733
+ {
734
+ "epoch": 0.2208067940552017,
735
+ "grad_norm": 0.7796844299678404,
736
+ "learning_rate": 2.7746723520383174e-05,
737
+ "loss": 0.9803,
738
+ "step": 104
739
+ },
740
+ {
741
+ "epoch": 0.2229299363057325,
742
+ "grad_norm": 0.69615473393741,
743
+ "learning_rate": 2.76908372402578e-05,
744
+ "loss": 0.9389,
745
+ "step": 105
746
+ },
747
+ {
748
+ "epoch": 0.22505307855626328,
749
+ "grad_norm": 0.665149808571595,
750
+ "learning_rate": 2.763432409633998e-05,
751
+ "loss": 0.9407,
752
+ "step": 106
753
+ },
754
+ {
755
+ "epoch": 0.22717622080679406,
756
+ "grad_norm": 0.6679067532269544,
757
+ "learning_rate": 2.7577186880095966e-05,
758
+ "loss": 0.9864,
759
+ "step": 107
760
+ },
761
+ {
762
+ "epoch": 0.22929936305732485,
763
+ "grad_norm": 0.717736772052187,
764
+ "learning_rate": 2.7519428413818034e-05,
765
+ "loss": 0.9568,
766
+ "step": 108
767
+ },
768
+ {
769
+ "epoch": 0.23142250530785563,
770
+ "grad_norm": 0.7365137124208776,
771
+ "learning_rate": 2.7461051550485116e-05,
772
+ "loss": 1.0027,
773
+ "step": 109
774
+ },
775
+ {
776
+ "epoch": 0.23354564755838642,
777
+ "grad_norm": 0.7060692871299123,
778
+ "learning_rate": 2.740205917362186e-05,
779
+ "loss": 1.0176,
780
+ "step": 110
781
+ },
782
+ {
783
+ "epoch": 0.2356687898089172,
784
+ "grad_norm": 0.6086155886816632,
785
+ "learning_rate": 2.7342454197156194e-05,
786
+ "loss": 0.9614,
787
+ "step": 111
788
+ },
789
+ {
790
+ "epoch": 0.23779193205944799,
791
+ "grad_norm": 0.6391029724554078,
792
+ "learning_rate": 2.728223956527539e-05,
793
+ "loss": 0.979,
794
+ "step": 112
795
+ },
796
+ {
797
+ "epoch": 0.23991507430997877,
798
+ "grad_norm": 0.7225858742160614,
799
+ "learning_rate": 2.722141825228066e-05,
800
+ "loss": 0.9522,
801
+ "step": 113
802
+ },
803
+ {
804
+ "epoch": 0.24203821656050956,
805
+ "grad_norm": 0.6685886845969267,
806
+ "learning_rate": 2.7159993262440228e-05,
807
+ "loss": 0.9574,
808
+ "step": 114
809
+ },
810
+ {
811
+ "epoch": 0.24416135881104034,
812
+ "grad_norm": 0.6648088183213471,
813
+ "learning_rate": 2.7097967629840906e-05,
814
+ "loss": 1.008,
815
+ "step": 115
816
+ },
817
+ {
818
+ "epoch": 0.24628450106157113,
819
+ "grad_norm": 0.7204962333279492,
820
+ "learning_rate": 2.703534441823827e-05,
821
+ "loss": 0.9785,
822
+ "step": 116
823
+ },
824
+ {
825
+ "epoch": 0.2484076433121019,
826
+ "grad_norm": 0.6804549324723432,
827
+ "learning_rate": 2.6972126720905293e-05,
828
+ "loss": 0.9816,
829
+ "step": 117
830
+ },
831
+ {
832
+ "epoch": 0.2505307855626327,
833
+ "grad_norm": 0.6837624060695675,
834
+ "learning_rate": 2.6908317660479583e-05,
835
+ "loss": 0.9813,
836
+ "step": 118
837
+ },
838
+ {
839
+ "epoch": 0.2526539278131635,
840
+ "grad_norm": 0.6706972759019354,
841
+ "learning_rate": 2.68439203888091e-05,
842
+ "loss": 1.0129,
843
+ "step": 119
844
+ },
845
+ {
846
+ "epoch": 0.25477707006369427,
847
+ "grad_norm": 0.7603607267519649,
848
+ "learning_rate": 2.6778938086796512e-05,
849
+ "loss": 1.0785,
850
+ "step": 120
851
+ },
852
+ {
853
+ "epoch": 0.25690021231422505,
854
+ "grad_norm": 0.701884945821394,
855
+ "learning_rate": 2.6713373964242043e-05,
856
+ "loss": 0.9629,
857
+ "step": 121
858
+ },
859
+ {
860
+ "epoch": 0.25902335456475584,
861
+ "grad_norm": 0.7096804682790832,
862
+ "learning_rate": 2.6647231259684946e-05,
863
+ "loss": 0.9646,
864
+ "step": 122
865
+ },
866
+ {
867
+ "epoch": 0.2611464968152866,
868
+ "grad_norm": 0.6445523205552592,
869
+ "learning_rate": 2.6580513240243524e-05,
870
+ "loss": 1.0163,
871
+ "step": 123
872
+ },
873
+ {
874
+ "epoch": 0.2632696390658174,
875
+ "grad_norm": 0.6863246456533727,
876
+ "learning_rate": 2.651322320145375e-05,
877
+ "loss": 0.9842,
878
+ "step": 124
879
+ },
880
+ {
881
+ "epoch": 0.2653927813163482,
882
+ "grad_norm": 0.691665965346161,
883
+ "learning_rate": 2.6445364467106494e-05,
884
+ "loss": 0.9421,
885
+ "step": 125
886
+ },
887
+ {
888
+ "epoch": 0.267515923566879,
889
+ "grad_norm": 0.7584893620552549,
890
+ "learning_rate": 2.637694038908333e-05,
891
+ "loss": 1.0348,
892
+ "step": 126
893
+ },
894
+ {
895
+ "epoch": 0.26963906581740976,
896
+ "grad_norm": 0.6613598336840398,
897
+ "learning_rate": 2.630795434719099e-05,
898
+ "loss": 0.9464,
899
+ "step": 127
900
+ },
901
+ {
902
+ "epoch": 0.27176220806794055,
903
+ "grad_norm": 0.6713699116927843,
904
+ "learning_rate": 2.623840974899439e-05,
905
+ "loss": 0.8904,
906
+ "step": 128
907
+ },
908
+ {
909
+ "epoch": 0.27388535031847133,
910
+ "grad_norm": 0.816037128777881,
911
+ "learning_rate": 2.616831002964834e-05,
912
+ "loss": 0.9743,
913
+ "step": 129
914
+ },
915
+ {
916
+ "epoch": 0.2760084925690021,
917
+ "grad_norm": 0.7338762748040034,
918
+ "learning_rate": 2.609765865172786e-05,
919
+ "loss": 0.9847,
920
+ "step": 130
921
+ },
922
+ {
923
+ "epoch": 0.2781316348195329,
924
+ "grad_norm": 0.6161573010385878,
925
+ "learning_rate": 2.6026459105057127e-05,
926
+ "loss": 0.9607,
927
+ "step": 131
928
+ },
929
+ {
930
+ "epoch": 0.2802547770700637,
931
+ "grad_norm": 0.6784919139990105,
932
+ "learning_rate": 2.5954714906537116e-05,
933
+ "loss": 0.9833,
934
+ "step": 132
935
+ },
936
+ {
937
+ "epoch": 0.2823779193205945,
938
+ "grad_norm": 0.7455868873904333,
939
+ "learning_rate": 2.5882429599971872e-05,
940
+ "loss": 0.9333,
941
+ "step": 133
942
+ },
943
+ {
944
+ "epoch": 0.28450106157112526,
945
+ "grad_norm": 0.6606022069654393,
946
+ "learning_rate": 2.580960675589347e-05,
947
+ "loss": 1.0049,
948
+ "step": 134
949
+ },
950
+ {
951
+ "epoch": 0.28662420382165604,
952
+ "grad_norm": 0.6870029740052253,
953
+ "learning_rate": 2.573624997138565e-05,
954
+ "loss": 1.0137,
955
+ "step": 135
956
+ },
957
+ {
958
+ "epoch": 0.28874734607218683,
959
+ "grad_norm": 0.6822500856445419,
960
+ "learning_rate": 2.5662362869906123e-05,
961
+ "loss": 1.0007,
962
+ "step": 136
963
+ },
964
+ {
965
+ "epoch": 0.2908704883227176,
966
+ "grad_norm": 0.6035427107718914,
967
+ "learning_rate": 2.558794910110761e-05,
968
+ "loss": 0.937,
969
+ "step": 137
970
+ },
971
+ {
972
+ "epoch": 0.2929936305732484,
973
+ "grad_norm": 0.6041202314277974,
974
+ "learning_rate": 2.5513012340657557e-05,
975
+ "loss": 0.9461,
976
+ "step": 138
977
+ },
978
+ {
979
+ "epoch": 0.2951167728237792,
980
+ "grad_norm": 0.6390470706425474,
981
+ "learning_rate": 2.5437556290056575e-05,
982
+ "loss": 0.9358,
983
+ "step": 139
984
+ },
985
+ {
986
+ "epoch": 0.29723991507430997,
987
+ "grad_norm": 0.7195254765489666,
988
+ "learning_rate": 2.5361584676455627e-05,
989
+ "loss": 0.9976,
990
+ "step": 140
991
+ },
992
+ {
993
+ "epoch": 0.29936305732484075,
994
+ "grad_norm": 0.6521311999355591,
995
+ "learning_rate": 2.5285101252471874e-05,
996
+ "loss": 0.9377,
997
+ "step": 141
998
+ },
999
+ {
1000
+ "epoch": 0.30148619957537154,
1001
+ "grad_norm": 0.6409749095351458,
1002
+ "learning_rate": 2.5208109796003364e-05,
1003
+ "loss": 1.0104,
1004
+ "step": 142
1005
+ },
1006
+ {
1007
+ "epoch": 0.3036093418259023,
1008
+ "grad_norm": 0.6315495351185857,
1009
+ "learning_rate": 2.5130614110042415e-05,
1010
+ "loss": 1.0316,
1011
+ "step": 143
1012
+ },
1013
+ {
1014
+ "epoch": 0.3057324840764331,
1015
+ "grad_norm": 0.6737333438485361,
1016
+ "learning_rate": 2.5052618022487733e-05,
1017
+ "loss": 0.9078,
1018
+ "step": 144
1019
+ },
1020
+ {
1021
+ "epoch": 0.3078556263269639,
1022
+ "grad_norm": 0.6808606797582761,
1023
+ "learning_rate": 2.4974125385955374e-05,
1024
+ "loss": 0.9745,
1025
+ "step": 145
1026
+ },
1027
+ {
1028
+ "epoch": 0.3099787685774947,
1029
+ "grad_norm": 0.6728298363507792,
1030
+ "learning_rate": 2.4895140077588412e-05,
1031
+ "loss": 0.9231,
1032
+ "step": 146
1033
+ },
1034
+ {
1035
+ "epoch": 0.31210191082802546,
1036
+ "grad_norm": 0.737270504862064,
1037
+ "learning_rate": 2.481566599886546e-05,
1038
+ "loss": 0.9499,
1039
+ "step": 147
1040
+ },
1041
+ {
1042
+ "epoch": 0.31422505307855625,
1043
+ "grad_norm": 0.6659360676868527,
1044
+ "learning_rate": 2.473570707540793e-05,
1045
+ "loss": 1.036,
1046
+ "step": 148
1047
+ },
1048
+ {
1049
+ "epoch": 0.31634819532908703,
1050
+ "grad_norm": 0.6279327692414004,
1051
+ "learning_rate": 2.4655267256786126e-05,
1052
+ "loss": 1.0277,
1053
+ "step": 149
1054
+ },
1055
+ {
1056
+ "epoch": 0.3184713375796178,
1057
+ "grad_norm": 0.6827718930790617,
1058
+ "learning_rate": 2.4574350516324176e-05,
1059
+ "loss": 0.9544,
1060
+ "step": 150
1061
+ },
1062
+ {
1063
+ "epoch": 0.3205944798301486,
1064
+ "grad_norm": 0.6764712245297005,
1065
+ "learning_rate": 2.4492960850903757e-05,
1066
+ "loss": 0.9915,
1067
+ "step": 151
1068
+ },
1069
+ {
1070
+ "epoch": 0.3227176220806794,
1071
+ "grad_norm": 0.6118211254231126,
1072
+ "learning_rate": 2.4411102280766658e-05,
1073
+ "loss": 0.9918,
1074
+ "step": 152
1075
+ },
1076
+ {
1077
+ "epoch": 0.3248407643312102,
1078
+ "grad_norm": 0.6445432947438029,
1079
+ "learning_rate": 2.432877884931623e-05,
1080
+ "loss": 1.0199,
1081
+ "step": 153
1082
+ },
1083
+ {
1084
+ "epoch": 0.32696390658174096,
1085
+ "grad_norm": 0.6555286244268101,
1086
+ "learning_rate": 2.4245994622917636e-05,
1087
+ "loss": 1.0144,
1088
+ "step": 154
1089
+ },
1090
+ {
1091
+ "epoch": 0.32908704883227174,
1092
+ "grad_norm": 0.5747726408332037,
1093
+ "learning_rate": 2.4162753690696998e-05,
1094
+ "loss": 1.0059,
1095
+ "step": 155
1096
+ },
1097
+ {
1098
+ "epoch": 0.33121019108280253,
1099
+ "grad_norm": 0.6633624122819982,
1100
+ "learning_rate": 2.4079060164339427e-05,
1101
+ "loss": 0.9892,
1102
+ "step": 156
1103
+ },
1104
+ {
1105
+ "epoch": 0.3333333333333333,
1106
+ "grad_norm": 0.624099565922787,
1107
+ "learning_rate": 2.3994918177885906e-05,
1108
+ "loss": 1.0363,
1109
+ "step": 157
1110
+ }
1111
+ ],
1112
+ "logging_steps": 1,
1113
+ "max_steps": 471,
1114
+ "num_input_tokens_seen": 0,
1115
+ "num_train_epochs": 1,
1116
+ "save_steps": 157,
1117
+ "stateful_callbacks": {
1118
+ "TrainerControl": {
1119
+ "args": {
1120
+ "should_epoch_stop": false,
1121
+ "should_evaluate": false,
1122
+ "should_log": false,
1123
+ "should_save": true,
1124
+ "should_training_stop": false
1125
+ },
1126
+ "attributes": {}
1127
+ }
1128
+ },
1129
+ "total_flos": 23254277554176.0,
1130
+ "train_batch_size": 2,
1131
+ "trial_name": null,
1132
+ "trial_params": null
1133
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd681504643138a679e55133a50cd258b4e3cf9ca5f57dfb9fcdc5045782b5d3
3
+ size 8017
vocab.json ADDED
The diff for this file is too large to render. See raw diff