VladShash commited on
Commit
1be96f6
·
verified ·
1 Parent(s): 3460047

Upload 11 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
 
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:1dc6f2eb7585a3157fdebf182056facd58efd07c6d4a2f75bf05bb9c2bc6f807
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:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
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,342 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 4467,
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.02238638907544213,
14
+ "grad_norm": 8.243054389953613,
15
+ "learning_rate": 4.993942787771599e-06,
16
+ "loss": 1.1762,
17
+ "step": 100
18
+ },
19
+ {
20
+ "epoch": 0.04477277815088426,
21
+ "grad_norm": 13.294663429260254,
22
+ "learning_rate": 4.975555846433033e-06,
23
+ "loss": 1.1404,
24
+ "step": 200
25
+ },
26
+ {
27
+ "epoch": 0.0671591672263264,
28
+ "grad_norm": 8.65041446685791,
29
+ "learning_rate": 4.9449294649220665e-06,
30
+ "loss": 1.0161,
31
+ "step": 300
32
+ },
33
+ {
34
+ "epoch": 0.08954555630176853,
35
+ "grad_norm": 10.313958168029785,
36
+ "learning_rate": 4.902215063682208e-06,
37
+ "loss": 0.9855,
38
+ "step": 400
39
+ },
40
+ {
41
+ "epoch": 0.11193194537721066,
42
+ "grad_norm": 10.495174407958984,
43
+ "learning_rate": 4.847623827752661e-06,
44
+ "loss": 0.9682,
45
+ "step": 500
46
+ },
47
+ {
48
+ "epoch": 0.1343183344526528,
49
+ "grad_norm": 12.217084884643555,
50
+ "learning_rate": 4.781425662644569e-06,
51
+ "loss": 0.988,
52
+ "step": 600
53
+ },
54
+ {
55
+ "epoch": 0.15670472352809492,
56
+ "grad_norm": 10.601492881774902,
57
+ "learning_rate": 4.703947859896326e-06,
58
+ "loss": 1.0177,
59
+ "step": 700
60
+ },
61
+ {
62
+ "epoch": 0.17909111260353705,
63
+ "grad_norm": 7.260547637939453,
64
+ "learning_rate": 4.615573478905602e-06,
65
+ "loss": 0.9601,
66
+ "step": 800
67
+ },
68
+ {
69
+ "epoch": 0.20147750167897918,
70
+ "grad_norm": 10.645676612854004,
71
+ "learning_rate": 4.5167394530384775e-06,
72
+ "loss": 0.9422,
73
+ "step": 900
74
+ },
75
+ {
76
+ "epoch": 0.2238638907544213,
77
+ "grad_norm": 10.681941986083984,
78
+ "learning_rate": 4.407934429379341e-06,
79
+ "loss": 1.0196,
80
+ "step": 1000
81
+ },
82
+ {
83
+ "epoch": 0.24625027982986344,
84
+ "grad_norm": 9.875200271606445,
85
+ "learning_rate": 4.28969635280205e-06,
86
+ "loss": 1.0191,
87
+ "step": 1100
88
+ },
89
+ {
90
+ "epoch": 0.2686366689053056,
91
+ "grad_norm": 10.363883018493652,
92
+ "learning_rate": 4.162609806307003e-06,
93
+ "loss": 0.9449,
94
+ "step": 1200
95
+ },
96
+ {
97
+ "epoch": 0.2910230579807477,
98
+ "grad_norm": 8.477913856506348,
99
+ "learning_rate": 4.027303120773824e-06,
100
+ "loss": 0.9039,
101
+ "step": 1300
102
+ },
103
+ {
104
+ "epoch": 0.31340944705618984,
105
+ "grad_norm": 9.964315414428711,
106
+ "learning_rate": 3.884445268419355e-06,
107
+ "loss": 1.0146,
108
+ "step": 1400
109
+ },
110
+ {
111
+ "epoch": 0.33579583613163194,
112
+ "grad_norm": 10.20909309387207,
113
+ "learning_rate": 3.734742555320098e-06,
114
+ "loss": 1.0387,
115
+ "step": 1500
116
+ },
117
+ {
118
+ "epoch": 0.3581822252070741,
119
+ "grad_norm": 12.675057411193848,
120
+ "learning_rate": 3.578935129351634e-06,
121
+ "loss": 1.0002,
122
+ "step": 1600
123
+ },
124
+ {
125
+ "epoch": 0.3805686142825162,
126
+ "grad_norm": 11.391951560974121,
127
+ "learning_rate": 3.4177933208102103e-06,
128
+ "loss": 0.9976,
129
+ "step": 1700
130
+ },
131
+ {
132
+ "epoch": 0.40295500335795836,
133
+ "grad_norm": 10.763954162597656,
134
+ "learning_rate": 3.2521138338088676e-06,
135
+ "loss": 0.9535,
136
+ "step": 1800
137
+ },
138
+ {
139
+ "epoch": 0.42534139243340047,
140
+ "grad_norm": 9.04262638092041,
141
+ "learning_rate": 3.0827158072783113e-06,
142
+ "loss": 1.0119,
143
+ "step": 1900
144
+ },
145
+ {
146
+ "epoch": 0.4477277815088426,
147
+ "grad_norm": 7.757719993591309,
148
+ "learning_rate": 2.9104367650473923e-06,
149
+ "loss": 0.9353,
150
+ "step": 2000
151
+ },
152
+ {
153
+ "epoch": 0.47011417058428473,
154
+ "grad_norm": 8.288910865783691,
155
+ "learning_rate": 2.7361284750264927e-06,
156
+ "loss": 1.0068,
157
+ "step": 2100
158
+ },
159
+ {
160
+ "epoch": 0.4925005596597269,
161
+ "grad_norm": 10.480790138244629,
162
+ "learning_rate": 2.5606527379664746e-06,
163
+ "loss": 0.9621,
164
+ "step": 2200
165
+ },
166
+ {
167
+ "epoch": 0.514886948735169,
168
+ "grad_norm": 12.541658401489258,
169
+ "learning_rate": 2.384877126614103e-06,
170
+ "loss": 0.9756,
171
+ "step": 2300
172
+ },
173
+ {
174
+ "epoch": 0.5372733378106112,
175
+ "grad_norm": 13.887962341308594,
176
+ "learning_rate": 2.20967069633002e-06,
177
+ "loss": 0.9665,
178
+ "step": 2400
179
+ },
180
+ {
181
+ "epoch": 0.5596597268860533,
182
+ "grad_norm": 11.765827178955078,
183
+ "learning_rate": 2.035899688376515e-06,
184
+ "loss": 0.9511,
185
+ "step": 2500
186
+ },
187
+ {
188
+ "epoch": 0.5820461159614954,
189
+ "grad_norm": 11.959718704223633,
190
+ "learning_rate": 1.8644232471185239e-06,
191
+ "loss": 0.9713,
192
+ "step": 2600
193
+ },
194
+ {
195
+ "epoch": 0.6044325050369376,
196
+ "grad_norm": 8.351862907409668,
197
+ "learning_rate": 1.6960891723125235e-06,
198
+ "loss": 1.0633,
199
+ "step": 2700
200
+ },
201
+ {
202
+ "epoch": 0.6268188941123797,
203
+ "grad_norm": 7.508358478546143,
204
+ "learning_rate": 1.5317297274845156e-06,
205
+ "loss": 0.895,
206
+ "step": 2800
207
+ },
208
+ {
209
+ "epoch": 0.6492052831878218,
210
+ "grad_norm": 12.4747314453125,
211
+ "learning_rate": 1.372157525120959e-06,
212
+ "loss": 0.9394,
213
+ "step": 2900
214
+ },
215
+ {
216
+ "epoch": 0.6715916722632639,
217
+ "grad_norm": 12.205965042114258,
218
+ "learning_rate": 1.2181615090167711e-06,
219
+ "loss": 0.9485,
220
+ "step": 3000
221
+ },
222
+ {
223
+ "epoch": 0.6939780613387061,
224
+ "grad_norm": 6.783346652984619,
225
+ "learning_rate": 1.0705030536441147e-06,
226
+ "loss": 0.8932,
227
+ "step": 3100
228
+ },
229
+ {
230
+ "epoch": 0.7163644504141482,
231
+ "grad_norm": 9.786669731140137,
232
+ "learning_rate": 9.299121998271918e-07,
233
+ "loss": 0.9629,
234
+ "step": 3200
235
+ },
236
+ {
237
+ "epoch": 0.7387508394895903,
238
+ "grad_norm": 8.05592155456543,
239
+ "learning_rate": 7.970840453342679e-07,
240
+ "loss": 0.9799,
241
+ "step": 3300
242
+ },
243
+ {
244
+ "epoch": 0.7611372285650324,
245
+ "grad_norm": 11.015290260314941,
246
+ "learning_rate": 6.726753082323087e-07,
247
+ "loss": 0.8752,
248
+ "step": 3400
249
+ },
250
+ {
251
+ "epoch": 0.7835236176404746,
252
+ "grad_norm": 8.78658390045166,
253
+ "learning_rate": 5.573010799953652e-07,
254
+ "loss": 0.8905,
255
+ "step": 3500
256
+ },
257
+ {
258
+ "epoch": 0.8059100067159167,
259
+ "grad_norm": 11.667632102966309,
260
+ "learning_rate": 4.515317844197653e-07,
261
+ "loss": 0.9166,
262
+ "step": 3600
263
+ },
264
+ {
265
+ "epoch": 0.8282963957913588,
266
+ "grad_norm": 8.403421401977539,
267
+ "learning_rate": 3.5589035738156305e-07,
268
+ "loss": 0.9322,
269
+ "step": 3700
270
+ },
271
+ {
272
+ "epoch": 0.8506827848668009,
273
+ "grad_norm": 11.51596450805664,
274
+ "learning_rate": 2.708496613798717e-07,
275
+ "loss": 0.909,
276
+ "step": 3800
277
+ },
278
+ {
279
+ "epoch": 0.8730691739422431,
280
+ "grad_norm": 6.4879045486450195,
281
+ "learning_rate": 1.9683014764887682e-07,
282
+ "loss": 0.9552,
283
+ "step": 3900
284
+ },
285
+ {
286
+ "epoch": 0.8954555630176853,
287
+ "grad_norm": 11.149494171142578,
288
+ "learning_rate": 1.3419777739733408e-07,
289
+ "loss": 0.9242,
290
+ "step": 4000
291
+ },
292
+ {
293
+ "epoch": 0.9178419520931274,
294
+ "grad_norm": 8.041584014892578,
295
+ "learning_rate": 8.326221245317373e-08,
296
+ "loss": 0.9278,
297
+ "step": 4100
298
+ },
299
+ {
300
+ "epoch": 0.9402283411685695,
301
+ "grad_norm": 9.19898796081543,
302
+ "learning_rate": 4.427528425888977e-08,
303
+ "loss": 0.8939,
304
+ "step": 4200
305
+ },
306
+ {
307
+ "epoch": 0.9626147302440117,
308
+ "grad_norm": 9.239889144897461,
309
+ "learning_rate": 1.7429748787176626e-08,
310
+ "loss": 0.9563,
311
+ "step": 4300
312
+ },
313
+ {
314
+ "epoch": 0.9850011193194538,
315
+ "grad_norm": 6.8510565757751465,
316
+ "learning_rate": 2.8583335326598516e-09,
317
+ "loss": 0.961,
318
+ "step": 4400
319
+ }
320
+ ],
321
+ "logging_steps": 100,
322
+ "max_steps": 4467,
323
+ "num_input_tokens_seen": 0,
324
+ "num_train_epochs": 1,
325
+ "save_steps": 100000,
326
+ "stateful_callbacks": {
327
+ "TrainerControl": {
328
+ "args": {
329
+ "should_epoch_stop": false,
330
+ "should_evaluate": false,
331
+ "should_log": false,
332
+ "should_save": true,
333
+ "should_training_stop": true
334
+ },
335
+ "attributes": {}
336
+ }
337
+ },
338
+ "total_flos": 2.417341778362368e+16,
339
+ "train_batch_size": 4,
340
+ "trial_name": null,
341
+ "trial_params": null
342
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18779069295d4fb496b6ef1c071438cc814f890abd5a4efec426d22b7fe46a44
3
+ size 5304
vocab.json ADDED
The diff for this file is too large to render. See raw diff