VladShash commited on
Commit
fcb1771
·
verified ·
1 Parent(s): d42ce2e

Upload 14 files

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 %}
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:df198d95be73242f4af7d353dc49feeb013ca64276c9061dcb5b09ef8f71344d
3
  size 2384234968
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1382f27e5c0e65c8249d8b137d7e3f0626975364e8a0c989b9e0ba5a4fe34862
3
  size 2384234968
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d9cd6a0487226e5bd30d1846894c82af483733ab4381b75bae9c0745e05d405
3
+ size 14244
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b083c39fe6388e575235f5e9fc0de1f1f66b59a6209788eb53663fc005d70f1
3
+ size 1064
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
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c760c4e715b8fa39254607191eca619d9b0612d5b29d3002ac512a5b6cad7d55
3
+ size 11422934
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
+ }
trainer_state.json ADDED
@@ -0,0 +1,552 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 3735,
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.013386880856760375,
14
+ "grad_norm": 10.444840431213379,
15
+ "learning_rate": 9.995753909720682e-06,
16
+ "loss": 0.6863,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.02677376171352075,
21
+ "grad_norm": 6.0297532081604,
22
+ "learning_rate": 9.98267481169144e-06,
23
+ "loss": 0.5107,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.040160642570281124,
28
+ "grad_norm": 10.061092376708984,
29
+ "learning_rate": 9.960784067018357e-06,
30
+ "loss": 0.461,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.0535475234270415,
35
+ "grad_norm": 6.345846176147461,
36
+ "learning_rate": 9.930120388544258e-06,
37
+ "loss": 0.464,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.06693440428380187,
42
+ "grad_norm": 11.498032569885254,
43
+ "learning_rate": 9.890738003669029e-06,
44
+ "loss": 0.4628,
45
+ "step": 250
46
+ },
47
+ {
48
+ "epoch": 0.08032128514056225,
49
+ "grad_norm": 7.820000648498535,
50
+ "learning_rate": 9.842706558450787e-06,
51
+ "loss": 0.4477,
52
+ "step": 300
53
+ },
54
+ {
55
+ "epoch": 0.09370816599732262,
56
+ "grad_norm": 11.710145950317383,
57
+ "learning_rate": 9.786110994439813e-06,
58
+ "loss": 0.4411,
59
+ "step": 350
60
+ },
61
+ {
62
+ "epoch": 0.107095046854083,
63
+ "grad_norm": 7.274962902069092,
64
+ "learning_rate": 9.721051398463065e-06,
65
+ "loss": 0.4735,
66
+ "step": 400
67
+ },
68
+ {
69
+ "epoch": 0.12048192771084337,
70
+ "grad_norm": 8.92360782623291,
71
+ "learning_rate": 9.647642825624925e-06,
72
+ "loss": 0.4501,
73
+ "step": 450
74
+ },
75
+ {
76
+ "epoch": 0.13386880856760375,
77
+ "grad_norm": 8.818862915039062,
78
+ "learning_rate": 9.56601509583717e-06,
79
+ "loss": 0.457,
80
+ "step": 500
81
+ },
82
+ {
83
+ "epoch": 0.14725568942436412,
84
+ "grad_norm": 12.081962585449219,
85
+ "learning_rate": 9.476312564238035e-06,
86
+ "loss": 0.4308,
87
+ "step": 550
88
+ },
89
+ {
90
+ "epoch": 0.1606425702811245,
91
+ "grad_norm": 10.395655632019043,
92
+ "learning_rate": 9.378693865906347e-06,
93
+ "loss": 0.4408,
94
+ "step": 600
95
+ },
96
+ {
97
+ "epoch": 0.17402945113788487,
98
+ "grad_norm": 8.816801071166992,
99
+ "learning_rate": 9.273331635322185e-06,
100
+ "loss": 0.4497,
101
+ "step": 650
102
+ },
103
+ {
104
+ "epoch": 0.18741633199464525,
105
+ "grad_norm": 5.368481636047363,
106
+ "learning_rate": 9.160412201070217e-06,
107
+ "loss": 0.4447,
108
+ "step": 700
109
+ },
110
+ {
111
+ "epoch": 0.20080321285140562,
112
+ "grad_norm": 6.392587184906006,
113
+ "learning_rate": 9.040135256325584e-06,
114
+ "loss": 0.4407,
115
+ "step": 750
116
+ },
117
+ {
118
+ "epoch": 0.214190093708166,
119
+ "grad_norm": 7.844484806060791,
120
+ "learning_rate": 8.912713505705093e-06,
121
+ "loss": 0.4528,
122
+ "step": 800
123
+ },
124
+ {
125
+ "epoch": 0.22757697456492637,
126
+ "grad_norm": 8.644186019897461,
127
+ "learning_rate": 8.778372289108224e-06,
128
+ "loss": 0.4218,
129
+ "step": 850
130
+ },
131
+ {
132
+ "epoch": 0.24096385542168675,
133
+ "grad_norm": 10.462806701660156,
134
+ "learning_rate": 8.637349183213186e-06,
135
+ "loss": 0.4194,
136
+ "step": 900
137
+ },
138
+ {
139
+ "epoch": 0.2543507362784471,
140
+ "grad_norm": 8.724151611328125,
141
+ "learning_rate": 8.489893581332753e-06,
142
+ "loss": 0.4529,
143
+ "step": 950
144
+ },
145
+ {
146
+ "epoch": 0.2677376171352075,
147
+ "grad_norm": 8.977086067199707,
148
+ "learning_rate": 8.33626625237289e-06,
149
+ "loss": 0.4354,
150
+ "step": 1000
151
+ },
152
+ {
153
+ "epoch": 0.28112449799196787,
154
+ "grad_norm": 7.824547290802002,
155
+ "learning_rate": 8.176738879674129e-06,
156
+ "loss": 0.4314,
157
+ "step": 1050
158
+ },
159
+ {
160
+ "epoch": 0.29451137884872824,
161
+ "grad_norm": 5.790531635284424,
162
+ "learning_rate": 8.01159358055124e-06,
163
+ "loss": 0.4286,
164
+ "step": 1100
165
+ },
166
+ {
167
+ "epoch": 0.3078982597054886,
168
+ "grad_norm": 9.854269027709961,
169
+ "learning_rate": 7.84112240738086e-06,
170
+ "loss": 0.4201,
171
+ "step": 1150
172
+ },
173
+ {
174
+ "epoch": 0.321285140562249,
175
+ "grad_norm": 10.543339729309082,
176
+ "learning_rate": 7.665626831119396e-06,
177
+ "loss": 0.4405,
178
+ "step": 1200
179
+ },
180
+ {
181
+ "epoch": 0.33467202141900937,
182
+ "grad_norm": 4.100381851196289,
183
+ "learning_rate": 7.485417208164567e-06,
184
+ "loss": 0.4256,
185
+ "step": 1250
186
+ },
187
+ {
188
+ "epoch": 0.34805890227576974,
189
+ "grad_norm": 6.328100681304932,
190
+ "learning_rate": 7.300812231503435e-06,
191
+ "loss": 0.4333,
192
+ "step": 1300
193
+ },
194
+ {
195
+ "epoch": 0.3614457831325301,
196
+ "grad_norm": 5.430217742919922,
197
+ "learning_rate": 7.112138367117529e-06,
198
+ "loss": 0.3958,
199
+ "step": 1350
200
+ },
201
+ {
202
+ "epoch": 0.3748326639892905,
203
+ "grad_norm": 10.457396507263184,
204
+ "learning_rate": 6.91972927664176e-06,
205
+ "loss": 0.3899,
206
+ "step": 1400
207
+ },
208
+ {
209
+ "epoch": 0.38821954484605087,
210
+ "grad_norm": 6.345710754394531,
211
+ "learning_rate": 6.723925227298133e-06,
212
+ "loss": 0.3759,
213
+ "step": 1450
214
+ },
215
+ {
216
+ "epoch": 0.40160642570281124,
217
+ "grad_norm": 9.008039474487305,
218
+ "learning_rate": 6.525072490147766e-06,
219
+ "loss": 0.3912,
220
+ "step": 1500
221
+ },
222
+ {
223
+ "epoch": 0.4149933065595716,
224
+ "grad_norm": 7.655404090881348,
225
+ "learning_rate": 6.323522727725371e-06,
226
+ "loss": 0.3992,
227
+ "step": 1550
228
+ },
229
+ {
230
+ "epoch": 0.428380187416332,
231
+ "grad_norm": 7.3834967613220215,
232
+ "learning_rate": 6.119632372139152e-06,
233
+ "loss": 0.3655,
234
+ "step": 1600
235
+ },
236
+ {
237
+ "epoch": 0.44176706827309237,
238
+ "grad_norm": 8.772950172424316,
239
+ "learning_rate": 5.913761994735908e-06,
240
+ "loss": 0.4217,
241
+ "step": 1650
242
+ },
243
+ {
244
+ "epoch": 0.45515394912985274,
245
+ "grad_norm": 5.111259937286377,
246
+ "learning_rate": 5.706275668446074e-06,
247
+ "loss": 0.4281,
248
+ "step": 1700
249
+ },
250
+ {
251
+ "epoch": 0.4685408299866131,
252
+ "grad_norm": 5.894604682922363,
253
+ "learning_rate": 5.497540323936371e-06,
254
+ "loss": 0.4276,
255
+ "step": 1750
256
+ },
257
+ {
258
+ "epoch": 0.4819277108433735,
259
+ "grad_norm": 9.776211738586426,
260
+ "learning_rate": 5.2879251007086555e-06,
261
+ "loss": 0.4073,
262
+ "step": 1800
263
+ },
264
+ {
265
+ "epoch": 0.49531459170013387,
266
+ "grad_norm": 8.807998657226562,
267
+ "learning_rate": 5.077800694292546e-06,
268
+ "loss": 0.4339,
269
+ "step": 1850
270
+ },
271
+ {
272
+ "epoch": 0.5087014725568942,
273
+ "grad_norm": 8.668907165527344,
274
+ "learning_rate": 4.867538700686292e-06,
275
+ "loss": 0.432,
276
+ "step": 1900
277
+ },
278
+ {
279
+ "epoch": 0.5220883534136547,
280
+ "grad_norm": 7.573647499084473,
281
+ "learning_rate": 4.657510959205182e-06,
282
+ "loss": 0.402,
283
+ "step": 1950
284
+ },
285
+ {
286
+ "epoch": 0.535475234270415,
287
+ "grad_norm": 7.700588703155518,
288
+ "learning_rate": 4.448088894899669e-06,
289
+ "loss": 0.3972,
290
+ "step": 2000
291
+ },
292
+ {
293
+ "epoch": 0.5488621151271754,
294
+ "grad_norm": 7.340878009796143,
295
+ "learning_rate": 4.23964286170611e-06,
296
+ "loss": 0.3288,
297
+ "step": 2050
298
+ },
299
+ {
300
+ "epoch": 0.5622489959839357,
301
+ "grad_norm": 7.881528377532959,
302
+ "learning_rate": 4.032541487491709e-06,
303
+ "loss": 0.4066,
304
+ "step": 2100
305
+ },
306
+ {
307
+ "epoch": 0.5756358768406962,
308
+ "grad_norm": 7.409366607666016,
309
+ "learning_rate": 3.827151022151955e-06,
310
+ "loss": 0.3516,
311
+ "step": 2150
312
+ },
313
+ {
314
+ "epoch": 0.5890227576974565,
315
+ "grad_norm": 7.922168731689453,
316
+ "learning_rate": 3.623834689913387e-06,
317
+ "loss": 0.3729,
318
+ "step": 2200
319
+ },
320
+ {
321
+ "epoch": 0.6024096385542169,
322
+ "grad_norm": 8.52475643157959,
323
+ "learning_rate": 3.4229520469871445e-06,
324
+ "loss": 0.4058,
325
+ "step": 2250
326
+ },
327
+ {
328
+ "epoch": 0.6157965194109772,
329
+ "grad_norm": 8.120729446411133,
330
+ "learning_rate": 3.2248583457092163e-06,
331
+ "loss": 0.3451,
332
+ "step": 2300
333
+ },
334
+ {
335
+ "epoch": 0.6291834002677377,
336
+ "grad_norm": 8.336807250976562,
337
+ "learning_rate": 3.0299039062919417e-06,
338
+ "loss": 0.3691,
339
+ "step": 2350
340
+ },
341
+ {
342
+ "epoch": 0.642570281124498,
343
+ "grad_norm": 8.232279777526855,
344
+ "learning_rate": 2.8384334972977275e-06,
345
+ "loss": 0.412,
346
+ "step": 2400
347
+ },
348
+ {
349
+ "epoch": 0.6559571619812584,
350
+ "grad_norm": 5.542270183563232,
351
+ "learning_rate": 2.650785725930657e-06,
352
+ "loss": 0.3768,
353
+ "step": 2450
354
+ },
355
+ {
356
+ "epoch": 0.6693440428380187,
357
+ "grad_norm": 5.975722312927246,
358
+ "learning_rate": 2.4672924392241493e-06,
359
+ "loss": 0.3842,
360
+ "step": 2500
361
+ },
362
+ {
363
+ "epoch": 0.6827309236947792,
364
+ "grad_norm": 6.6057868003845215,
365
+ "learning_rate": 2.288278137183748e-06,
366
+ "loss": 0.3278,
367
+ "step": 2550
368
+ },
369
+ {
370
+ "epoch": 0.6961178045515395,
371
+ "grad_norm": 7.060661792755127,
372
+ "learning_rate": 2.11405939892275e-06,
373
+ "loss": 0.3673,
374
+ "step": 2600
375
+ },
376
+ {
377
+ "epoch": 0.7095046854082999,
378
+ "grad_norm": 5.489977836608887,
379
+ "learning_rate": 1.9449443228056565e-06,
380
+ "loss": 0.3522,
381
+ "step": 2650
382
+ },
383
+ {
384
+ "epoch": 0.7228915662650602,
385
+ "grad_norm": 7.412909507751465,
386
+ "learning_rate": 1.7812319815894096e-06,
387
+ "loss": 0.366,
388
+ "step": 2700
389
+ },
390
+ {
391
+ "epoch": 0.7362784471218207,
392
+ "grad_norm": 5.627942085266113,
393
+ "learning_rate": 1.6232118935260628e-06,
394
+ "loss": 0.3906,
395
+ "step": 2750
396
+ },
397
+ {
398
+ "epoch": 0.749665327978581,
399
+ "grad_norm": 6.9760212898254395,
400
+ "learning_rate": 1.4711635103621718e-06,
401
+ "loss": 0.3912,
402
+ "step": 2800
403
+ },
404
+ {
405
+ "epoch": 0.7630522088353414,
406
+ "grad_norm": 7.291072368621826,
407
+ "learning_rate": 1.325355723140367e-06,
408
+ "loss": 0.3753,
409
+ "step": 2850
410
+ },
411
+ {
412
+ "epoch": 0.7764390896921017,
413
+ "grad_norm": 6.7273478507995605,
414
+ "learning_rate": 1.1860463866770826e-06,
415
+ "loss": 0.3694,
416
+ "step": 2900
417
+ },
418
+ {
419
+ "epoch": 0.7898259705488622,
420
+ "grad_norm": 7.016156196594238,
421
+ "learning_rate": 1.0534818635573751e-06,
422
+ "loss": 0.3636,
423
+ "step": 2950
424
+ },
425
+ {
426
+ "epoch": 0.8032128514056225,
427
+ "grad_norm": 7.053563117980957,
428
+ "learning_rate": 9.278965884532598e-07,
429
+ "loss": 0.4107,
430
+ "step": 3000
431
+ },
432
+ {
433
+ "epoch": 0.8165997322623829,
434
+ "grad_norm": 6.060437202453613,
435
+ "learning_rate": 8.09512653536052e-07,
436
+ "loss": 0.3908,
437
+ "step": 3050
438
+ },
439
+ {
440
+ "epoch": 0.8299866131191432,
441
+ "grad_norm": 7.361605644226074,
442
+ "learning_rate": 6.985394157158893e-07,
443
+ "loss": 0.3662,
444
+ "step": 3100
445
+ },
446
+ {
447
+ "epoch": 0.8433734939759037,
448
+ "grad_norm": 5.547077655792236,
449
+ "learning_rate": 5.951731264030202e-07,
450
+ "loss": 0.3513,
451
+ "step": 3150
452
+ },
453
+ {
454
+ "epoch": 0.856760374832664,
455
+ "grad_norm": 9.102234840393066,
456
+ "learning_rate": 4.995965844455969e-07,
457
+ "loss": 0.409,
458
+ "step": 3200
459
+ },
460
+ {
461
+ "epoch": 0.8701472556894244,
462
+ "grad_norm": 6.737813472747803,
463
+ "learning_rate": 4.1197881285776675e-07,
464
+ "loss": 0.3838,
465
+ "step": 3250
466
+ },
467
+ {
468
+ "epoch": 0.8835341365461847,
469
+ "grad_norm": 6.354872226715088,
470
+ "learning_rate": 3.324747599097078e-07,
471
+ "loss": 0.4013,
472
+ "step": 3300
473
+ },
474
+ {
475
+ "epoch": 0.8969210174029452,
476
+ "grad_norm": 7.315886497497559,
477
+ "learning_rate": 2.61225025108276e-07,
478
+ "loss": 0.4003,
479
+ "step": 3350
480
+ },
481
+ {
482
+ "epoch": 0.9103078982597055,
483
+ "grad_norm": 7.8258562088012695,
484
+ "learning_rate": 1.9835561055279728e-07,
485
+ "loss": 0.3364,
486
+ "step": 3400
487
+ },
488
+ {
489
+ "epoch": 0.9236947791164659,
490
+ "grad_norm": 3.8167738914489746,
491
+ "learning_rate": 1.4397769810576668e-07,
492
+ "loss": 0.3611,
493
+ "step": 3450
494
+ },
495
+ {
496
+ "epoch": 0.9370816599732262,
497
+ "grad_norm": 9.796895980834961,
498
+ "learning_rate": 9.818745277249076e-08,
499
+ "loss": 0.363,
500
+ "step": 3500
501
+ },
502
+ {
503
+ "epoch": 0.9504685408299867,
504
+ "grad_norm": 9.241850852966309,
505
+ "learning_rate": 6.106585263740528e-08,
506
+ "loss": 0.4065,
507
+ "step": 3550
508
+ },
509
+ {
510
+ "epoch": 0.963855421686747,
511
+ "grad_norm": 6.8581624031066895,
512
+ "learning_rate": 3.267854565780326e-08,
513
+ "loss": 0.361,
514
+ "step": 3600
515
+ },
516
+ {
517
+ "epoch": 0.9772423025435074,
518
+ "grad_norm": 6.801017761230469,
519
+ "learning_rate": 1.3075733568240212e-08,
520
+ "loss": 0.3531,
521
+ "step": 3650
522
+ },
523
+ {
524
+ "epoch": 0.9906291834002677,
525
+ "grad_norm": 7.733842372894287,
526
+ "learning_rate": 2.2920831009209944e-09,
527
+ "loss": 0.4049,
528
+ "step": 3700
529
+ }
530
+ ],
531
+ "logging_steps": 50,
532
+ "max_steps": 3735,
533
+ "num_input_tokens_seen": 0,
534
+ "num_train_epochs": 1,
535
+ "save_steps": 50000,
536
+ "stateful_callbacks": {
537
+ "TrainerControl": {
538
+ "args": {
539
+ "should_epoch_stop": false,
540
+ "should_evaluate": false,
541
+ "should_log": false,
542
+ "should_save": true,
543
+ "should_training_stop": true
544
+ },
545
+ "attributes": {}
546
+ }
547
+ },
548
+ "total_flos": 1.010777670549504e+16,
549
+ "train_batch_size": 2,
550
+ "trial_name": null,
551
+ "trial_params": null
552
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd3bc88ff5b25f40cd4e4bf31742ef38e7a91fb605a571a3ce68503effacfe00
3
+ size 5304
vocab.json ADDED
The diff for this file is too large to render. See raw diff