delimitter commited on
Commit
088b37d
·
verified ·
1 Parent(s): 1cb2c58

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ 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
+ checkpoint-800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-945/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "Qwen/Qwen2.5-Coder-3B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "o_proj",
33
+ "q_proj",
34
+ "k_proj",
35
+ "v_proj",
36
+ "down_proj",
37
+ "up_proj",
38
+ "gate_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dfd7fd939deef499d38be9c540585f139549a88e891e2a576a8742f49dd64d7
3
+ size 119801528
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# 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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-800/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: /home/abubnov/models/qwen2.5-coder-3b
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:/home/abubnov/models/qwen2.5-coder-3b
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
checkpoint-800/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "/home/abubnov/models/qwen2.5-coder-3b",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "o_proj",
33
+ "q_proj",
34
+ "k_proj",
35
+ "v_proj",
36
+ "down_proj",
37
+ "up_proj",
38
+ "gate_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-800/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ad2fd6ef13205de8bd934dbab414e4704b03a69c359b27da93b4aafe55033c2
3
+ size 119801528
checkpoint-800/chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# 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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-800/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d481e3ed49b541a4fee952f11606819c7092cd936d5e1d12461901145b225a8f
3
+ size 239892858
checkpoint-800/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d78d6e2dcd9575c3d0177be9f586b5c353b276ac90c1f2cdabbb177fc2781a1f
3
+ size 14244
checkpoint-800/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a8804bb16a95c6215e163e5607c21273c5f5e8569936763fccf81c35efa28a2
3
+ size 1064
checkpoint-800/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
checkpoint-800/tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "model_max_length": 32768,
25
+ "pad_token": "<|endoftext|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }
checkpoint-800/trainer_state.json ADDED
@@ -0,0 +1,834 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.5396825396825395,
6
+ "eval_steps": 500,
7
+ "global_step": 800,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.7227754831314086,
14
+ "epoch": 0.031746031746031744,
15
+ "grad_norm": 1.1366468667984009,
16
+ "learning_rate": 9e-05,
17
+ "loss": 2.8658143997192385,
18
+ "mean_token_accuracy": 0.5204534128308296,
19
+ "num_tokens": 5666.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.1383487015962601,
24
+ "epoch": 0.06349206349206349,
25
+ "grad_norm": 0.24305662512779236,
26
+ "learning_rate": 0.00019,
27
+ "loss": 1.157881259918213,
28
+ "mean_token_accuracy": 0.747118815779686,
29
+ "num_tokens": 11228.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.6970422968268395,
34
+ "epoch": 0.09523809523809523,
35
+ "grad_norm": 0.16163931787014008,
36
+ "learning_rate": 0.00019995328702916715,
37
+ "loss": 0.7050998210906982,
38
+ "mean_token_accuracy": 0.8266415625810624,
39
+ "num_tokens": 16938.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.5631089679896831,
44
+ "epoch": 0.12698412698412698,
45
+ "grad_norm": 0.1934506595134735,
46
+ "learning_rate": 0.00019979186612193827,
47
+ "loss": 0.518431282043457,
48
+ "mean_token_accuracy": 0.8579314455389977,
49
+ "num_tokens": 22355.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.4461665920913219,
54
+ "epoch": 0.15873015873015872,
55
+ "grad_norm": 0.19076411426067352,
56
+ "learning_rate": 0.00019951534671117278,
57
+ "loss": 0.4521681785583496,
58
+ "mean_token_accuracy": 0.8751249805092811,
59
+ "num_tokens": 28033.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.4643573462963104,
64
+ "epoch": 0.19047619047619047,
65
+ "grad_norm": 0.15169695019721985,
66
+ "learning_rate": 0.0001991240477303831,
67
+ "loss": 0.4400327682495117,
68
+ "mean_token_accuracy": 0.8792907446622849,
69
+ "num_tokens": 33491.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.365592984110117,
74
+ "epoch": 0.2222222222222222,
75
+ "grad_norm": 0.19082750380039215,
76
+ "learning_rate": 0.00019861842049818747,
77
+ "loss": 0.3689171075820923,
78
+ "mean_token_accuracy": 0.8955714568495751,
79
+ "num_tokens": 39334.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.3994899570941925,
84
+ "epoch": 0.25396825396825395,
85
+ "grad_norm": 0.22246494889259338,
86
+ "learning_rate": 0.0001979990481977654,
87
+ "loss": 0.38646960258483887,
88
+ "mean_token_accuracy": 0.8857234820723534,
89
+ "num_tokens": 44818.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.366699343547225,
94
+ "epoch": 0.2857142857142857,
95
+ "grad_norm": 0.10320783406496048,
96
+ "learning_rate": 0.00019726664520422255,
97
+ "loss": 0.3445246458053589,
98
+ "mean_token_accuracy": 0.8934612423181534,
99
+ "num_tokens": 50677.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.3574436727911234,
104
+ "epoch": 0.31746031746031744,
105
+ "grad_norm": 0.11693304032087326,
106
+ "learning_rate": 0.00019642205626064092,
107
+ "loss": 0.35196170806884763,
108
+ "mean_token_accuracy": 0.8924582287669182,
109
+ "num_tokens": 56210.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.3415878858417273,
114
+ "epoch": 0.3492063492063492,
115
+ "grad_norm": 0.1074284091591835,
116
+ "learning_rate": 0.00019546625550376416,
117
+ "loss": 0.33331873416900637,
118
+ "mean_token_accuracy": 0.8991662472486496,
119
+ "num_tokens": 62063.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.32437219470739365,
124
+ "epoch": 0.38095238095238093,
125
+ "grad_norm": 0.11062154173851013,
126
+ "learning_rate": 0.00019440034534044237,
127
+ "loss": 0.30573971271514894,
128
+ "mean_token_accuracy": 0.9001727238297462,
129
+ "num_tokens": 67992.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.3190695196390152,
134
+ "epoch": 0.4126984126984127,
135
+ "grad_norm": 0.11065158247947693,
136
+ "learning_rate": 0.00019322555517613187,
137
+ "loss": 0.31588168144226075,
138
+ "mean_token_accuracy": 0.9023894265294075,
139
+ "num_tokens": 73587.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.32216995768249035,
144
+ "epoch": 0.4444444444444444,
145
+ "grad_norm": 0.14468607306480408,
146
+ "learning_rate": 0.0001919432399969165,
147
+ "loss": 0.3158241271972656,
148
+ "mean_token_accuracy": 0.9021097734570503,
149
+ "num_tokens": 79119.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.31658302918076514,
154
+ "epoch": 0.47619047619047616,
155
+ "grad_norm": 0.09196920692920685,
156
+ "learning_rate": 0.00019055487880668634,
157
+ "loss": 0.30810258388519285,
158
+ "mean_token_accuracy": 0.9032961145043373,
159
+ "num_tokens": 84949.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.3345262251794338,
164
+ "epoch": 0.5079365079365079,
165
+ "grad_norm": 0.0972098857164383,
166
+ "learning_rate": 0.00018906207292127578,
167
+ "loss": 0.3160905122756958,
168
+ "mean_token_accuracy": 0.9008760690689087,
169
+ "num_tokens": 90418.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.276963048055768,
174
+ "epoch": 0.5396825396825397,
175
+ "grad_norm": 0.0893082544207573,
176
+ "learning_rate": 0.00018746654412152888,
177
+ "loss": 0.28638601303100586,
178
+ "mean_token_accuracy": 0.9065180748701096,
179
+ "num_tokens": 96436.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.324129705876112,
184
+ "epoch": 0.5714285714285714,
185
+ "grad_norm": 0.07999411970376968,
186
+ "learning_rate": 0.00018577013266742206,
187
+ "loss": 0.305109429359436,
188
+ "mean_token_accuracy": 0.9052717864513398,
189
+ "num_tokens": 102223.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.3255684822797775,
194
+ "epoch": 0.6031746031746031,
195
+ "grad_norm": 0.09610118716955185,
196
+ "learning_rate": 0.00018397479517553484,
197
+ "loss": 0.3202303647994995,
198
+ "mean_token_accuracy": 0.8935918360948563,
199
+ "num_tokens": 107629.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.31572582088410855,
204
+ "epoch": 0.6349206349206349,
205
+ "grad_norm": 0.12048293650150299,
206
+ "learning_rate": 0.00018208260236231622,
207
+ "loss": 0.30115087032318116,
208
+ "mean_token_accuracy": 0.9004874512553215,
209
+ "num_tokens": 113055.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.30431781969964505,
214
+ "epoch": 0.6666666666666666,
215
+ "grad_norm": 0.10186965018510818,
216
+ "learning_rate": 0.00018009573665575025,
217
+ "loss": 0.30716614723205565,
218
+ "mean_token_accuracy": 0.8994262963533401,
219
+ "num_tokens": 118543.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.2934673883020878,
224
+ "epoch": 0.6984126984126984,
225
+ "grad_norm": 0.06708242744207382,
226
+ "learning_rate": 0.00017801648967817496,
227
+ "loss": 0.28838367462158204,
228
+ "mean_token_accuracy": 0.9054950103163719,
229
+ "num_tokens": 124352.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.33580498173832896,
234
+ "epoch": 0.7301587301587301,
235
+ "grad_norm": 0.08463180810213089,
236
+ "learning_rate": 0.00017584725960315798,
237
+ "loss": 0.31860477924346925,
238
+ "mean_token_accuracy": 0.8984977260231972,
239
+ "num_tokens": 129580.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.28108432702720165,
244
+ "epoch": 0.7619047619047619,
245
+ "grad_norm": 0.08562931418418884,
246
+ "learning_rate": 0.00017359054838947776,
247
+ "loss": 0.28187878131866456,
248
+ "mean_token_accuracy": 0.9082333862781524,
249
+ "num_tokens": 135436.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.2990231603384018,
254
+ "epoch": 0.7936507936507936,
255
+ "grad_norm": 0.09380577504634857,
256
+ "learning_rate": 0.0001712489588954002,
257
+ "loss": 0.28119051456451416,
258
+ "mean_token_accuracy": 0.9102276802062989,
259
+ "num_tokens": 141182.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.30382733382284643,
264
+ "epoch": 0.8253968253968254,
265
+ "grad_norm": 0.07645034790039062,
266
+ "learning_rate": 0.00016882519187657948,
267
+ "loss": 0.29003133773803713,
268
+ "mean_token_accuracy": 0.9052957415580749,
269
+ "num_tokens": 146683.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.27974450327455996,
274
+ "epoch": 0.8571428571428571,
275
+ "grad_norm": 0.07793932408094406,
276
+ "learning_rate": 0.00016632204287104517,
277
+ "loss": 0.28378610610961913,
278
+ "mean_token_accuracy": 0.9071699053049087,
279
+ "num_tokens": 152464.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.27756214514374733,
284
+ "epoch": 0.8888888888888888,
285
+ "grad_norm": 0.08467274904251099,
286
+ "learning_rate": 0.000163742398974869,
287
+ "loss": 0.27063760757446287,
288
+ "mean_token_accuracy": 0.9070401296019555,
289
+ "num_tokens": 158366.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.2848128478974104,
294
+ "epoch": 0.9206349206349206,
295
+ "grad_norm": 0.08799296617507935,
296
+ "learning_rate": 0.00016108923551222954,
297
+ "loss": 0.2736989974975586,
298
+ "mean_token_accuracy": 0.9117912963032723,
299
+ "num_tokens": 164354.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.2887926273047924,
304
+ "epoch": 0.9523809523809523,
305
+ "grad_norm": 0.08142666518688202,
306
+ "learning_rate": 0.00015836561260371642,
307
+ "loss": 0.2762760639190674,
308
+ "mean_token_accuracy": 0.9110032752156257,
309
+ "num_tokens": 170194.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.2911578442901373,
314
+ "epoch": 0.9841269841269841,
315
+ "grad_norm": 0.07968642562627792,
316
+ "learning_rate": 0.00015557467163683093,
317
+ "loss": 0.28809950351715086,
318
+ "mean_token_accuracy": 0.9043565198779107,
319
+ "num_tokens": 175853.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.2943920481950045,
324
+ "epoch": 1.0158730158730158,
325
+ "grad_norm": 0.08365320414304733,
326
+ "learning_rate": 0.00015271963164275495,
327
+ "loss": 0.27865099906921387,
328
+ "mean_token_accuracy": 0.9042463362216949,
329
+ "num_tokens": 181430.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.2911732569336891,
334
+ "epoch": 1.0476190476190477,
335
+ "grad_norm": 0.08910917490720749,
336
+ "learning_rate": 0.00014980378558356668,
337
+ "loss": 0.28408806324005126,
338
+ "mean_token_accuracy": 0.9075512051582336,
339
+ "num_tokens": 186823.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.27633472084999083,
344
+ "epoch": 1.0793650793650793,
345
+ "grad_norm": 0.054748956114053726,
346
+ "learning_rate": 0.00014683049655418566,
347
+ "loss": 0.27398593425750734,
348
+ "mean_token_accuracy": 0.9088717252016068,
349
+ "num_tokens": 192618.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.29899220876395705,
354
+ "epoch": 1.1111111111111112,
355
+ "grad_norm": 0.1026228591799736,
356
+ "learning_rate": 0.00014380319390342713,
357
+ "loss": 0.27963986396789553,
358
+ "mean_token_accuracy": 0.9076534271240234,
359
+ "num_tokens": 198264.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.27999303340911863,
364
+ "epoch": 1.1428571428571428,
365
+ "grad_norm": 0.07460694015026093,
366
+ "learning_rate": 0.00014072536927864067,
367
+ "loss": 0.27371869087219236,
368
+ "mean_token_accuracy": 0.9113201141357422,
369
+ "num_tokens": 203999.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.2836035009473562,
374
+ "epoch": 1.1746031746031746,
375
+ "grad_norm": 0.05994534492492676,
376
+ "learning_rate": 0.0001376005725984943,
377
+ "loss": 0.2734062671661377,
378
+ "mean_token_accuracy": 0.9102857768535614,
379
+ "num_tokens": 209875.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.27055577710270884,
384
+ "epoch": 1.2063492063492063,
385
+ "grad_norm": 0.15462082624435425,
386
+ "learning_rate": 0.00013443240795854932,
387
+ "loss": 0.26778972148895264,
388
+ "mean_token_accuracy": 0.9114238187670708,
389
+ "num_tokens": 215695.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.28204834908246995,
394
+ "epoch": 1.2380952380952381,
395
+ "grad_norm": 0.08471743762493134,
396
+ "learning_rate": 0.00013122452947434828,
397
+ "loss": 0.2707425594329834,
398
+ "mean_token_accuracy": 0.9076912581920624,
399
+ "num_tokens": 221300.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.2921843770891428,
404
+ "epoch": 1.2698412698412698,
405
+ "grad_norm": 0.06258587539196014,
406
+ "learning_rate": 0.00012798063706681058,
407
+ "loss": 0.2830580949783325,
408
+ "mean_token_accuracy": 0.9059961527585983,
409
+ "num_tokens": 226770.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.27955467700958253,
414
+ "epoch": 1.3015873015873016,
415
+ "grad_norm": 0.11677869409322739,
416
+ "learning_rate": 0.00012470447219479713,
417
+ "loss": 0.2767421960830688,
418
+ "mean_token_accuracy": 0.9056397631764412,
419
+ "num_tokens": 232493.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.2816464897245169,
424
+ "epoch": 1.3333333333333333,
425
+ "grad_norm": 0.20853769779205322,
426
+ "learning_rate": 0.00012139981353976524,
427
+ "loss": 0.2793292760848999,
428
+ "mean_token_accuracy": 0.9049514532089233,
429
+ "num_tokens": 238158.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.2885897036641836,
434
+ "epoch": 1.3650793650793651,
435
+ "grad_norm": 0.07681034505367279,
436
+ "learning_rate": 0.00011807047264749189,
437
+ "loss": 0.2701925039291382,
438
+ "mean_token_accuracy": 0.9056044742465019,
439
+ "num_tokens": 243766.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.28189543783664706,
444
+ "epoch": 1.3968253968253967,
445
+ "grad_norm": 0.06424044817686081,
446
+ "learning_rate": 0.0001147202895318916,
447
+ "loss": 0.2593745470046997,
448
+ "mean_token_accuracy": 0.9096330463886261,
449
+ "num_tokens": 249691.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.28342911675572396,
454
+ "epoch": 1.4285714285714286,
455
+ "grad_norm": 0.1278621256351471,
456
+ "learning_rate": 0.0001113531282459996,
457
+ "loss": 0.28381073474884033,
458
+ "mean_token_accuracy": 0.9061736151576042,
459
+ "num_tokens": 255233.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.28202038891613485,
464
+ "epoch": 1.4603174603174602,
465
+ "grad_norm": 0.06751440465450287,
466
+ "learning_rate": 0.00010797287242522858,
467
+ "loss": 0.27419445514678953,
468
+ "mean_token_accuracy": 0.9094104260206223,
469
+ "num_tokens": 260859.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.27363024093210697,
474
+ "epoch": 1.492063492063492,
475
+ "grad_norm": 0.06995254009962082,
476
+ "learning_rate": 0.00010458342080803956,
477
+ "loss": 0.2693720817565918,
478
+ "mean_token_accuracy": 0.9083198413252831,
479
+ "num_tokens": 266554.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.2726555660367012,
484
+ "epoch": 1.5238095238095237,
485
+ "grad_norm": 0.09802178293466568,
486
+ "learning_rate": 0.00010118868273919284,
487
+ "loss": 0.2669402837753296,
488
+ "mean_token_accuracy": 0.9095989406108856,
489
+ "num_tokens": 272262.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.2873748764395714,
494
+ "epoch": 1.5555555555555556,
495
+ "grad_norm": 0.059039562940597534,
496
+ "learning_rate": 9.779257366076608e-05,
497
+ "loss": 0.27708461284637453,
498
+ "mean_token_accuracy": 0.907341231405735,
499
+ "num_tokens": 277809.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.28209226317703723,
504
+ "epoch": 1.5873015873015874,
505
+ "grad_norm": 0.07545655220746994,
506
+ "learning_rate": 9.439901059613973e-05,
507
+ "loss": 0.2581690549850464,
508
+ "mean_token_accuracy": 0.9121931448578835,
509
+ "num_tokens": 283664.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.272804581746459,
514
+ "epoch": 1.619047619047619,
515
+ "grad_norm": 0.07380068302154541,
516
+ "learning_rate": 9.101190763215848e-05,
517
+ "loss": 0.26886236667633057,
518
+ "mean_token_accuracy": 0.9086462184786797,
519
+ "num_tokens": 289371.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.28114392757415774,
524
+ "epoch": 1.6507936507936507,
525
+ "grad_norm": 0.078324094414711,
526
+ "learning_rate": 8.763517140467981e-05,
527
+ "loss": 0.27371978759765625,
528
+ "mean_token_accuracy": 0.9067111536860466,
529
+ "num_tokens": 294986.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.28820689432322977,
534
+ "epoch": 1.6825396825396826,
535
+ "grad_norm": 0.10492384433746338,
536
+ "learning_rate": 8.42726965927164e-05,
537
+ "loss": 0.2796510696411133,
538
+ "mean_token_accuracy": 0.9053183734416962,
539
+ "num_tokens": 300487.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.26856297068297863,
544
+ "epoch": 1.7142857142857144,
545
+ "grad_norm": 0.0673430785536766,
546
+ "learning_rate": 8.092836142636932e-05,
547
+ "loss": 0.2611644506454468,
548
+ "mean_token_accuracy": 0.9129276722669601,
549
+ "num_tokens": 306372.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.29797249287366867,
554
+ "epoch": 1.746031746031746,
555
+ "grad_norm": 0.06676393002271652,
556
+ "learning_rate": 7.760602321373322e-05,
557
+ "loss": 0.28323547840118407,
558
+ "mean_token_accuracy": 0.9016937434673309,
559
+ "num_tokens": 311775.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.2688152402639389,
564
+ "epoch": 1.7777777777777777,
565
+ "grad_norm": 0.08283069729804993,
566
+ "learning_rate": 7.43095138919326e-05,
567
+ "loss": 0.2640655517578125,
568
+ "mean_token_accuracy": 0.902265977859497,
569
+ "num_tokens": 317591.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.29286824017763136,
574
+ "epoch": 1.8095238095238095,
575
+ "grad_norm": 0.05436806008219719,
576
+ "learning_rate": 7.104263560742067e-05,
577
+ "loss": 0.27632272243499756,
578
+ "mean_token_accuracy": 0.9019043281674385,
579
+ "num_tokens": 323077.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.2781177669763565,
584
+ "epoch": 1.8412698412698414,
585
+ "grad_norm": 0.05500198155641556,
586
+ "learning_rate": 6.780915633063827e-05,
587
+ "loss": 0.27087790966033937,
588
+ "mean_token_accuracy": 0.9046190366148948,
589
+ "num_tokens": 328692.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.27223661690950396,
594
+ "epoch": 1.873015873015873,
595
+ "grad_norm": 0.07625019550323486,
596
+ "learning_rate": 6.461280551009096e-05,
597
+ "loss": 0.26836280822753905,
598
+ "mean_token_accuracy": 0.9067093715071678,
599
+ "num_tokens": 334381.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.27323946319520476,
604
+ "epoch": 1.9047619047619047,
605
+ "grad_norm": 0.072757288813591,
606
+ "learning_rate": 6.145726977085669e-05,
607
+ "loss": 0.2648139953613281,
608
+ "mean_token_accuracy": 0.90970708578825,
609
+ "num_tokens": 340111.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.2718470089137554,
614
+ "epoch": 1.9365079365079365,
615
+ "grad_norm": 0.06298787891864777,
616
+ "learning_rate": 5.8346188662485536e-05,
617
+ "loss": 0.2643317461013794,
618
+ "mean_token_accuracy": 0.904901784658432,
619
+ "num_tokens": 345896.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.28305209055542946,
624
+ "epoch": 1.9682539682539684,
625
+ "grad_norm": 0.0733041912317276,
626
+ "learning_rate": 5.528315046119544e-05,
627
+ "loss": 0.2636791944503784,
628
+ "mean_token_accuracy": 0.9123735308647156,
629
+ "num_tokens": 351673.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.2617435783147812,
634
+ "epoch": 2.0,
635
+ "grad_norm": 0.07501133531332016,
636
+ "learning_rate": 5.227168803120619e-05,
637
+ "loss": 0.26242828369140625,
638
+ "mean_token_accuracy": 0.9104171916842461,
639
+ "num_tokens": 357322.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.26802175454795363,
644
+ "epoch": 2.0317460317460316,
645
+ "grad_norm": 0.04739142954349518,
646
+ "learning_rate": 4.931527474998444e-05,
647
+ "loss": 0.25396668910980225,
648
+ "mean_token_accuracy": 0.9118479937314987,
649
+ "num_tokens": 363159.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.27135957442224024,
654
+ "epoch": 2.0634920634920633,
655
+ "grad_norm": 0.07097524404525757,
656
+ "learning_rate": 4.6417320502100316e-05,
657
+ "loss": 0.25786685943603516,
658
+ "mean_token_accuracy": 0.9111087501049042,
659
+ "num_tokens": 368909.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.2646398801356554,
664
+ "epoch": 2.0952380952380953,
665
+ "grad_norm": 0.05924823880195618,
666
+ "learning_rate": 4.35811677463153e-05,
667
+ "loss": 0.2504109382629395,
668
+ "mean_token_accuracy": 0.9110997319221497,
669
+ "num_tokens": 374682.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.27993031218647957,
674
+ "epoch": 2.126984126984127,
675
+ "grad_norm": 0.058568164706230164,
676
+ "learning_rate": 4.081008766043856e-05,
677
+ "loss": 0.2658329963684082,
678
+ "mean_token_accuracy": 0.906340380012989,
679
+ "num_tokens": 380133.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.270343242585659,
684
+ "epoch": 2.1587301587301586,
685
+ "grad_norm": 0.07652401179075241,
686
+ "learning_rate": 3.810727636839739e-05,
687
+ "loss": 0.26411163806915283,
688
+ "mean_token_accuracy": 0.9062801778316498,
689
+ "num_tokens": 385694.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.26379697881639,
694
+ "epoch": 2.1904761904761907,
695
+ "grad_norm": 0.06572549045085907,
696
+ "learning_rate": 3.547585125387394e-05,
697
+ "loss": 0.26352672576904296,
698
+ "mean_token_accuracy": 0.9080587550997734,
699
+ "num_tokens": 391353.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.2779304336756468,
704
+ "epoch": 2.2222222222222223,
705
+ "grad_norm": 0.0634949803352356,
706
+ "learning_rate": 3.2918847364759556e-05,
707
+ "loss": 0.26194489002227783,
708
+ "mean_token_accuracy": 0.9062734320759773,
709
+ "num_tokens": 396876.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.2617481011897326,
714
+ "epoch": 2.253968253968254,
715
+ "grad_norm": 0.05917736515402794,
716
+ "learning_rate": 3.0439213912574304e-05,
717
+ "loss": 0.26019647121429446,
718
+ "mean_token_accuracy": 0.9100751489400863,
719
+ "num_tokens": 402577.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.2559076685458422,
724
+ "epoch": 2.2857142857142856,
725
+ "grad_norm": 0.07124771922826767,
726
+ "learning_rate": 2.8039810870888762e-05,
727
+ "loss": 0.25075175762176516,
728
+ "mean_token_accuracy": 0.9124972775578499,
729
+ "num_tokens": 408405.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.2648021761327982,
734
+ "epoch": 2.317460317460317,
735
+ "grad_norm": 0.06209827587008476,
736
+ "learning_rate": 2.5723405676671584e-05,
737
+ "loss": 0.24744985103607178,
738
+ "mean_token_accuracy": 0.915162692964077,
739
+ "num_tokens": 414204.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.2807385498657823,
744
+ "epoch": 2.3492063492063493,
745
+ "grad_norm": 0.0612325593829155,
746
+ "learning_rate": 2.349267003836757e-05,
747
+ "loss": 0.26713953018188474,
748
+ "mean_token_accuracy": 0.9052686139941215,
749
+ "num_tokens": 419721.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.2669257506728172,
754
+ "epoch": 2.380952380952381,
755
+ "grad_norm": 0.06792369484901428,
756
+ "learning_rate": 2.1350176854387492e-05,
757
+ "loss": 0.26758475303649903,
758
+ "mean_token_accuracy": 0.9066236048936844,
759
+ "num_tokens": 425297.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.2817291833460331,
764
+ "epoch": 2.4126984126984126,
765
+ "grad_norm": 0.07440292090177536,
766
+ "learning_rate": 1.9298397245564125e-05,
767
+ "loss": 0.26947109699249266,
768
+ "mean_token_accuracy": 0.9070651844143868,
769
+ "num_tokens": 430708.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.2823494378477335,
774
+ "epoch": 2.4444444444444446,
775
+ "grad_norm": 0.08691683411598206,
776
+ "learning_rate": 1.733969770499697e-05,
777
+ "loss": 0.2715198040008545,
778
+ "mean_token_accuracy": 0.9081029698252678,
779
+ "num_tokens": 436157.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.2502023309469223,
784
+ "epoch": 2.4761904761904763,
785
+ "grad_norm": 0.057402949780225754,
786
+ "learning_rate": 1.547633736857308e-05,
787
+ "loss": 0.24733474254608154,
788
+ "mean_token_accuracy": 0.9128626599907875,
789
+ "num_tokens": 442078.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.2789640363305807,
794
+ "epoch": 2.507936507936508,
795
+ "grad_norm": 0.08202935755252838,
796
+ "learning_rate": 1.3710465409312356e-05,
797
+ "loss": 0.2598316431045532,
798
+ "mean_token_accuracy": 0.9110502526164055,
799
+ "num_tokens": 447709.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.2569702621549368,
804
+ "epoch": 2.5396825396825395,
805
+ "grad_norm": 0.0657891258597374,
806
+ "learning_rate": 1.2044118558542183e-05,
807
+ "loss": 0.2518922805786133,
808
+ "mean_token_accuracy": 0.913571135699749,
809
+ "num_tokens": 453518.0,
810
+ "step": 800
811
+ }
812
+ ],
813
+ "logging_steps": 10,
814
+ "max_steps": 945,
815
+ "num_input_tokens_seen": 0,
816
+ "num_train_epochs": 3,
817
+ "save_steps": 200,
818
+ "stateful_callbacks": {
819
+ "TrainerControl": {
820
+ "args": {
821
+ "should_epoch_stop": false,
822
+ "should_evaluate": false,
823
+ "should_log": false,
824
+ "should_save": true,
825
+ "should_training_stop": false
826
+ },
827
+ "attributes": {}
828
+ }
829
+ },
830
+ "total_flos": 1.0863910427885568e+16,
831
+ "train_batch_size": 4,
832
+ "trial_name": null,
833
+ "trial_params": null
834
+ }
checkpoint-800/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fb601ecd2bf594898b1129204a988d020e0fdb23c6d6e6733f079e88458dd3d
3
+ size 5176
checkpoint-945/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: /home/abubnov/models/qwen2.5-coder-3b
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:/home/abubnov/models/qwen2.5-coder-3b
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
checkpoint-945/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "/home/abubnov/models/qwen2.5-coder-3b",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "o_proj",
33
+ "q_proj",
34
+ "k_proj",
35
+ "v_proj",
36
+ "down_proj",
37
+ "up_proj",
38
+ "gate_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-945/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dfd7fd939deef499d38be9c540585f139549a88e891e2a576a8742f49dd64d7
3
+ size 119801528
checkpoint-945/chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
7
+ {%- endif %}
8
+ {{- "\n\n# 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>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\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" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
checkpoint-945/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d4787e9094d70de781a5845174717cb1fbe26fa26a42314c799d4620da962c6
3
+ size 239892858
checkpoint-945/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:577dffedea14e4943031f7fa8384abd7e5877404899ede90492d0de9eac57fa4
3
+ size 14244
checkpoint-945/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6aeea9621b1c05fb9d17060ccfa15672bc0b0a478b1c25e2ee28cbf69f61cccd
3
+ size 1064
checkpoint-945/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
checkpoint-945/tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "model_max_length": 32768,
25
+ "pad_token": "<|endoftext|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }
checkpoint-945/trainer_state.json ADDED
@@ -0,0 +1,974 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 945,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.7227754831314086,
14
+ "epoch": 0.031746031746031744,
15
+ "grad_norm": 1.1366468667984009,
16
+ "learning_rate": 9e-05,
17
+ "loss": 2.8658143997192385,
18
+ "mean_token_accuracy": 0.5204534128308296,
19
+ "num_tokens": 5666.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.1383487015962601,
24
+ "epoch": 0.06349206349206349,
25
+ "grad_norm": 0.24305662512779236,
26
+ "learning_rate": 0.00019,
27
+ "loss": 1.157881259918213,
28
+ "mean_token_accuracy": 0.747118815779686,
29
+ "num_tokens": 11228.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.6970422968268395,
34
+ "epoch": 0.09523809523809523,
35
+ "grad_norm": 0.16163931787014008,
36
+ "learning_rate": 0.00019995328702916715,
37
+ "loss": 0.7050998210906982,
38
+ "mean_token_accuracy": 0.8266415625810624,
39
+ "num_tokens": 16938.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.5631089679896831,
44
+ "epoch": 0.12698412698412698,
45
+ "grad_norm": 0.1934506595134735,
46
+ "learning_rate": 0.00019979186612193827,
47
+ "loss": 0.518431282043457,
48
+ "mean_token_accuracy": 0.8579314455389977,
49
+ "num_tokens": 22355.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.4461665920913219,
54
+ "epoch": 0.15873015873015872,
55
+ "grad_norm": 0.19076411426067352,
56
+ "learning_rate": 0.00019951534671117278,
57
+ "loss": 0.4521681785583496,
58
+ "mean_token_accuracy": 0.8751249805092811,
59
+ "num_tokens": 28033.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.4643573462963104,
64
+ "epoch": 0.19047619047619047,
65
+ "grad_norm": 0.15169695019721985,
66
+ "learning_rate": 0.0001991240477303831,
67
+ "loss": 0.4400327682495117,
68
+ "mean_token_accuracy": 0.8792907446622849,
69
+ "num_tokens": 33491.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.365592984110117,
74
+ "epoch": 0.2222222222222222,
75
+ "grad_norm": 0.19082750380039215,
76
+ "learning_rate": 0.00019861842049818747,
77
+ "loss": 0.3689171075820923,
78
+ "mean_token_accuracy": 0.8955714568495751,
79
+ "num_tokens": 39334.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.3994899570941925,
84
+ "epoch": 0.25396825396825395,
85
+ "grad_norm": 0.22246494889259338,
86
+ "learning_rate": 0.0001979990481977654,
87
+ "loss": 0.38646960258483887,
88
+ "mean_token_accuracy": 0.8857234820723534,
89
+ "num_tokens": 44818.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.366699343547225,
94
+ "epoch": 0.2857142857142857,
95
+ "grad_norm": 0.10320783406496048,
96
+ "learning_rate": 0.00019726664520422255,
97
+ "loss": 0.3445246458053589,
98
+ "mean_token_accuracy": 0.8934612423181534,
99
+ "num_tokens": 50677.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.3574436727911234,
104
+ "epoch": 0.31746031746031744,
105
+ "grad_norm": 0.11693304032087326,
106
+ "learning_rate": 0.00019642205626064092,
107
+ "loss": 0.35196170806884763,
108
+ "mean_token_accuracy": 0.8924582287669182,
109
+ "num_tokens": 56210.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.3415878858417273,
114
+ "epoch": 0.3492063492063492,
115
+ "grad_norm": 0.1074284091591835,
116
+ "learning_rate": 0.00019546625550376416,
117
+ "loss": 0.33331873416900637,
118
+ "mean_token_accuracy": 0.8991662472486496,
119
+ "num_tokens": 62063.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.32437219470739365,
124
+ "epoch": 0.38095238095238093,
125
+ "grad_norm": 0.11062154173851013,
126
+ "learning_rate": 0.00019440034534044237,
127
+ "loss": 0.30573971271514894,
128
+ "mean_token_accuracy": 0.9001727238297462,
129
+ "num_tokens": 67992.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.3190695196390152,
134
+ "epoch": 0.4126984126984127,
135
+ "grad_norm": 0.11065158247947693,
136
+ "learning_rate": 0.00019322555517613187,
137
+ "loss": 0.31588168144226075,
138
+ "mean_token_accuracy": 0.9023894265294075,
139
+ "num_tokens": 73587.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.32216995768249035,
144
+ "epoch": 0.4444444444444444,
145
+ "grad_norm": 0.14468607306480408,
146
+ "learning_rate": 0.0001919432399969165,
147
+ "loss": 0.3158241271972656,
148
+ "mean_token_accuracy": 0.9021097734570503,
149
+ "num_tokens": 79119.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.31658302918076514,
154
+ "epoch": 0.47619047619047616,
155
+ "grad_norm": 0.09196920692920685,
156
+ "learning_rate": 0.00019055487880668634,
157
+ "loss": 0.30810258388519285,
158
+ "mean_token_accuracy": 0.9032961145043373,
159
+ "num_tokens": 84949.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.3345262251794338,
164
+ "epoch": 0.5079365079365079,
165
+ "grad_norm": 0.0972098857164383,
166
+ "learning_rate": 0.00018906207292127578,
167
+ "loss": 0.3160905122756958,
168
+ "mean_token_accuracy": 0.9008760690689087,
169
+ "num_tokens": 90418.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.276963048055768,
174
+ "epoch": 0.5396825396825397,
175
+ "grad_norm": 0.0893082544207573,
176
+ "learning_rate": 0.00018746654412152888,
177
+ "loss": 0.28638601303100586,
178
+ "mean_token_accuracy": 0.9065180748701096,
179
+ "num_tokens": 96436.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.324129705876112,
184
+ "epoch": 0.5714285714285714,
185
+ "grad_norm": 0.07999411970376968,
186
+ "learning_rate": 0.00018577013266742206,
187
+ "loss": 0.305109429359436,
188
+ "mean_token_accuracy": 0.9052717864513398,
189
+ "num_tokens": 102223.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.3255684822797775,
194
+ "epoch": 0.6031746031746031,
195
+ "grad_norm": 0.09610118716955185,
196
+ "learning_rate": 0.00018397479517553484,
197
+ "loss": 0.3202303647994995,
198
+ "mean_token_accuracy": 0.8935918360948563,
199
+ "num_tokens": 107629.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.31572582088410855,
204
+ "epoch": 0.6349206349206349,
205
+ "grad_norm": 0.12048293650150299,
206
+ "learning_rate": 0.00018208260236231622,
207
+ "loss": 0.30115087032318116,
208
+ "mean_token_accuracy": 0.9004874512553215,
209
+ "num_tokens": 113055.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.30431781969964505,
214
+ "epoch": 0.6666666666666666,
215
+ "grad_norm": 0.10186965018510818,
216
+ "learning_rate": 0.00018009573665575025,
217
+ "loss": 0.30716614723205565,
218
+ "mean_token_accuracy": 0.8994262963533401,
219
+ "num_tokens": 118543.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.2934673883020878,
224
+ "epoch": 0.6984126984126984,
225
+ "grad_norm": 0.06708242744207382,
226
+ "learning_rate": 0.00017801648967817496,
227
+ "loss": 0.28838367462158204,
228
+ "mean_token_accuracy": 0.9054950103163719,
229
+ "num_tokens": 124352.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.33580498173832896,
234
+ "epoch": 0.7301587301587301,
235
+ "grad_norm": 0.08463180810213089,
236
+ "learning_rate": 0.00017584725960315798,
237
+ "loss": 0.31860477924346925,
238
+ "mean_token_accuracy": 0.8984977260231972,
239
+ "num_tokens": 129580.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.28108432702720165,
244
+ "epoch": 0.7619047619047619,
245
+ "grad_norm": 0.08562931418418884,
246
+ "learning_rate": 0.00017359054838947776,
247
+ "loss": 0.28187878131866456,
248
+ "mean_token_accuracy": 0.9082333862781524,
249
+ "num_tokens": 135436.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.2990231603384018,
254
+ "epoch": 0.7936507936507936,
255
+ "grad_norm": 0.09380577504634857,
256
+ "learning_rate": 0.0001712489588954002,
257
+ "loss": 0.28119051456451416,
258
+ "mean_token_accuracy": 0.9102276802062989,
259
+ "num_tokens": 141182.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.30382733382284643,
264
+ "epoch": 0.8253968253968254,
265
+ "grad_norm": 0.07645034790039062,
266
+ "learning_rate": 0.00016882519187657948,
267
+ "loss": 0.29003133773803713,
268
+ "mean_token_accuracy": 0.9052957415580749,
269
+ "num_tokens": 146683.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.27974450327455996,
274
+ "epoch": 0.8571428571428571,
275
+ "grad_norm": 0.07793932408094406,
276
+ "learning_rate": 0.00016632204287104517,
277
+ "loss": 0.28378610610961913,
278
+ "mean_token_accuracy": 0.9071699053049087,
279
+ "num_tokens": 152464.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.27756214514374733,
284
+ "epoch": 0.8888888888888888,
285
+ "grad_norm": 0.08467274904251099,
286
+ "learning_rate": 0.000163742398974869,
287
+ "loss": 0.27063760757446287,
288
+ "mean_token_accuracy": 0.9070401296019555,
289
+ "num_tokens": 158366.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.2848128478974104,
294
+ "epoch": 0.9206349206349206,
295
+ "grad_norm": 0.08799296617507935,
296
+ "learning_rate": 0.00016108923551222954,
297
+ "loss": 0.2736989974975586,
298
+ "mean_token_accuracy": 0.9117912963032723,
299
+ "num_tokens": 164354.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.2887926273047924,
304
+ "epoch": 0.9523809523809523,
305
+ "grad_norm": 0.08142666518688202,
306
+ "learning_rate": 0.00015836561260371642,
307
+ "loss": 0.2762760639190674,
308
+ "mean_token_accuracy": 0.9110032752156257,
309
+ "num_tokens": 170194.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.2911578442901373,
314
+ "epoch": 0.9841269841269841,
315
+ "grad_norm": 0.07968642562627792,
316
+ "learning_rate": 0.00015557467163683093,
317
+ "loss": 0.28809950351715086,
318
+ "mean_token_accuracy": 0.9043565198779107,
319
+ "num_tokens": 175853.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.2943920481950045,
324
+ "epoch": 1.0158730158730158,
325
+ "grad_norm": 0.08365320414304733,
326
+ "learning_rate": 0.00015271963164275495,
327
+ "loss": 0.27865099906921387,
328
+ "mean_token_accuracy": 0.9042463362216949,
329
+ "num_tokens": 181430.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.2911732569336891,
334
+ "epoch": 1.0476190476190477,
335
+ "grad_norm": 0.08910917490720749,
336
+ "learning_rate": 0.00014980378558356668,
337
+ "loss": 0.28408806324005126,
338
+ "mean_token_accuracy": 0.9075512051582336,
339
+ "num_tokens": 186823.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.27633472084999083,
344
+ "epoch": 1.0793650793650793,
345
+ "grad_norm": 0.054748956114053726,
346
+ "learning_rate": 0.00014683049655418566,
347
+ "loss": 0.27398593425750734,
348
+ "mean_token_accuracy": 0.9088717252016068,
349
+ "num_tokens": 192618.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.29899220876395705,
354
+ "epoch": 1.1111111111111112,
355
+ "grad_norm": 0.1026228591799736,
356
+ "learning_rate": 0.00014380319390342713,
357
+ "loss": 0.27963986396789553,
358
+ "mean_token_accuracy": 0.9076534271240234,
359
+ "num_tokens": 198264.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.27999303340911863,
364
+ "epoch": 1.1428571428571428,
365
+ "grad_norm": 0.07460694015026093,
366
+ "learning_rate": 0.00014072536927864067,
367
+ "loss": 0.27371869087219236,
368
+ "mean_token_accuracy": 0.9113201141357422,
369
+ "num_tokens": 203999.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.2836035009473562,
374
+ "epoch": 1.1746031746031746,
375
+ "grad_norm": 0.05994534492492676,
376
+ "learning_rate": 0.0001376005725984943,
377
+ "loss": 0.2734062671661377,
378
+ "mean_token_accuracy": 0.9102857768535614,
379
+ "num_tokens": 209875.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.27055577710270884,
384
+ "epoch": 1.2063492063492063,
385
+ "grad_norm": 0.15462082624435425,
386
+ "learning_rate": 0.00013443240795854932,
387
+ "loss": 0.26778972148895264,
388
+ "mean_token_accuracy": 0.9114238187670708,
389
+ "num_tokens": 215695.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.28204834908246995,
394
+ "epoch": 1.2380952380952381,
395
+ "grad_norm": 0.08471743762493134,
396
+ "learning_rate": 0.00013122452947434828,
397
+ "loss": 0.2707425594329834,
398
+ "mean_token_accuracy": 0.9076912581920624,
399
+ "num_tokens": 221300.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.2921843770891428,
404
+ "epoch": 1.2698412698412698,
405
+ "grad_norm": 0.06258587539196014,
406
+ "learning_rate": 0.00012798063706681058,
407
+ "loss": 0.2830580949783325,
408
+ "mean_token_accuracy": 0.9059961527585983,
409
+ "num_tokens": 226770.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.27955467700958253,
414
+ "epoch": 1.3015873015873016,
415
+ "grad_norm": 0.11677869409322739,
416
+ "learning_rate": 0.00012470447219479713,
417
+ "loss": 0.2767421960830688,
418
+ "mean_token_accuracy": 0.9056397631764412,
419
+ "num_tokens": 232493.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.2816464897245169,
424
+ "epoch": 1.3333333333333333,
425
+ "grad_norm": 0.20853769779205322,
426
+ "learning_rate": 0.00012139981353976524,
427
+ "loss": 0.2793292760848999,
428
+ "mean_token_accuracy": 0.9049514532089233,
429
+ "num_tokens": 238158.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.2885897036641836,
434
+ "epoch": 1.3650793650793651,
435
+ "grad_norm": 0.07681034505367279,
436
+ "learning_rate": 0.00011807047264749189,
437
+ "loss": 0.2701925039291382,
438
+ "mean_token_accuracy": 0.9056044742465019,
439
+ "num_tokens": 243766.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.28189543783664706,
444
+ "epoch": 1.3968253968253967,
445
+ "grad_norm": 0.06424044817686081,
446
+ "learning_rate": 0.0001147202895318916,
447
+ "loss": 0.2593745470046997,
448
+ "mean_token_accuracy": 0.9096330463886261,
449
+ "num_tokens": 249691.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.28342911675572396,
454
+ "epoch": 1.4285714285714286,
455
+ "grad_norm": 0.1278621256351471,
456
+ "learning_rate": 0.0001113531282459996,
457
+ "loss": 0.28381073474884033,
458
+ "mean_token_accuracy": 0.9061736151576042,
459
+ "num_tokens": 255233.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.28202038891613485,
464
+ "epoch": 1.4603174603174602,
465
+ "grad_norm": 0.06751440465450287,
466
+ "learning_rate": 0.00010797287242522858,
467
+ "loss": 0.27419445514678953,
468
+ "mean_token_accuracy": 0.9094104260206223,
469
+ "num_tokens": 260859.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.27363024093210697,
474
+ "epoch": 1.492063492063492,
475
+ "grad_norm": 0.06995254009962082,
476
+ "learning_rate": 0.00010458342080803956,
477
+ "loss": 0.2693720817565918,
478
+ "mean_token_accuracy": 0.9083198413252831,
479
+ "num_tokens": 266554.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.2726555660367012,
484
+ "epoch": 1.5238095238095237,
485
+ "grad_norm": 0.09802178293466568,
486
+ "learning_rate": 0.00010118868273919284,
487
+ "loss": 0.2669402837753296,
488
+ "mean_token_accuracy": 0.9095989406108856,
489
+ "num_tokens": 272262.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.2873748764395714,
494
+ "epoch": 1.5555555555555556,
495
+ "grad_norm": 0.059039562940597534,
496
+ "learning_rate": 9.779257366076608e-05,
497
+ "loss": 0.27708461284637453,
498
+ "mean_token_accuracy": 0.907341231405735,
499
+ "num_tokens": 277809.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.28209226317703723,
504
+ "epoch": 1.5873015873015874,
505
+ "grad_norm": 0.07545655220746994,
506
+ "learning_rate": 9.439901059613973e-05,
507
+ "loss": 0.2581690549850464,
508
+ "mean_token_accuracy": 0.9121931448578835,
509
+ "num_tokens": 283664.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.272804581746459,
514
+ "epoch": 1.619047619047619,
515
+ "grad_norm": 0.07380068302154541,
516
+ "learning_rate": 9.101190763215848e-05,
517
+ "loss": 0.26886236667633057,
518
+ "mean_token_accuracy": 0.9086462184786797,
519
+ "num_tokens": 289371.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.28114392757415774,
524
+ "epoch": 1.6507936507936507,
525
+ "grad_norm": 0.078324094414711,
526
+ "learning_rate": 8.763517140467981e-05,
527
+ "loss": 0.27371978759765625,
528
+ "mean_token_accuracy": 0.9067111536860466,
529
+ "num_tokens": 294986.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.28820689432322977,
534
+ "epoch": 1.6825396825396826,
535
+ "grad_norm": 0.10492384433746338,
536
+ "learning_rate": 8.42726965927164e-05,
537
+ "loss": 0.2796510696411133,
538
+ "mean_token_accuracy": 0.9053183734416962,
539
+ "num_tokens": 300487.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.26856297068297863,
544
+ "epoch": 1.7142857142857144,
545
+ "grad_norm": 0.0673430785536766,
546
+ "learning_rate": 8.092836142636932e-05,
547
+ "loss": 0.2611644506454468,
548
+ "mean_token_accuracy": 0.9129276722669601,
549
+ "num_tokens": 306372.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.29797249287366867,
554
+ "epoch": 1.746031746031746,
555
+ "grad_norm": 0.06676393002271652,
556
+ "learning_rate": 7.760602321373322e-05,
557
+ "loss": 0.28323547840118407,
558
+ "mean_token_accuracy": 0.9016937434673309,
559
+ "num_tokens": 311775.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.2688152402639389,
564
+ "epoch": 1.7777777777777777,
565
+ "grad_norm": 0.08283069729804993,
566
+ "learning_rate": 7.43095138919326e-05,
567
+ "loss": 0.2640655517578125,
568
+ "mean_token_accuracy": 0.902265977859497,
569
+ "num_tokens": 317591.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.29286824017763136,
574
+ "epoch": 1.8095238095238095,
575
+ "grad_norm": 0.05436806008219719,
576
+ "learning_rate": 7.104263560742067e-05,
577
+ "loss": 0.27632272243499756,
578
+ "mean_token_accuracy": 0.9019043281674385,
579
+ "num_tokens": 323077.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.2781177669763565,
584
+ "epoch": 1.8412698412698414,
585
+ "grad_norm": 0.05500198155641556,
586
+ "learning_rate": 6.780915633063827e-05,
587
+ "loss": 0.27087790966033937,
588
+ "mean_token_accuracy": 0.9046190366148948,
589
+ "num_tokens": 328692.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.27223661690950396,
594
+ "epoch": 1.873015873015873,
595
+ "grad_norm": 0.07625019550323486,
596
+ "learning_rate": 6.461280551009096e-05,
597
+ "loss": 0.26836280822753905,
598
+ "mean_token_accuracy": 0.9067093715071678,
599
+ "num_tokens": 334381.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.27323946319520476,
604
+ "epoch": 1.9047619047619047,
605
+ "grad_norm": 0.072757288813591,
606
+ "learning_rate": 6.145726977085669e-05,
607
+ "loss": 0.2648139953613281,
608
+ "mean_token_accuracy": 0.90970708578825,
609
+ "num_tokens": 340111.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.2718470089137554,
614
+ "epoch": 1.9365079365079365,
615
+ "grad_norm": 0.06298787891864777,
616
+ "learning_rate": 5.8346188662485536e-05,
617
+ "loss": 0.2643317461013794,
618
+ "mean_token_accuracy": 0.904901784658432,
619
+ "num_tokens": 345896.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.28305209055542946,
624
+ "epoch": 1.9682539682539684,
625
+ "grad_norm": 0.0733041912317276,
626
+ "learning_rate": 5.528315046119544e-05,
627
+ "loss": 0.2636791944503784,
628
+ "mean_token_accuracy": 0.9123735308647156,
629
+ "num_tokens": 351673.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.2617435783147812,
634
+ "epoch": 2.0,
635
+ "grad_norm": 0.07501133531332016,
636
+ "learning_rate": 5.227168803120619e-05,
637
+ "loss": 0.26242828369140625,
638
+ "mean_token_accuracy": 0.9104171916842461,
639
+ "num_tokens": 357322.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.26802175454795363,
644
+ "epoch": 2.0317460317460316,
645
+ "grad_norm": 0.04739142954349518,
646
+ "learning_rate": 4.931527474998444e-05,
647
+ "loss": 0.25396668910980225,
648
+ "mean_token_accuracy": 0.9118479937314987,
649
+ "num_tokens": 363159.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.27135957442224024,
654
+ "epoch": 2.0634920634920633,
655
+ "grad_norm": 0.07097524404525757,
656
+ "learning_rate": 4.6417320502100316e-05,
657
+ "loss": 0.25786685943603516,
658
+ "mean_token_accuracy": 0.9111087501049042,
659
+ "num_tokens": 368909.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.2646398801356554,
664
+ "epoch": 2.0952380952380953,
665
+ "grad_norm": 0.05924823880195618,
666
+ "learning_rate": 4.35811677463153e-05,
667
+ "loss": 0.2504109382629395,
668
+ "mean_token_accuracy": 0.9110997319221497,
669
+ "num_tokens": 374682.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.27993031218647957,
674
+ "epoch": 2.126984126984127,
675
+ "grad_norm": 0.058568164706230164,
676
+ "learning_rate": 4.081008766043856e-05,
677
+ "loss": 0.2658329963684082,
678
+ "mean_token_accuracy": 0.906340380012989,
679
+ "num_tokens": 380133.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.270343242585659,
684
+ "epoch": 2.1587301587301586,
685
+ "grad_norm": 0.07652401179075241,
686
+ "learning_rate": 3.810727636839739e-05,
687
+ "loss": 0.26411163806915283,
688
+ "mean_token_accuracy": 0.9062801778316498,
689
+ "num_tokens": 385694.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.26379697881639,
694
+ "epoch": 2.1904761904761907,
695
+ "grad_norm": 0.06572549045085907,
696
+ "learning_rate": 3.547585125387394e-05,
697
+ "loss": 0.26352672576904296,
698
+ "mean_token_accuracy": 0.9080587550997734,
699
+ "num_tokens": 391353.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.2779304336756468,
704
+ "epoch": 2.2222222222222223,
705
+ "grad_norm": 0.0634949803352356,
706
+ "learning_rate": 3.2918847364759556e-05,
707
+ "loss": 0.26194489002227783,
708
+ "mean_token_accuracy": 0.9062734320759773,
709
+ "num_tokens": 396876.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.2617481011897326,
714
+ "epoch": 2.253968253968254,
715
+ "grad_norm": 0.05917736515402794,
716
+ "learning_rate": 3.0439213912574304e-05,
717
+ "loss": 0.26019647121429446,
718
+ "mean_token_accuracy": 0.9100751489400863,
719
+ "num_tokens": 402577.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.2559076685458422,
724
+ "epoch": 2.2857142857142856,
725
+ "grad_norm": 0.07124771922826767,
726
+ "learning_rate": 2.8039810870888762e-05,
727
+ "loss": 0.25075175762176516,
728
+ "mean_token_accuracy": 0.9124972775578499,
729
+ "num_tokens": 408405.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.2648021761327982,
734
+ "epoch": 2.317460317460317,
735
+ "grad_norm": 0.06209827587008476,
736
+ "learning_rate": 2.5723405676671584e-05,
737
+ "loss": 0.24744985103607178,
738
+ "mean_token_accuracy": 0.915162692964077,
739
+ "num_tokens": 414204.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.2807385498657823,
744
+ "epoch": 2.3492063492063493,
745
+ "grad_norm": 0.0612325593829155,
746
+ "learning_rate": 2.349267003836757e-05,
747
+ "loss": 0.26713953018188474,
748
+ "mean_token_accuracy": 0.9052686139941215,
749
+ "num_tokens": 419721.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.2669257506728172,
754
+ "epoch": 2.380952380952381,
755
+ "grad_norm": 0.06792369484901428,
756
+ "learning_rate": 2.1350176854387492e-05,
757
+ "loss": 0.26758475303649903,
758
+ "mean_token_accuracy": 0.9066236048936844,
759
+ "num_tokens": 425297.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.2817291833460331,
764
+ "epoch": 2.4126984126984126,
765
+ "grad_norm": 0.07440292090177536,
766
+ "learning_rate": 1.9298397245564125e-05,
767
+ "loss": 0.26947109699249266,
768
+ "mean_token_accuracy": 0.9070651844143868,
769
+ "num_tokens": 430708.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.2823494378477335,
774
+ "epoch": 2.4444444444444446,
775
+ "grad_norm": 0.08691683411598206,
776
+ "learning_rate": 1.733969770499697e-05,
777
+ "loss": 0.2715198040008545,
778
+ "mean_token_accuracy": 0.9081029698252678,
779
+ "num_tokens": 436157.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.2502023309469223,
784
+ "epoch": 2.4761904761904763,
785
+ "grad_norm": 0.057402949780225754,
786
+ "learning_rate": 1.547633736857308e-05,
787
+ "loss": 0.24733474254608154,
788
+ "mean_token_accuracy": 0.9128626599907875,
789
+ "num_tokens": 442078.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.2789640363305807,
794
+ "epoch": 2.507936507936508,
795
+ "grad_norm": 0.08202935755252838,
796
+ "learning_rate": 1.3710465409312356e-05,
797
+ "loss": 0.2598316431045532,
798
+ "mean_token_accuracy": 0.9110502526164055,
799
+ "num_tokens": 447709.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.2569702621549368,
804
+ "epoch": 2.5396825396825395,
805
+ "grad_norm": 0.0657891258597374,
806
+ "learning_rate": 1.2044118558542183e-05,
807
+ "loss": 0.2518922805786133,
808
+ "mean_token_accuracy": 0.913571135699749,
809
+ "num_tokens": 453518.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.30509118661284446,
814
+ "epoch": 2.571428571428571,
815
+ "grad_norm": 0.06226721778512001,
816
+ "learning_rate": 1.0479218756760801e-05,
817
+ "loss": 0.28301548957824707,
818
+ "mean_token_accuracy": 0.9006569445133209,
819
+ "num_tokens": 458660.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.26878854297101495,
824
+ "epoch": 2.6031746031746033,
825
+ "grad_norm": 0.08471657335758209,
826
+ "learning_rate": 9.017570936898834e-06,
827
+ "loss": 0.25441818237304686,
828
+ "mean_token_accuracy": 0.913353081047535,
829
+ "num_tokens": 464425.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.26796630285680295,
834
+ "epoch": 2.634920634920635,
835
+ "grad_norm": 0.08099494874477386,
836
+ "learning_rate": 7.660860942535531e-06,
837
+ "loss": 0.2650477170944214,
838
+ "mean_token_accuracy": 0.9064913064241409,
839
+ "num_tokens": 469951.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.2573456011712551,
844
+ "epoch": 2.6666666666666665,
845
+ "grad_norm": 0.06200960651040077,
846
+ "learning_rate": 6.410653583471049e-06,
847
+ "loss": 0.24512960910797119,
848
+ "mean_token_accuracy": 0.9124153345823288,
849
+ "num_tokens": 475855.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.2702272081747651,
854
+ "epoch": 2.6984126984126986,
855
+ "grad_norm": 0.05739385262131691,
856
+ "learning_rate": 5.268390830897352e-06,
857
+ "loss": 0.2525698900222778,
858
+ "mean_token_accuracy": 0.9123304262757301,
859
+ "num_tokens": 481587.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.25637628957629205,
864
+ "epoch": 2.7301587301587302,
865
+ "grad_norm": 0.06797543913125992,
866
+ "learning_rate": 4.235390154249319e-06,
867
+ "loss": 0.24502739906311036,
868
+ "mean_token_accuracy": 0.9152422398328781,
869
+ "num_tokens": 487517.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.26860512383282187,
874
+ "epoch": 2.761904761904762,
875
+ "grad_norm": 0.0768144428730011,
876
+ "learning_rate": 3.3128430016545086e-06,
877
+ "loss": 0.26233835220336915,
878
+ "mean_token_accuracy": 0.9065091878175735,
879
+ "num_tokens": 493162.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.27704833559691905,
884
+ "epoch": 2.7936507936507935,
885
+ "grad_norm": 0.058013975620269775,
886
+ "learning_rate": 2.5018134257339454e-06,
887
+ "loss": 0.2659024477005005,
888
+ "mean_token_accuracy": 0.9072319209575653,
889
+ "num_tokens": 498734.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.26322649177163837,
894
+ "epoch": 2.825396825396825,
895
+ "grad_norm": 0.06313176453113556,
896
+ "learning_rate": 1.8032368563391745e-06,
897
+ "loss": 0.24617037773132325,
898
+ "mean_token_accuracy": 0.9113279536366463,
899
+ "num_tokens": 504706.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.26887267380952834,
904
+ "epoch": 2.857142857142857,
905
+ "grad_norm": 0.057793453335762024,
906
+ "learning_rate": 1.2179190216409343e-06,
907
+ "loss": 0.25469746589660647,
908
+ "mean_token_accuracy": 0.9091615468263626,
909
+ "num_tokens": 510504.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.2738068286329508,
914
+ "epoch": 2.888888888888889,
915
+ "grad_norm": 0.06475513428449631,
916
+ "learning_rate": 7.465350188138209e-07,
917
+ "loss": 0.2575427770614624,
918
+ "mean_token_accuracy": 0.9124535873532296,
919
+ "num_tokens": 516159.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.2642780113965273,
924
+ "epoch": 2.9206349206349205,
925
+ "grad_norm": 0.08064750581979752,
926
+ "learning_rate": 3.896285353889417e-07,
927
+ "loss": 0.25164711475372314,
928
+ "mean_token_accuracy": 0.9099403232336044,
929
+ "num_tokens": 521956.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.2682258732616901,
934
+ "epoch": 2.9523809523809526,
935
+ "grad_norm": 0.06471122801303864,
936
+ "learning_rate": 1.4761122217252787e-07,
937
+ "loss": 0.2547882556915283,
938
+ "mean_token_accuracy": 0.9095430165529251,
939
+ "num_tokens": 527699.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.2765565741807222,
944
+ "epoch": 2.984126984126984,
945
+ "grad_norm": 0.07435508817434311,
946
+ "learning_rate": 2.0762218453818096e-08,
947
+ "loss": 0.26333184242248536,
948
+ "mean_token_accuracy": 0.9075064033269882,
949
+ "num_tokens": 533220.0,
950
+ "step": 940
951
+ }
952
+ ],
953
+ "logging_steps": 10,
954
+ "max_steps": 945,
955
+ "num_input_tokens_seen": 0,
956
+ "num_train_epochs": 3,
957
+ "save_steps": 200,
958
+ "stateful_callbacks": {
959
+ "TrainerControl": {
960
+ "args": {
961
+ "should_epoch_stop": false,
962
+ "should_evaluate": false,
963
+ "should_log": false,
964
+ "should_save": true,
965
+ "should_training_stop": true
966
+ },
967
+ "attributes": {}
968
+ }
969
+ },
970
+ "total_flos": 1.2821237140291584e+16,
971
+ "train_batch_size": 4,
972
+ "trial_name": null,
973
+ "trial_params": null
974
+ }
checkpoint-945/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fb601ecd2bf594898b1129204a988d020e0fdb23c6d6e6733f079e88458dd3d
3
+ size 5176
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "model_max_length": 32768,
25
+ "pad_token": "<|endoftext|>",
26
+ "split_special_tokens": false,
27
+ "tokenizer_class": "Qwen2Tokenizer",
28
+ "unk_token": null
29
+ }