42e commited on
Commit
cd549e6
·
verified ·
1 Parent(s): 8dd15d3

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ 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-1524/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-Math-7B-Instruct
3
+ library_name: peft
4
+ model_name: verifier_v_7b
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-Math-7B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for verifier_v_7b
16
+
17
+ This model is a fine-tuned version of [Qwen/Qwen2.5-Math-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Math-7B-Instruct).
18
+ It has been trained using [TRL](https://github.com/huggingface/trl).
19
+
20
+ ## Quick start
21
+
22
+ ```python
23
+ from transformers import pipeline
24
+
25
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
26
+ generator = pipeline("text-generation", model="None", device="cuda")
27
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
28
+ print(output["generated_text"])
29
+ ```
30
+
31
+ ## Training procedure
32
+
33
+
34
+
35
+
36
+
37
+ This model was trained with SFT.
38
+
39
+ ### Framework versions
40
+
41
+ - PEFT 0.19.1
42
+ - TRL: 1.8.0
43
+ - Transformers: 5.13.1
44
+ - Pytorch: 2.11.0+cu128
45
+ - Datasets: 5.0.0
46
+ - Tokenizers: 0.22.2
47
+
48
+ ## Citations
49
+
50
+
51
+
52
+ Cite TRL as:
53
+
54
+ ```bibtex
55
+ @software{vonwerra2020trl,
56
+ title = {{TRL: Transformers Reinforcement Learning}},
57
+ author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
58
+ license = {Apache-2.0},
59
+ url = {https://github.com/huggingface/trl},
60
+ year = {2020}
61
+ }
62
+ ```
adapter_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-Math-7B-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": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "down_proj",
34
+ "k_proj",
35
+ "q_proj",
36
+ "gate_proj",
37
+ "v_proj",
38
+ "o_proj",
39
+ "up_proj"
40
+ ],
41
+ "target_parameters": null,
42
+ "task_type": "CAUSAL_LM",
43
+ "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
+ "use_dora": false,
46
+ "use_qalora": false,
47
+ "use_rslora": false
48
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fd282726016ee3ee36c9fb6ddda695227ea2b032874058191cbc67b936bcdb2
3
+ size 323014168
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
+ {{- 'Please reason step by step, and put your final answer within \\boxed{}.' }}
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\nPlease reason step by step, and put your final answer within \\boxed{}.<|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-1524/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-Math-7B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen2.5-Math-7B-Instruct
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.19.1
checkpoint-1524/adapter_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-Math-7B-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": 64,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "lora_ga_config": null,
23
+ "megatron_config": null,
24
+ "megatron_core": "megatron.core",
25
+ "modules_to_save": null,
26
+ "peft_type": "LORA",
27
+ "peft_version": "0.19.1",
28
+ "qalora_group_size": 16,
29
+ "r": 32,
30
+ "rank_pattern": {},
31
+ "revision": null,
32
+ "target_modules": [
33
+ "down_proj",
34
+ "k_proj",
35
+ "q_proj",
36
+ "gate_proj",
37
+ "v_proj",
38
+ "o_proj",
39
+ "up_proj"
40
+ ],
41
+ "target_parameters": null,
42
+ "task_type": "CAUSAL_LM",
43
+ "trainable_token_indices": null,
44
+ "use_bdlora": null,
45
+ "use_dora": false,
46
+ "use_qalora": false,
47
+ "use_rslora": false
48
+ }
checkpoint-1524/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fd282726016ee3ee36c9fb6ddda695227ea2b032874058191cbc67b936bcdb2
3
+ size 323014168
checkpoint-1524/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
+ {{- 'Please reason step by step, and put your final answer within \\boxed{}.' }}
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\nPlease reason step by step, and put your final answer within \\boxed{}.<|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-1524/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b92e2329e7cb76efa5ccc3e734ab6162f06c3431a4f9e22667de1f59f1726a3d
3
+ size 646259323
checkpoint-1524/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58585354dbadc85a8b1e6c6518f177a900e05fae000f4456dfc7c06bd6448d64
3
+ size 14581
checkpoint-1524/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8092633066113ce3cbe0fe41b11261d69f4d22fbe31f753e60855ed5c4f2a31
3
+ size 1465
checkpoint-1524/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
checkpoint-1524/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|fim_pad|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-1524/trainer_state.json ADDED
@@ -0,0 +1,1895 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 50,
7
+ "global_step": 1524,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 4.081731240451336,
14
+ "epoch": 0.01968503937007874,
15
+ "grad_norm": 1.2025723457336426,
16
+ "learning_rate": 3.91304347826087e-05,
17
+ "loss": 2.09478702545166,
18
+ "mean_token_accuracy": 0.6894429370760917,
19
+ "num_tokens": 115439.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 1.5656683981418609,
24
+ "epoch": 0.03937007874015748,
25
+ "grad_norm": 0.4732680320739746,
26
+ "learning_rate": 8.260869565217392e-05,
27
+ "loss": 1.5646931648254394,
28
+ "mean_token_accuracy": 0.7097038365900517,
29
+ "num_tokens": 225264.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 1.0895499642938375,
34
+ "epoch": 0.05905511811023622,
35
+ "grad_norm": 0.550152599811554,
36
+ "learning_rate": 0.00012608695652173915,
37
+ "loss": 1.1402780532836914,
38
+ "mean_token_accuracy": 0.7643287762999534,
39
+ "num_tokens": 330923.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 1.0377423465251923,
44
+ "epoch": 0.07874015748031496,
45
+ "grad_norm": 0.4060899317264557,
46
+ "learning_rate": 0.00016956521739130436,
47
+ "loss": 1.0394248008728026,
48
+ "mean_token_accuracy": 0.7670801907777787,
49
+ "num_tokens": 437622.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.8492720592767,
54
+ "epoch": 0.0984251968503937,
55
+ "grad_norm": 0.4656495451927185,
56
+ "learning_rate": 0.00019999796688511753,
57
+ "loss": 0.9070818901062012,
58
+ "mean_token_accuracy": 0.7918916828930378,
59
+ "num_tokens": 551175.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "epoch": 0.0984251968503937,
64
+ "eval_entropy": 0.9714998945041939,
65
+ "eval_loss": 0.9814297556877136,
66
+ "eval_mean_token_accuracy": 0.7616264853212569,
67
+ "eval_num_tokens": 551175.0,
68
+ "eval_runtime": 50.076,
69
+ "eval_samples_per_second": 8.527,
70
+ "eval_steps_per_second": 1.078,
71
+ "step": 50
72
+ },
73
+ {
74
+ "entropy": 0.7805005680769682,
75
+ "epoch": 0.11811023622047244,
76
+ "grad_norm": 0.6193442940711975,
77
+ "learning_rate": 0.0001999618249203163,
78
+ "loss": 0.8954662322998047,
79
+ "mean_token_accuracy": 0.8002645947039128,
80
+ "num_tokens": 658006.0,
81
+ "step": 60
82
+ },
83
+ {
84
+ "entropy": 0.8279133141040802,
85
+ "epoch": 0.1377952755905512,
86
+ "grad_norm": 0.6020731925964355,
87
+ "learning_rate": 0.00019988052141977201,
88
+ "loss": 0.9206802368164062,
89
+ "mean_token_accuracy": 0.7954164117574691,
90
+ "num_tokens": 771278.0,
91
+ "step": 70
92
+ },
93
+ {
94
+ "entropy": 0.7643017668277026,
95
+ "epoch": 0.15748031496062992,
96
+ "grad_norm": 0.5231983065605164,
97
+ "learning_rate": 0.0001997540931154166,
98
+ "loss": 0.7755372047424316,
99
+ "mean_token_accuracy": 0.8071240559220314,
100
+ "num_tokens": 886071.0,
101
+ "step": 80
102
+ },
103
+ {
104
+ "entropy": 0.7395163401961327,
105
+ "epoch": 0.17716535433070865,
106
+ "grad_norm": 0.5036323666572571,
107
+ "learning_rate": 0.00019958259712601903,
108
+ "loss": 0.8172826766967773,
109
+ "mean_token_accuracy": 0.8099836744368076,
110
+ "num_tokens": 996361.0,
111
+ "step": 90
112
+ },
113
+ {
114
+ "entropy": 0.70047264136374,
115
+ "epoch": 0.1968503937007874,
116
+ "grad_norm": 0.53205406665802,
117
+ "learning_rate": 0.00019936611093137983,
118
+ "loss": 0.764425802230835,
119
+ "mean_token_accuracy": 0.8133513547480107,
120
+ "num_tokens": 1103999.0,
121
+ "step": 100
122
+ },
123
+ {
124
+ "epoch": 0.1968503937007874,
125
+ "eval_entropy": 0.8809433656710165,
126
+ "eval_loss": 0.8760986924171448,
127
+ "eval_mean_token_accuracy": 0.7759342005959263,
128
+ "eval_num_tokens": 1103999.0,
129
+ "eval_runtime": 50.0693,
130
+ "eval_samples_per_second": 8.528,
131
+ "eval_steps_per_second": 1.079,
132
+ "step": 100
133
+ },
134
+ {
135
+ "entropy": 0.7424050349742174,
136
+ "epoch": 0.21653543307086615,
137
+ "grad_norm": 0.3994530141353607,
138
+ "learning_rate": 0.00019910473233732668,
139
+ "loss": 0.7701848030090332,
140
+ "mean_token_accuracy": 0.8107160992920399,
141
+ "num_tokens": 1216586.0,
142
+ "step": 110
143
+ },
144
+ {
145
+ "entropy": 0.7282566852867604,
146
+ "epoch": 0.23622047244094488,
147
+ "grad_norm": 0.5450337529182434,
148
+ "learning_rate": 0.00019879857943152674,
149
+ "loss": 0.7601457118988038,
150
+ "mean_token_accuracy": 0.8057335019111633,
151
+ "num_tokens": 1324767.0,
152
+ "step": 120
153
+ },
154
+ {
155
+ "entropy": 0.7324596978724003,
156
+ "epoch": 0.2559055118110236,
157
+ "grad_norm": 0.5821658968925476,
158
+ "learning_rate": 0.00019844779053013637,
159
+ "loss": 0.7659125804901123,
160
+ "mean_token_accuracy": 0.8053000435233116,
161
+ "num_tokens": 1432356.0,
162
+ "step": 130
163
+ },
164
+ {
165
+ "entropy": 0.66163036134094,
166
+ "epoch": 0.2755905511811024,
167
+ "grad_norm": 0.5165016055107117,
168
+ "learning_rate": 0.00019805252411531126,
169
+ "loss": 0.7274711608886719,
170
+ "mean_token_accuracy": 0.8206341236829757,
171
+ "num_tokens": 1542545.0,
172
+ "step": 140
173
+ },
174
+ {
175
+ "entropy": 0.7055144146084785,
176
+ "epoch": 0.2952755905511811,
177
+ "grad_norm": 0.5799933075904846,
178
+ "learning_rate": 0.0001976129587636064,
179
+ "loss": 0.7352935791015625,
180
+ "mean_token_accuracy": 0.8095529124140739,
181
+ "num_tokens": 1654462.0,
182
+ "step": 150
183
+ },
184
+ {
185
+ "epoch": 0.2952755905511811,
186
+ "eval_entropy": 0.8143208810576686,
187
+ "eval_loss": 0.8347764611244202,
188
+ "eval_mean_token_accuracy": 0.7817997546107681,
189
+ "eval_num_tokens": 1654462.0,
190
+ "eval_runtime": 50.0768,
191
+ "eval_samples_per_second": 8.527,
192
+ "eval_steps_per_second": 1.078,
193
+ "step": 150
194
+ },
195
+ {
196
+ "entropy": 0.6451521161943674,
197
+ "epoch": 0.31496062992125984,
198
+ "grad_norm": 0.4720793068408966,
199
+ "learning_rate": 0.00019712929306529723,
200
+ "loss": 0.7099593162536622,
201
+ "mean_token_accuracy": 0.822279942035675,
202
+ "num_tokens": 1760181.0,
203
+ "step": 160
204
+ },
205
+ {
206
+ "entropy": 0.6923504635691643,
207
+ "epoch": 0.3346456692913386,
208
+ "grad_norm": 0.5992543697357178,
209
+ "learning_rate": 0.000196601745534659,
210
+ "loss": 0.7766928195953369,
211
+ "mean_token_accuracy": 0.8206209510564804,
212
+ "num_tokens": 1864683.0,
213
+ "step": 170
214
+ },
215
+ {
216
+ "entropy": 0.7083404455333948,
217
+ "epoch": 0.3543307086614173,
218
+ "grad_norm": 0.45409828424453735,
219
+ "learning_rate": 0.0001960305545112445,
220
+ "loss": 0.744833517074585,
221
+ "mean_token_accuracy": 0.8117265947163105,
222
+ "num_tokens": 1978641.0,
223
+ "step": 180
224
+ },
225
+ {
226
+ "entropy": 0.671433940064162,
227
+ "epoch": 0.37401574803149606,
228
+ "grad_norm": 0.4698701798915863,
229
+ "learning_rate": 0.0001954159780522056,
230
+ "loss": 0.7281535625457763,
231
+ "mean_token_accuracy": 0.817485723644495,
232
+ "num_tokens": 2087989.0,
233
+ "step": 190
234
+ },
235
+ {
236
+ "entropy": 0.7019775623455644,
237
+ "epoch": 0.3937007874015748,
238
+ "grad_norm": 0.6314639449119568,
239
+ "learning_rate": 0.00019475829381570566,
240
+ "loss": 0.7663211822509766,
241
+ "mean_token_accuracy": 0.8176812350749969,
242
+ "num_tokens": 2195494.0,
243
+ "step": 200
244
+ },
245
+ {
246
+ "epoch": 0.3937007874015748,
247
+ "eval_entropy": 0.819858855119458,
248
+ "eval_loss": 0.8197568655014038,
249
+ "eval_mean_token_accuracy": 0.7837593434033571,
250
+ "eval_num_tokens": 2195494.0,
251
+ "eval_runtime": 50.0794,
252
+ "eval_samples_per_second": 8.526,
253
+ "eval_steps_per_second": 1.078,
254
+ "step": 200
255
+ },
256
+ {
257
+ "entropy": 0.6459112739190459,
258
+ "epoch": 0.41338582677165353,
259
+ "grad_norm": 0.4029120206832886,
260
+ "learning_rate": 0.0001940577989354773,
261
+ "loss": 0.7212091445922851,
262
+ "mean_token_accuracy": 0.8216200672090054,
263
+ "num_tokens": 2314228.0,
264
+ "step": 210
265
+ },
266
+ {
267
+ "entropy": 0.6658948451280594,
268
+ "epoch": 0.4330708661417323,
269
+ "grad_norm": 0.6937551498413086,
270
+ "learning_rate": 0.00019331480988658083,
271
+ "loss": 0.7317200660705566,
272
+ "mean_token_accuracy": 0.8218330323696137,
273
+ "num_tokens": 2419122.0,
274
+ "step": 220
275
+ },
276
+ {
277
+ "entropy": 0.6822177035734057,
278
+ "epoch": 0.452755905511811,
279
+ "grad_norm": 0.4081629514694214,
280
+ "learning_rate": 0.00019252966234242468,
281
+ "loss": 0.7487519741058349,
282
+ "mean_token_accuracy": 0.8097363859415054,
283
+ "num_tokens": 2524623.0,
284
+ "step": 230
285
+ },
286
+ {
287
+ "entropy": 0.7053613148629665,
288
+ "epoch": 0.47244094488188976,
289
+ "grad_norm": 0.6170492172241211,
290
+ "learning_rate": 0.00019170271102311238,
291
+ "loss": 0.8214272499084473,
292
+ "mean_token_accuracy": 0.8059085100889206,
293
+ "num_tokens": 2631031.0,
294
+ "step": 240
295
+ },
296
+ {
297
+ "entropy": 0.6398238291963935,
298
+ "epoch": 0.4921259842519685,
299
+ "grad_norm": 0.4603516161441803,
300
+ "learning_rate": 0.00019083432953518418,
301
+ "loss": 0.7328793048858643,
302
+ "mean_token_accuracy": 0.8248285502195358,
303
+ "num_tokens": 2741031.0,
304
+ "step": 250
305
+ },
306
+ {
307
+ "epoch": 0.4921259842519685,
308
+ "eval_entropy": 0.8082884434196684,
309
+ "eval_loss": 0.8002302646636963,
310
+ "eval_mean_token_accuracy": 0.788091140764731,
311
+ "eval_num_tokens": 2741031.0,
312
+ "eval_runtime": 50.0693,
313
+ "eval_samples_per_second": 8.528,
314
+ "eval_steps_per_second": 1.079,
315
+ "step": 250
316
+ },
317
+ {
318
+ "entropy": 0.6552930422127247,
319
+ "epoch": 0.5118110236220472,
320
+ "grad_norm": 0.5747159719467163,
321
+ "learning_rate": 0.00018992491020282618,
322
+ "loss": 0.693137788772583,
323
+ "mean_token_accuracy": 0.8185193344950676,
324
+ "num_tokens": 2853547.0,
325
+ "step": 260
326
+ },
327
+ {
328
+ "entropy": 0.6801722910255193,
329
+ "epoch": 0.531496062992126,
330
+ "grad_norm": 0.4311263859272003,
331
+ "learning_rate": 0.0001889748638906231,
332
+ "loss": 0.7339208602905274,
333
+ "mean_token_accuracy": 0.8195476584136486,
334
+ "num_tokens": 2968367.0,
335
+ "step": 270
336
+ },
337
+ {
338
+ "entropy": 0.6948977328836918,
339
+ "epoch": 0.5511811023622047,
340
+ "grad_norm": 0.4513797461986542,
341
+ "learning_rate": 0.00018798461981793462,
342
+ "loss": 0.7738771438598633,
343
+ "mean_token_accuracy": 0.8162345252931118,
344
+ "num_tokens": 3075963.0,
345
+ "step": 280
346
+ },
347
+ {
348
+ "entropy": 0.7177972780540586,
349
+ "epoch": 0.5708661417322834,
350
+ "grad_norm": 0.4137361943721771,
351
+ "learning_rate": 0.00018695462536497934,
352
+ "loss": 0.7487005710601806,
353
+ "mean_token_accuracy": 0.8072154425084591,
354
+ "num_tokens": 3185899.0,
355
+ "step": 290
356
+ },
357
+ {
358
+ "entropy": 0.6409716093912721,
359
+ "epoch": 0.5905511811023622,
360
+ "grad_norm": 0.49643731117248535,
361
+ "learning_rate": 0.00018588534587071385,
362
+ "loss": 0.7363781452178955,
363
+ "mean_token_accuracy": 0.8213795177638531,
364
+ "num_tokens": 3297319.0,
365
+ "step": 300
366
+ },
367
+ {
368
+ "epoch": 0.5905511811023622,
369
+ "eval_entropy": 0.7340650547433782,
370
+ "eval_loss": 0.7908466458320618,
371
+ "eval_mean_token_accuracy": 0.7887170259599332,
372
+ "eval_num_tokens": 3297319.0,
373
+ "eval_runtime": 50.0473,
374
+ "eval_samples_per_second": 8.532,
375
+ "eval_steps_per_second": 1.079,
376
+ "step": 300
377
+ },
378
+ {
379
+ "entropy": 0.6877464625984431,
380
+ "epoch": 0.610236220472441,
381
+ "grad_norm": 0.3918077051639557,
382
+ "learning_rate": 0.00018477726442259806,
383
+ "loss": 0.720060157775879,
384
+ "mean_token_accuracy": 0.811838335543871,
385
+ "num_tokens": 3415477.0,
386
+ "step": 310
387
+ },
388
+ {
389
+ "entropy": 0.6839619591832161,
390
+ "epoch": 0.6299212598425197,
391
+ "grad_norm": 0.39354413747787476,
392
+ "learning_rate": 0.00018363088163834252,
393
+ "loss": 0.7302655220031739,
394
+ "mean_token_accuracy": 0.8125466287136078,
395
+ "num_tokens": 3524759.0,
396
+ "step": 320
397
+ },
398
+ {
399
+ "entropy": 0.6844633586704731,
400
+ "epoch": 0.6496062992125984,
401
+ "grad_norm": 0.44826650619506836,
402
+ "learning_rate": 0.00018244671543973513,
403
+ "loss": 0.75206618309021,
404
+ "mean_token_accuracy": 0.8085944786667824,
405
+ "num_tokens": 3640838.0,
406
+ "step": 330
407
+ },
408
+ {
409
+ "entropy": 0.6127769330516457,
410
+ "epoch": 0.6692913385826772,
411
+ "grad_norm": 0.5281074047088623,
412
+ "learning_rate": 0.0001812253008186505,
413
+ "loss": 0.676181697845459,
414
+ "mean_token_accuracy": 0.8289406672120094,
415
+ "num_tokens": 3756735.0,
416
+ "step": 340
417
+ },
418
+ {
419
+ "entropy": 0.6899090738967061,
420
+ "epoch": 0.6889763779527559,
421
+ "grad_norm": 0.4868250787258148,
422
+ "learning_rate": 0.0001799671895953471,
423
+ "loss": 0.7409597396850586,
424
+ "mean_token_accuracy": 0.8155336409807206,
425
+ "num_tokens": 3870377.0,
426
+ "step": 350
427
+ },
428
+ {
429
+ "epoch": 0.6889763779527559,
430
+ "eval_entropy": 0.774545039291735,
431
+ "eval_loss": 0.7735128402709961,
432
+ "eval_mean_token_accuracy": 0.7915615362149698,
433
+ "eval_num_tokens": 3870377.0,
434
+ "eval_runtime": 50.0713,
435
+ "eval_samples_per_second": 8.528,
436
+ "eval_steps_per_second": 1.078,
437
+ "step": 350
438
+ },
439
+ {
440
+ "entropy": 0.628368235193193,
441
+ "epoch": 0.7086614173228346,
442
+ "grad_norm": 0.5193262100219727,
443
+ "learning_rate": 0.00017867295016916167,
444
+ "loss": 0.686598539352417,
445
+ "mean_token_accuracy": 0.8207510903477668,
446
+ "num_tokens": 3975692.0,
447
+ "step": 360
448
+ },
449
+ {
450
+ "entropy": 0.7101229786872864,
451
+ "epoch": 0.7283464566929134,
452
+ "grad_norm": 0.4744711220264435,
453
+ "learning_rate": 0.0001773431672617132,
454
+ "loss": 0.7801414966583252,
455
+ "mean_token_accuracy": 0.8085352785885334,
456
+ "num_tokens": 4087256.0,
457
+ "step": 370
458
+ },
459
+ {
460
+ "entropy": 0.6297556543722749,
461
+ "epoch": 0.7480314960629921,
462
+ "grad_norm": 0.45756635069847107,
463
+ "learning_rate": 0.00017597844165273286,
464
+ "loss": 0.6692267417907715,
465
+ "mean_token_accuracy": 0.8241402678191662,
466
+ "num_tokens": 4192629.0,
467
+ "step": 380
468
+ },
469
+ {
470
+ "entropy": 0.6269465358927846,
471
+ "epoch": 0.7677165354330708,
472
+ "grad_norm": 0.48099687695503235,
473
+ "learning_rate": 0.00017457938990863908,
474
+ "loss": 0.6762315273284912,
475
+ "mean_token_accuracy": 0.824905026704073,
476
+ "num_tokens": 4303838.0,
477
+ "step": 390
478
+ },
479
+ {
480
+ "entropy": 0.7084620589390397,
481
+ "epoch": 0.7874015748031497,
482
+ "grad_norm": 0.4862897992134094,
483
+ "learning_rate": 0.00017314664410398033,
484
+ "loss": 0.7662469863891601,
485
+ "mean_token_accuracy": 0.8124067313969136,
486
+ "num_tokens": 4414002.0,
487
+ "step": 400
488
+ },
489
+ {
490
+ "epoch": 0.7874015748031497,
491
+ "eval_entropy": 0.7462573321881117,
492
+ "eval_loss": 0.7633256316184998,
493
+ "eval_mean_token_accuracy": 0.7947341071234809,
494
+ "eval_num_tokens": 4414002.0,
495
+ "eval_runtime": 50.0471,
496
+ "eval_samples_per_second": 8.532,
497
+ "eval_steps_per_second": 1.079,
498
+ "step": 400
499
+ },
500
+ {
501
+ "entropy": 0.6137412896379828,
502
+ "epoch": 0.8070866141732284,
503
+ "grad_norm": 0.5355563759803772,
504
+ "learning_rate": 0.0001716808515358714,
505
+ "loss": 0.7326591968536377,
506
+ "mean_token_accuracy": 0.8191115081310272,
507
+ "num_tokens": 4525758.0,
508
+ "step": 410
509
+ },
510
+ {
511
+ "entropy": 0.6132487592287361,
512
+ "epoch": 0.8267716535433071,
513
+ "grad_norm": 0.47578275203704834,
514
+ "learning_rate": 0.00017018267443155268,
515
+ "loss": 0.6466782569885254,
516
+ "mean_token_accuracy": 0.8353692322969437,
517
+ "num_tokens": 4640742.0,
518
+ "step": 420
519
+ },
520
+ {
521
+ "entropy": 0.6744782857596874,
522
+ "epoch": 0.8464566929133859,
523
+ "grad_norm": 0.4436945617198944,
524
+ "learning_rate": 0.00016865278964920378,
525
+ "loss": 0.7423620223999023,
526
+ "mean_token_accuracy": 0.8134209528565407,
527
+ "num_tokens": 4754244.0,
528
+ "step": 430
529
+ },
530
+ {
531
+ "entropy": 0.6488625114783645,
532
+ "epoch": 0.8661417322834646,
533
+ "grad_norm": 0.33081018924713135,
534
+ "learning_rate": 0.00016709188837214732,
535
+ "loss": 0.6952498912811279,
536
+ "mean_token_accuracy": 0.8194661349058151,
537
+ "num_tokens": 4862576.0,
538
+ "step": 440
539
+ },
540
+ {
541
+ "entropy": 0.6501848340034485,
542
+ "epoch": 0.8858267716535433,
543
+ "grad_norm": 0.3483272194862366,
544
+ "learning_rate": 0.0001655006757965806,
545
+ "loss": 0.6860886096954346,
546
+ "mean_token_accuracy": 0.8210023202002048,
547
+ "num_tokens": 4984410.0,
548
+ "step": 450
549
+ },
550
+ {
551
+ "epoch": 0.8858267716535433,
552
+ "eval_entropy": 0.7518550543873398,
553
+ "eval_loss": 0.7559269666671753,
554
+ "eval_mean_token_accuracy": 0.7948771152231429,
555
+ "eval_num_tokens": 4984410.0,
556
+ "eval_runtime": 50.0772,
557
+ "eval_samples_per_second": 8.527,
558
+ "eval_steps_per_second": 1.078,
559
+ "step": 450
560
+ },
561
+ {
562
+ "entropy": 0.6636170313693583,
563
+ "epoch": 0.905511811023622,
564
+ "grad_norm": 0.5626906752586365,
565
+ "learning_rate": 0.0001638798708129768,
566
+ "loss": 0.74765944480896,
567
+ "mean_token_accuracy": 0.8188274890184403,
568
+ "num_tokens": 5094029.0,
569
+ "step": 460
570
+ },
571
+ {
572
+ "entropy": 0.6928009213879704,
573
+ "epoch": 0.9251968503937008,
574
+ "grad_norm": 0.37302127480506897,
575
+ "learning_rate": 0.00016223020568129854,
576
+ "loss": 0.7495561599731445,
577
+ "mean_token_accuracy": 0.8060568884015084,
578
+ "num_tokens": 5210613.0,
579
+ "step": 470
580
+ },
581
+ {
582
+ "entropy": 0.6453812881372869,
583
+ "epoch": 0.9448818897637795,
584
+ "grad_norm": 0.6153962016105652,
585
+ "learning_rate": 0.00016055242570017244,
586
+ "loss": 0.71365327835083,
587
+ "mean_token_accuracy": 0.8186813399195672,
588
+ "num_tokens": 5322546.0,
589
+ "step": 480
590
+ },
591
+ {
592
+ "entropy": 0.6382862586528063,
593
+ "epoch": 0.9645669291338582,
594
+ "grad_norm": 0.4038618505001068,
595
+ "learning_rate": 0.00015884728887017162,
596
+ "loss": 0.7178555965423584,
597
+ "mean_token_accuracy": 0.8249971143901348,
598
+ "num_tokens": 5434008.0,
599
+ "step": 490
600
+ },
601
+ {
602
+ "entropy": 0.5493983221240342,
603
+ "epoch": 0.984251968503937,
604
+ "grad_norm": 0.4192914664745331,
605
+ "learning_rate": 0.0001571155655513606,
606
+ "loss": 0.6016243457794189,
607
+ "mean_token_accuracy": 0.8419173769652843,
608
+ "num_tokens": 5544086.0,
609
+ "step": 500
610
+ },
611
+ {
612
+ "epoch": 0.984251968503937,
613
+ "eval_entropy": 0.7105065948433347,
614
+ "eval_loss": 0.7486068606376648,
615
+ "eval_mean_token_accuracy": 0.7960716353522407,
616
+ "eval_num_tokens": 5544086.0,
617
+ "eval_runtime": 50.0606,
618
+ "eval_samples_per_second": 8.53,
619
+ "eval_steps_per_second": 1.079,
620
+ "step": 500
621
+ },
622
+ {
623
+ "entropy": 0.5665312141180039,
624
+ "epoch": 1.0039370078740157,
625
+ "grad_norm": 0.368359237909317,
626
+ "learning_rate": 0.0001553580381152559,
627
+ "loss": 0.615216064453125,
628
+ "mean_token_accuracy": 0.8418210983276367,
629
+ "num_tokens": 5657246.0,
630
+ "step": 510
631
+ },
632
+ {
633
+ "entropy": 0.5862001886591315,
634
+ "epoch": 1.0236220472440944,
635
+ "grad_norm": 0.45820990204811096,
636
+ "learning_rate": 0.0001535755005913602,
637
+ "loss": 0.5764771461486816,
638
+ "mean_token_accuracy": 0.8442600667476654,
639
+ "num_tokens": 5768184.0,
640
+ "step": 520
641
+ },
642
+ {
643
+ "entropy": 0.5108475044369698,
644
+ "epoch": 1.0433070866141732,
645
+ "grad_norm": 0.6285914182662964,
646
+ "learning_rate": 0.00015176875830842938,
647
+ "loss": 0.5896134376525879,
648
+ "mean_token_accuracy": 0.8521038725972175,
649
+ "num_tokens": 5885598.0,
650
+ "step": 530
651
+ },
652
+ {
653
+ "entropy": 0.486662133410573,
654
+ "epoch": 1.0629921259842519,
655
+ "grad_norm": 0.434353768825531,
656
+ "learning_rate": 0.0001499386275306348,
657
+ "loss": 0.5298209190368652,
658
+ "mean_token_accuracy": 0.8610952235758305,
659
+ "num_tokens": 6002120.0,
660
+ "step": 540
661
+ },
662
+ {
663
+ "entropy": 0.4824460167437792,
664
+ "epoch": 1.0826771653543308,
665
+ "grad_norm": 0.4565293788909912,
666
+ "learning_rate": 0.0001480859350887852,
667
+ "loss": 0.5373196601867676,
668
+ "mean_token_accuracy": 0.8647552341222763,
669
+ "num_tokens": 6112085.0,
670
+ "step": 550
671
+ },
672
+ {
673
+ "epoch": 1.0826771653543308,
674
+ "eval_entropy": 0.6355549980092932,
675
+ "eval_loss": 0.7618542313575745,
676
+ "eval_mean_token_accuracy": 0.7958722456737801,
677
+ "eval_num_tokens": 6112085.0,
678
+ "eval_runtime": 50.0727,
679
+ "eval_samples_per_second": 8.528,
680
+ "eval_steps_per_second": 1.078,
681
+ "step": 550
682
+ },
683
+ {
684
+ "entropy": 0.501596263051033,
685
+ "epoch": 1.1023622047244095,
686
+ "grad_norm": 0.5378302335739136,
687
+ "learning_rate": 0.00014621151800677434,
688
+ "loss": 0.5560750007629395,
689
+ "mean_token_accuracy": 0.8573903530836106,
690
+ "num_tokens": 6224645.0,
691
+ "step": 560
692
+ },
693
+ {
694
+ "entropy": 0.4562000434845686,
695
+ "epoch": 1.1220472440944882,
696
+ "grad_norm": 0.3977832496166229,
697
+ "learning_rate": 0.0001443162231234242,
698
+ "loss": 0.4738937854766846,
699
+ "mean_token_accuracy": 0.8670585304498672,
700
+ "num_tokens": 6336790.0,
701
+ "step": 570
702
+ },
703
+ {
704
+ "entropy": 0.501401986181736,
705
+ "epoch": 1.141732283464567,
706
+ "grad_norm": 0.5541960000991821,
707
+ "learning_rate": 0.0001424009067098931,
708
+ "loss": 0.5401212692260742,
709
+ "mean_token_accuracy": 0.8490624278783798,
710
+ "num_tokens": 6450761.0,
711
+ "step": 580
712
+ },
713
+ {
714
+ "entropy": 0.46929567167535424,
715
+ "epoch": 1.1614173228346456,
716
+ "grad_norm": 0.5008417367935181,
717
+ "learning_rate": 0.00014046643408282305,
718
+ "loss": 0.4880987167358398,
719
+ "mean_token_accuracy": 0.8648147113621235,
720
+ "num_tokens": 6562060.0,
721
+ "step": 590
722
+ },
723
+ {
724
+ "entropy": 0.4560689639300108,
725
+ "epoch": 1.1811023622047245,
726
+ "grad_norm": 0.47965165972709656,
727
+ "learning_rate": 0.00013851367921340017,
728
+ "loss": 0.48796811103820803,
729
+ "mean_token_accuracy": 0.8638885729014874,
730
+ "num_tokens": 6676922.0,
731
+ "step": 600
732
+ },
733
+ {
734
+ "epoch": 1.1811023622047245,
735
+ "eval_entropy": 0.6515298419528537,
736
+ "eval_loss": 0.760289192199707,
737
+ "eval_mean_token_accuracy": 0.7941010395685831,
738
+ "eval_num_tokens": 6676922.0,
739
+ "eval_runtime": 50.0511,
740
+ "eval_samples_per_second": 8.531,
741
+ "eval_steps_per_second": 1.079,
742
+ "step": 600
743
+ },
744
+ {
745
+ "entropy": 0.5080817196518183,
746
+ "epoch": 1.2007874015748032,
747
+ "grad_norm": 0.5034531354904175,
748
+ "learning_rate": 0.0001365435243325051,
749
+ "loss": 0.5181654930114746,
750
+ "mean_token_accuracy": 0.8537081599235534,
751
+ "num_tokens": 6783497.0,
752
+ "step": 610
753
+ },
754
+ {
755
+ "entropy": 0.4773111058399081,
756
+ "epoch": 1.220472440944882,
757
+ "grad_norm": 0.5925540328025818,
758
+ "learning_rate": 0.00013455685953213194,
759
+ "loss": 0.5433258533477783,
760
+ "mean_token_accuracy": 0.8583495408296585,
761
+ "num_tokens": 6894014.0,
762
+ "step": 620
763
+ },
764
+ {
765
+ "entropy": 0.4819845519028604,
766
+ "epoch": 1.2401574803149606,
767
+ "grad_norm": 0.4825916290283203,
768
+ "learning_rate": 0.0001325545823632554,
769
+ "loss": 0.5122869491577149,
770
+ "mean_token_accuracy": 0.8658660687506199,
771
+ "num_tokens": 6997350.0,
772
+ "step": 630
773
+ },
774
+ {
775
+ "entropy": 0.5107115621678531,
776
+ "epoch": 1.2598425196850394,
777
+ "grad_norm": 0.4685664474964142,
778
+ "learning_rate": 0.00013053759743032823,
779
+ "loss": 0.5442278861999512,
780
+ "mean_token_accuracy": 0.8509419806301594,
781
+ "num_tokens": 7109067.0,
782
+ "step": 640
783
+ },
784
+ {
785
+ "entropy": 0.54763747388497,
786
+ "epoch": 1.279527559055118,
787
+ "grad_norm": 0.5677510499954224,
788
+ "learning_rate": 0.00012850681598259195,
789
+ "loss": 0.597836685180664,
790
+ "mean_token_accuracy": 0.8460060484707356,
791
+ "num_tokens": 7218739.0,
792
+ "step": 650
793
+ },
794
+ {
795
+ "epoch": 1.279527559055118,
796
+ "eval_entropy": 0.6216344314592855,
797
+ "eval_loss": 0.7540124654769897,
798
+ "eval_mean_token_accuracy": 0.7972306355282113,
799
+ "eval_num_tokens": 7218739.0,
800
+ "eval_runtime": 50.0442,
801
+ "eval_samples_per_second": 8.532,
802
+ "eval_steps_per_second": 1.079,
803
+ "step": 650
804
+ },
805
+ {
806
+ "entropy": 0.49238223014399407,
807
+ "epoch": 1.2992125984251968,
808
+ "grad_norm": 0.5551804304122925,
809
+ "learning_rate": 0.0001264631555023856,
810
+ "loss": 0.5532817840576172,
811
+ "mean_token_accuracy": 0.8577126242220402,
812
+ "num_tokens": 7334561.0,
813
+ "step": 660
814
+ },
815
+ {
816
+ "entropy": 0.4327555037103593,
817
+ "epoch": 1.3188976377952755,
818
+ "grad_norm": 0.7330867052078247,
819
+ "learning_rate": 0.00012440753929063826,
820
+ "loss": 0.49375300407409667,
821
+ "mean_token_accuracy": 0.8675231724977494,
822
+ "num_tokens": 7443871.0,
823
+ "step": 670
824
+ },
825
+ {
826
+ "entropy": 0.5022793110460043,
827
+ "epoch": 1.3385826771653544,
828
+ "grad_norm": 0.5363975167274475,
829
+ "learning_rate": 0.00012234089604973303,
830
+ "loss": 0.565674114227295,
831
+ "mean_token_accuracy": 0.8513440594077111,
832
+ "num_tokens": 7555559.0,
833
+ "step": 680
834
+ },
835
+ {
836
+ "entropy": 0.48171619242057206,
837
+ "epoch": 1.358267716535433,
838
+ "grad_norm": 0.5590063333511353,
839
+ "learning_rate": 0.0001202641594639305,
840
+ "loss": 0.5085800170898438,
841
+ "mean_token_accuracy": 0.8588306061923504,
842
+ "num_tokens": 7669861.0,
843
+ "step": 690
844
+ },
845
+ {
846
+ "entropy": 0.5218504227697849,
847
+ "epoch": 1.3779527559055118,
848
+ "grad_norm": 0.5833286643028259,
849
+ "learning_rate": 0.00011817826777754171,
850
+ "loss": 0.5654644966125488,
851
+ "mean_token_accuracy": 0.8463637113571167,
852
+ "num_tokens": 7782831.0,
853
+ "step": 700
854
+ },
855
+ {
856
+ "epoch": 1.3779527559055118,
857
+ "eval_entropy": 0.6348862344468081,
858
+ "eval_loss": 0.7523996829986572,
859
+ "eval_mean_token_accuracy": 0.7957922904579727,
860
+ "eval_num_tokens": 7782831.0,
861
+ "eval_runtime": 50.1023,
862
+ "eval_samples_per_second": 8.523,
863
+ "eval_steps_per_second": 1.078,
864
+ "step": 700
865
+ },
866
+ {
867
+ "entropy": 0.501879290305078,
868
+ "epoch": 1.3976377952755905,
869
+ "grad_norm": 0.4697672724723816,
870
+ "learning_rate": 0.00011608416337104065,
871
+ "loss": 0.5606812953948974,
872
+ "mean_token_accuracy": 0.854200828820467,
873
+ "num_tokens": 7895511.0,
874
+ "step": 710
875
+ },
876
+ {
877
+ "entropy": 0.45901266783475875,
878
+ "epoch": 1.4173228346456692,
879
+ "grad_norm": 0.47944504022598267,
880
+ "learning_rate": 0.00011398279233530829,
881
+ "loss": 0.5282856464385987,
882
+ "mean_token_accuracy": 0.8638743564486504,
883
+ "num_tokens": 8006186.0,
884
+ "step": 720
885
+ },
886
+ {
887
+ "entropy": 0.5264331614598632,
888
+ "epoch": 1.4370078740157481,
889
+ "grad_norm": 0.515600860118866,
890
+ "learning_rate": 0.00011187510404420028,
891
+ "loss": 0.5334322452545166,
892
+ "mean_token_accuracy": 0.8458372093737125,
893
+ "num_tokens": 8110444.0,
894
+ "step": 730
895
+ },
896
+ {
897
+ "entropy": 0.4978476842865348,
898
+ "epoch": 1.4566929133858268,
899
+ "grad_norm": 0.7359904050827026,
900
+ "learning_rate": 0.00010976205072563132,
901
+ "loss": 0.6107251644134521,
902
+ "mean_token_accuracy": 0.8548374712467194,
903
+ "num_tokens": 8220128.0,
904
+ "step": 740
905
+ },
906
+ {
907
+ "entropy": 0.47486210353672503,
908
+ "epoch": 1.4763779527559056,
909
+ "grad_norm": 0.5459336042404175,
910
+ "learning_rate": 0.00010764458703137024,
911
+ "loss": 0.5048822402954102,
912
+ "mean_token_accuracy": 0.8645319528877735,
913
+ "num_tokens": 8327961.0,
914
+ "step": 750
915
+ },
916
+ {
917
+ "epoch": 1.4763779527559056,
918
+ "eval_entropy": 0.6082134053662971,
919
+ "eval_loss": 0.7509644031524658,
920
+ "eval_mean_token_accuracy": 0.7988089356157515,
921
+ "eval_num_tokens": 8327961.0,
922
+ "eval_runtime": 50.0575,
923
+ "eval_samples_per_second": 8.53,
924
+ "eval_steps_per_second": 1.079,
925
+ "step": 750
926
+ },
927
+ {
928
+ "entropy": 0.4768192932009697,
929
+ "epoch": 1.4960629921259843,
930
+ "grad_norm": 0.7404751181602478,
931
+ "learning_rate": 0.00010552366960573985,
932
+ "loss": 0.5644009590148926,
933
+ "mean_token_accuracy": 0.8573225177824497,
934
+ "num_tokens": 8432725.0,
935
+ "step": 760
936
+ },
937
+ {
938
+ "entropy": 0.49236655086278913,
939
+ "epoch": 1.515748031496063,
940
+ "grad_norm": 0.3972789943218231,
941
+ "learning_rate": 0.00010340025665341684,
942
+ "loss": 0.5338064193725586,
943
+ "mean_token_accuracy": 0.8573864892125129,
944
+ "num_tokens": 8550042.0,
945
+ "step": 770
946
+ },
947
+ {
948
+ "entropy": 0.47401853948831557,
949
+ "epoch": 1.5354330708661417,
950
+ "grad_norm": 0.4980944097042084,
951
+ "learning_rate": 0.00010127530750652642,
952
+ "loss": 0.5052824020385742,
953
+ "mean_token_accuracy": 0.8658686302602291,
954
+ "num_tokens": 8664499.0,
955
+ "step": 780
956
+ },
957
+ {
958
+ "entropy": 0.5025391636416316,
959
+ "epoch": 1.5551181102362204,
960
+ "grad_norm": 0.709291934967041,
961
+ "learning_rate": 9.914978219122791e-05,
962
+ "loss": 0.5120546340942382,
963
+ "mean_token_accuracy": 0.8520957857370377,
964
+ "num_tokens": 8778459.0,
965
+ "step": 790
966
+ },
967
+ {
968
+ "entropy": 0.44445893429219724,
969
+ "epoch": 1.574803149606299,
970
+ "grad_norm": 0.7344470620155334,
971
+ "learning_rate": 9.702464099398632e-05,
972
+ "loss": 0.4976132869720459,
973
+ "mean_token_accuracy": 0.8710284993052483,
974
+ "num_tokens": 8886361.0,
975
+ "step": 800
976
+ },
977
+ {
978
+ "epoch": 1.574803149606299,
979
+ "eval_entropy": 0.6160008189854799,
980
+ "eval_loss": 0.7450118660926819,
981
+ "eval_mean_token_accuracy": 0.7979579280923914,
982
+ "eval_num_tokens": 8886361.0,
983
+ "eval_runtime": 50.0669,
984
+ "eval_samples_per_second": 8.529,
985
+ "eval_steps_per_second": 1.079,
986
+ "step": 800
987
+ },
988
+ {
989
+ "entropy": 0.4969221928156912,
990
+ "epoch": 1.594488188976378,
991
+ "grad_norm": 0.5188943147659302,
992
+ "learning_rate": 9.4900844027727e-05,
993
+ "loss": 0.5137925624847413,
994
+ "mean_token_accuracy": 0.8546112708747386,
995
+ "num_tokens": 8995558.0,
996
+ "step": 810
997
+ },
998
+ {
999
+ "entropy": 0.49240641091018916,
1000
+ "epoch": 1.6141732283464567,
1001
+ "grad_norm": 0.5738324522972107,
1002
+ "learning_rate": 9.277935079806795e-05,
1003
+ "loss": 0.5383063793182373,
1004
+ "mean_token_accuracy": 0.8596077263355255,
1005
+ "num_tokens": 9096245.0,
1006
+ "step": 820
1007
+ },
1008
+ {
1009
+ "entropy": 0.4618503864854574,
1010
+ "epoch": 1.6338582677165354,
1011
+ "grad_norm": 0.89094477891922,
1012
+ "learning_rate": 9.066111976982712e-05,
1013
+ "loss": 0.49991846084594727,
1014
+ "mean_token_accuracy": 0.8642474576830864,
1015
+ "num_tokens": 9204264.0,
1016
+ "step": 830
1017
+ },
1018
+ {
1019
+ "entropy": 0.5017987065948546,
1020
+ "epoch": 1.6535433070866141,
1021
+ "grad_norm": 0.5113924145698547,
1022
+ "learning_rate": 8.854710793399947e-05,
1023
+ "loss": 0.5541486740112305,
1024
+ "mean_token_accuracy": 0.8564616665244102,
1025
+ "num_tokens": 9314940.0,
1026
+ "step": 840
1027
+ },
1028
+ {
1029
+ "entropy": 0.47717792335897685,
1030
+ "epoch": 1.673228346456693,
1031
+ "grad_norm": 0.6113857626914978,
1032
+ "learning_rate": 8.64382703754003e-05,
1033
+ "loss": 0.5222208499908447,
1034
+ "mean_token_accuracy": 0.8575348354876041,
1035
+ "num_tokens": 9429496.0,
1036
+ "step": 850
1037
+ },
1038
+ {
1039
+ "epoch": 1.673228346456693,
1040
+ "eval_entropy": 0.6118225814015777,
1041
+ "eval_loss": 0.739860475063324,
1042
+ "eval_mean_token_accuracy": 0.7991818443492607,
1043
+ "eval_num_tokens": 9429496.0,
1044
+ "eval_runtime": 50.1045,
1045
+ "eval_samples_per_second": 8.522,
1046
+ "eval_steps_per_second": 1.078,
1047
+ "step": 850
1048
+ },
1049
+ {
1050
+ "entropy": 0.4527157239615917,
1051
+ "epoch": 1.6929133858267718,
1052
+ "grad_norm": 0.48835644125938416,
1053
+ "learning_rate": 8.433555984116937e-05,
1054
+ "loss": 0.5060441017150878,
1055
+ "mean_token_accuracy": 0.8712181739509106,
1056
+ "num_tokens": 9544270.0,
1057
+ "step": 860
1058
+ },
1059
+ {
1060
+ "entropy": 0.4360736860893667,
1061
+ "epoch": 1.7125984251968505,
1062
+ "grad_norm": 0.5477748513221741,
1063
+ "learning_rate": 8.22399263103314e-05,
1064
+ "loss": 0.5094625949859619,
1065
+ "mean_token_accuracy": 0.8659471146762371,
1066
+ "num_tokens": 9654198.0,
1067
+ "step": 870
1068
+ },
1069
+ {
1070
+ "entropy": 0.4745933244936168,
1071
+ "epoch": 1.7322834645669292,
1072
+ "grad_norm": 0.736858606338501,
1073
+ "learning_rate": 8.015231656460712e-05,
1074
+ "loss": 0.5135779857635498,
1075
+ "mean_token_accuracy": 0.8687760010361671,
1076
+ "num_tokens": 9769457.0,
1077
+ "step": 880
1078
+ },
1079
+ {
1080
+ "entropy": 0.4881877155974507,
1081
+ "epoch": 1.7519685039370079,
1082
+ "grad_norm": 0.608733594417572,
1083
+ "learning_rate": 7.807367376066889e-05,
1084
+ "loss": 0.5163476467132568,
1085
+ "mean_token_accuracy": 0.8567717753350734,
1086
+ "num_tokens": 9875831.0,
1087
+ "step": 890
1088
+ },
1089
+ {
1090
+ "entropy": 0.4794175827410072,
1091
+ "epoch": 1.7716535433070866,
1092
+ "grad_norm": 0.5370113849639893,
1093
+ "learning_rate": 7.60049370040338e-05,
1094
+ "loss": 0.5236234664916992,
1095
+ "mean_token_accuracy": 0.8579100959002972,
1096
+ "num_tokens": 9991758.0,
1097
+ "step": 900
1098
+ },
1099
+ {
1100
+ "epoch": 1.7716535433070866,
1101
+ "eval_entropy": 0.5980368935399585,
1102
+ "eval_loss": 0.7384271621704102,
1103
+ "eval_mean_token_accuracy": 0.7992007765505049,
1104
+ "eval_num_tokens": 9991758.0,
1105
+ "eval_runtime": 50.0629,
1106
+ "eval_samples_per_second": 8.529,
1107
+ "eval_steps_per_second": 1.079,
1108
+ "step": 900
1109
+ },
1110
+ {
1111
+ "entropy": 0.5110580354928971,
1112
+ "epoch": 1.7913385826771653,
1113
+ "grad_norm": 0.5215100049972534,
1114
+ "learning_rate": 7.394704092478742e-05,
1115
+ "loss": 0.5709793567657471,
1116
+ "mean_token_accuracy": 0.8531172260642051,
1117
+ "num_tokens": 10106255.0,
1118
+ "step": 910
1119
+ },
1120
+ {
1121
+ "entropy": 0.4726860882714391,
1122
+ "epoch": 1.811023622047244,
1123
+ "grad_norm": 0.5387454032897949,
1124
+ "learning_rate": 7.190091525532921e-05,
1125
+ "loss": 0.4944759845733643,
1126
+ "mean_token_accuracy": 0.8637764468789101,
1127
+ "num_tokens": 10218066.0,
1128
+ "step": 920
1129
+ },
1130
+ {
1131
+ "entropy": 0.5084793289192021,
1132
+ "epoch": 1.8307086614173227,
1133
+ "grad_norm": 0.6911677718162537,
1134
+ "learning_rate": 6.98674844103308e-05,
1135
+ "loss": 0.554714298248291,
1136
+ "mean_token_accuracy": 0.8502966247498989,
1137
+ "num_tokens": 10326991.0,
1138
+ "step": 930
1139
+ },
1140
+ {
1141
+ "entropy": 0.48612347496673464,
1142
+ "epoch": 1.8503937007874016,
1143
+ "grad_norm": 0.5485708117485046,
1144
+ "learning_rate": 6.784766706909662e-05,
1145
+ "loss": 0.5535434246063232,
1146
+ "mean_token_accuracy": 0.8570072211325168,
1147
+ "num_tokens": 10432558.0,
1148
+ "step": 940
1149
+ },
1150
+ {
1151
+ "entropy": 0.47198982127010825,
1152
+ "epoch": 1.8700787401574803,
1153
+ "grad_norm": 0.7393401861190796,
1154
+ "learning_rate": 6.58423757605158e-05,
1155
+ "loss": 0.5539324760437012,
1156
+ "mean_token_accuracy": 0.8608944483101368,
1157
+ "num_tokens": 10541702.0,
1158
+ "step": 950
1159
+ },
1160
+ {
1161
+ "epoch": 1.8700787401574803,
1162
+ "eval_entropy": 0.6433889176006671,
1163
+ "eval_loss": 0.7281302809715271,
1164
+ "eval_mean_token_accuracy": 0.7999497596864347,
1165
+ "eval_num_tokens": 10541702.0,
1166
+ "eval_runtime": 50.0861,
1167
+ "eval_samples_per_second": 8.525,
1168
+ "eval_steps_per_second": 1.078,
1169
+ "step": 950
1170
+ },
1171
+ {
1172
+ "entropy": 0.5372021682560444,
1173
+ "epoch": 1.889763779527559,
1174
+ "grad_norm": 0.5701485872268677,
1175
+ "learning_rate": 6.38525164507927e-05,
1176
+ "loss": 0.5327393531799316,
1177
+ "mean_token_accuracy": 0.8513112954795361,
1178
+ "num_tokens": 10652431.0,
1179
+ "step": 960
1180
+ },
1181
+ {
1182
+ "entropy": 0.47069347724318505,
1183
+ "epoch": 1.909448818897638,
1184
+ "grad_norm": 0.6635864973068237,
1185
+ "learning_rate": 6.187898813414251e-05,
1186
+ "loss": 0.5279619216918945,
1187
+ "mean_token_accuracy": 0.8639474131166935,
1188
+ "num_tokens": 10766036.0,
1189
+ "step": 970
1190
+ },
1191
+ {
1192
+ "entropy": 0.44332802165299656,
1193
+ "epoch": 1.9291338582677167,
1194
+ "grad_norm": 0.7213886380195618,
1195
+ "learning_rate": 5.99226824266365e-05,
1196
+ "loss": 0.50773606300354,
1197
+ "mean_token_accuracy": 0.8681917086243629,
1198
+ "num_tokens": 10869598.0,
1199
+ "step": 980
1200
+ },
1201
+ {
1202
+ "entropy": 0.4896688494831324,
1203
+ "epoch": 1.9488188976377954,
1204
+ "grad_norm": 0.7005161643028259,
1205
+ "learning_rate": 5.7984483163380764e-05,
1206
+ "loss": 0.5368472099304199,
1207
+ "mean_token_accuracy": 0.8613043077290058,
1208
+ "num_tokens": 10983085.0,
1209
+ "step": 990
1210
+ },
1211
+ {
1212
+ "entropy": 0.44838025560602546,
1213
+ "epoch": 1.968503937007874,
1214
+ "grad_norm": 0.63411545753479,
1215
+ "learning_rate": 5.606526599921026e-05,
1216
+ "loss": 0.5198753833770752,
1217
+ "mean_token_accuracy": 0.8690416067838669,
1218
+ "num_tokens": 11090966.0,
1219
+ "step": 1000
1220
+ },
1221
+ {
1222
+ "epoch": 1.968503937007874,
1223
+ "eval_entropy": 0.6066061594971904,
1224
+ "eval_loss": 0.7279917597770691,
1225
+ "eval_mean_token_accuracy": 0.8011515019116578,
1226
+ "eval_num_tokens": 11090966.0,
1227
+ "eval_runtime": 50.076,
1228
+ "eval_samples_per_second": 8.527,
1229
+ "eval_steps_per_second": 1.078,
1230
+ "step": 1000
1231
+ },
1232
+ {
1233
+ "entropy": 0.5023897506296635,
1234
+ "epoch": 1.9881889763779528,
1235
+ "grad_norm": 0.6006460189819336,
1236
+ "learning_rate": 5.416589801307874e-05,
1237
+ "loss": 0.5540077209472656,
1238
+ "mean_token_accuracy": 0.8556332632899284,
1239
+ "num_tokens": 11204584.0,
1240
+ "step": 1010
1241
+ },
1242
+ {
1243
+ "entropy": 0.4389859478920698,
1244
+ "epoch": 2.0078740157480315,
1245
+ "grad_norm": 0.38963860273361206,
1246
+ "learning_rate": 5.2287237316322676e-05,
1247
+ "loss": 0.4339911937713623,
1248
+ "mean_token_accuracy": 0.8813330098986626,
1249
+ "num_tokens": 11314232.0,
1250
+ "step": 1020
1251
+ },
1252
+ {
1253
+ "entropy": 0.37865939307957885,
1254
+ "epoch": 2.02755905511811,
1255
+ "grad_norm": 0.5649951100349426,
1256
+ "learning_rate": 5.043013266497751e-05,
1257
+ "loss": 0.35414083003997804,
1258
+ "mean_token_accuracy": 0.9043607592582703,
1259
+ "num_tokens": 11422130.0,
1260
+ "step": 1030
1261
+ },
1262
+ {
1263
+ "entropy": 0.32439285619184377,
1264
+ "epoch": 2.047244094488189,
1265
+ "grad_norm": 0.6074209809303284,
1266
+ "learning_rate": 4.85954230763197e-05,
1267
+ "loss": 0.36323723793029783,
1268
+ "mean_token_accuracy": 0.9103671722114086,
1269
+ "num_tokens": 11538400.0,
1270
+ "step": 1040
1271
+ },
1272
+ {
1273
+ "entropy": 0.31888613002374766,
1274
+ "epoch": 2.0669291338582676,
1275
+ "grad_norm": 0.5395853519439697,
1276
+ "learning_rate": 4.6783937449808856e-05,
1277
+ "loss": 0.32643492221832277,
1278
+ "mean_token_accuracy": 0.9092249758541584,
1279
+ "num_tokens": 11645829.0,
1280
+ "step": 1050
1281
+ },
1282
+ {
1283
+ "epoch": 2.0669291338582676,
1284
+ "eval_entropy": 0.5022390666935179,
1285
+ "eval_loss": 0.7915982604026794,
1286
+ "eval_mean_token_accuracy": 0.7972139318784078,
1287
+ "eval_num_tokens": 11645829.0,
1288
+ "eval_runtime": 50.0745,
1289
+ "eval_samples_per_second": 8.527,
1290
+ "eval_steps_per_second": 1.078,
1291
+ "step": 1050
1292
+ },
1293
+ {
1294
+ "entropy": 0.32281419560313224,
1295
+ "epoch": 2.0866141732283463,
1296
+ "grad_norm": 0.6258149147033691,
1297
+ "learning_rate": 4.499649419260133e-05,
1298
+ "loss": 0.31009109020233155,
1299
+ "mean_token_accuracy": 0.9126963399350643,
1300
+ "num_tokens": 11760076.0,
1301
+ "step": 1060
1302
+ },
1303
+ {
1304
+ "entropy": 0.34801057912409306,
1305
+ "epoch": 2.106299212598425,
1306
+ "grad_norm": 0.4270690083503723,
1307
+ "learning_rate": 4.323390084980353e-05,
1308
+ "loss": 0.35411341190338136,
1309
+ "mean_token_accuracy": 0.9039115123450756,
1310
+ "num_tokens": 11875367.0,
1311
+ "step": 1070
1312
+ },
1313
+ {
1314
+ "entropy": 0.32329632523469626,
1315
+ "epoch": 2.1259842519685037,
1316
+ "grad_norm": 0.6041743159294128,
1317
+ "learning_rate": 4.1496953739633124e-05,
1318
+ "loss": 0.31601505279541015,
1319
+ "mean_token_accuracy": 0.9122780673205853,
1320
+ "num_tokens": 11983766.0,
1321
+ "step": 1080
1322
+ },
1323
+ {
1324
+ "entropy": 0.32552749328315256,
1325
+ "epoch": 2.145669291338583,
1326
+ "grad_norm": 0.6716635227203369,
1327
+ "learning_rate": 3.978643759365202e-05,
1328
+ "loss": 0.33874006271362306,
1329
+ "mean_token_accuracy": 0.9068517275154591,
1330
+ "num_tokens": 12092559.0,
1331
+ "step": 1090
1332
+ },
1333
+ {
1334
+ "entropy": 0.32265327414497735,
1335
+ "epoch": 2.1653543307086616,
1336
+ "grad_norm": 0.606459379196167,
1337
+ "learning_rate": 3.810312520223419e-05,
1338
+ "loss": 0.33009474277496337,
1339
+ "mean_token_accuracy": 0.9104282423853874,
1340
+ "num_tokens": 12207307.0,
1341
+ "step": 1100
1342
+ },
1343
+ {
1344
+ "epoch": 2.1653543307086616,
1345
+ "eval_entropy": 0.49647785005746065,
1346
+ "eval_loss": 0.7967986464500427,
1347
+ "eval_mean_token_accuracy": 0.7973429693116082,
1348
+ "eval_num_tokens": 12207307.0,
1349
+ "eval_runtime": 50.0997,
1350
+ "eval_samples_per_second": 8.523,
1351
+ "eval_steps_per_second": 1.078,
1352
+ "step": 1100
1353
+ },
1354
+ {
1355
+ "entropy": 0.33745345920324327,
1356
+ "epoch": 2.1850393700787403,
1357
+ "grad_norm": 0.5246295928955078,
1358
+ "learning_rate": 3.644777706542845e-05,
1359
+ "loss": 0.34748287200927735,
1360
+ "mean_token_accuracy": 0.9026777386665344,
1361
+ "num_tokens": 12319969.0,
1362
+ "step": 1110
1363
+ },
1364
+ {
1365
+ "entropy": 0.31724564395844934,
1366
+ "epoch": 2.204724409448819,
1367
+ "grad_norm": 0.5573722720146179,
1368
+ "learning_rate": 3.4821141049373804e-05,
1369
+ "loss": 0.2927221775054932,
1370
+ "mean_token_accuracy": 0.9131564185023308,
1371
+ "num_tokens": 12431027.0,
1372
+ "step": 1120
1373
+ },
1374
+ {
1375
+ "entropy": 0.3440235279500484,
1376
+ "epoch": 2.2244094488188977,
1377
+ "grad_norm": 0.6053721904754639,
1378
+ "learning_rate": 3.3223952048422544e-05,
1379
+ "loss": 0.34805119037628174,
1380
+ "mean_token_accuracy": 0.9048855185508728,
1381
+ "num_tokens": 12546037.0,
1382
+ "step": 1130
1383
+ },
1384
+ {
1385
+ "entropy": 0.33274165438488124,
1386
+ "epoch": 2.2440944881889764,
1387
+ "grad_norm": 0.6461567282676697,
1388
+ "learning_rate": 3.165693165312395e-05,
1389
+ "loss": 0.34774529933929443,
1390
+ "mean_token_accuracy": 0.9065869458019733,
1391
+ "num_tokens": 12656297.0,
1392
+ "step": 1140
1393
+ },
1394
+ {
1395
+ "entropy": 0.31052923379465935,
1396
+ "epoch": 2.263779527559055,
1397
+ "grad_norm": 0.6634212136268616,
1398
+ "learning_rate": 3.0120787824218554e-05,
1399
+ "loss": 0.3316983222961426,
1400
+ "mean_token_accuracy": 0.9117146715521812,
1401
+ "num_tokens": 12763743.0,
1402
+ "step": 1150
1403
+ },
1404
+ {
1405
+ "epoch": 2.263779527559055,
1406
+ "eval_entropy": 0.49124936207577036,
1407
+ "eval_loss": 0.7972699403762817,
1408
+ "eval_mean_token_accuracy": 0.7969378519941259,
1409
+ "eval_num_tokens": 12763743.0,
1410
+ "eval_runtime": 50.0791,
1411
+ "eval_samples_per_second": 8.527,
1412
+ "eval_steps_per_second": 1.078,
1413
+ "step": 1150
1414
+ },
1415
+ {
1416
+ "entropy": 0.3448523377999663,
1417
+ "epoch": 2.283464566929134,
1418
+ "grad_norm": 0.5939217805862427,
1419
+ "learning_rate": 2.8616214572789968e-05,
1420
+ "loss": 0.34267549514770507,
1421
+ "mean_token_accuracy": 0.9079354353249073,
1422
+ "num_tokens": 12874080.0,
1423
+ "step": 1160
1424
+ },
1425
+ {
1426
+ "entropy": 0.2993648503907025,
1427
+ "epoch": 2.3031496062992125,
1428
+ "grad_norm": 0.5903282165527344,
1429
+ "learning_rate": 2.7143891646719265e-05,
1430
+ "loss": 0.3056223392486572,
1431
+ "mean_token_accuracy": 0.9152895107865333,
1432
+ "num_tokens": 12986029.0,
1433
+ "step": 1170
1434
+ },
1435
+ {
1436
+ "entropy": 0.3108034676872194,
1437
+ "epoch": 2.322834645669291,
1438
+ "grad_norm": 0.7086691856384277,
1439
+ "learning_rate": 2.570448422358297e-05,
1440
+ "loss": 0.3301855564117432,
1441
+ "mean_token_accuracy": 0.9101004771888256,
1442
+ "num_tokens": 13092818.0,
1443
+ "step": 1180
1444
+ },
1445
+ {
1446
+ "entropy": 0.31144436639733614,
1447
+ "epoch": 2.34251968503937,
1448
+ "grad_norm": 0.683090329170227,
1449
+ "learning_rate": 2.4298642610134105e-05,
1450
+ "loss": 0.3339296817779541,
1451
+ "mean_token_accuracy": 0.9146400101482868,
1452
+ "num_tokens": 13206493.0,
1453
+ "step": 1190
1454
+ },
1455
+ {
1456
+ "entropy": 0.3901509671472013,
1457
+ "epoch": 2.362204724409449,
1458
+ "grad_norm": 0.798456609249115,
1459
+ "learning_rate": 2.292700194850147e-05,
1460
+ "loss": 0.3838188648223877,
1461
+ "mean_token_accuracy": 0.8957899294793605,
1462
+ "num_tokens": 13314862.0,
1463
+ "step": 1200
1464
+ },
1465
+ {
1466
+ "epoch": 2.362204724409449,
1467
+ "eval_entropy": 0.4911509961993606,
1468
+ "eval_loss": 0.7939621806144714,
1469
+ "eval_mean_token_accuracy": 0.7974915846630379,
1470
+ "eval_num_tokens": 13314862.0,
1471
+ "eval_runtime": 50.0789,
1472
+ "eval_samples_per_second": 8.527,
1473
+ "eval_steps_per_second": 1.078,
1474
+ "step": 1200
1475
+ },
1476
+ {
1477
+ "entropy": 0.3228563711978495,
1478
+ "epoch": 2.3818897637795278,
1479
+ "grad_norm": 0.5817623138427734,
1480
+ "learning_rate": 2.159018192924004e-05,
1481
+ "loss": 0.3346099853515625,
1482
+ "mean_token_accuracy": 0.9080430999398231,
1483
+ "num_tokens": 13423520.0,
1484
+ "step": 1210
1485
+ },
1486
+ {
1487
+ "entropy": 0.3402016874402761,
1488
+ "epoch": 2.4015748031496065,
1489
+ "grad_norm": 0.5687164068222046,
1490
+ "learning_rate": 2.0288786511362525e-05,
1491
+ "loss": 0.34886922836303713,
1492
+ "mean_token_accuracy": 0.9053414203226566,
1493
+ "num_tokens": 13536197.0,
1494
+ "step": 1220
1495
+ },
1496
+ {
1497
+ "entropy": 0.32414694763720037,
1498
+ "epoch": 2.421259842519685,
1499
+ "grad_norm": 0.6170526742935181,
1500
+ "learning_rate": 1.9023403649477813e-05,
1501
+ "loss": 0.3294362545013428,
1502
+ "mean_token_accuracy": 0.9133819483220578,
1503
+ "num_tokens": 13649116.0,
1504
+ "step": 1230
1505
+ },
1506
+ {
1507
+ "entropy": 0.30389058096334337,
1508
+ "epoch": 2.440944881889764,
1509
+ "grad_norm": 0.5538958311080933,
1510
+ "learning_rate": 1.7794605028160462e-05,
1511
+ "loss": 0.3009462594985962,
1512
+ "mean_token_accuracy": 0.909288102388382,
1513
+ "num_tokens": 13759803.0,
1514
+ "step": 1240
1515
+ },
1516
+ {
1517
+ "entropy": 0.3456068937666714,
1518
+ "epoch": 2.4606299212598426,
1519
+ "grad_norm": 0.8508191704750061,
1520
+ "learning_rate": 1.6602945803670345e-05,
1521
+ "loss": 0.3429473638534546,
1522
+ "mean_token_accuracy": 0.9037580870091915,
1523
+ "num_tokens": 13872536.0,
1524
+ "step": 1250
1525
+ },
1526
+ {
1527
+ "epoch": 2.4606299212598426,
1528
+ "eval_entropy": 0.4867473399197614,
1529
+ "eval_loss": 0.798021137714386,
1530
+ "eval_mean_token_accuracy": 0.7978451141604671,
1531
+ "eval_num_tokens": 13872536.0,
1532
+ "eval_runtime": 50.0975,
1533
+ "eval_samples_per_second": 8.523,
1534
+ "eval_steps_per_second": 1.078,
1535
+ "step": 1250
1536
+ },
1537
+ {
1538
+ "entropy": 0.30477998238056897,
1539
+ "epoch": 2.4803149606299213,
1540
+ "grad_norm": 0.7420564889907837,
1541
+ "learning_rate": 1.544896435313997e-05,
1542
+ "loss": 0.323688268661499,
1543
+ "mean_token_accuracy": 0.9099539265036583,
1544
+ "num_tokens": 13982332.0,
1545
+ "step": 1260
1546
+ },
1547
+ {
1548
+ "entropy": 0.325347469933331,
1549
+ "epoch": 2.5,
1550
+ "grad_norm": 0.6256458163261414,
1551
+ "learning_rate": 1.4333182031342185e-05,
1552
+ "loss": 0.3231887578964233,
1553
+ "mean_token_accuracy": 0.905095786601305,
1554
+ "num_tokens": 14096535.0,
1555
+ "step": 1270
1556
+ },
1557
+ {
1558
+ "entropy": 0.3353913531638682,
1559
+ "epoch": 2.5196850393700787,
1560
+ "grad_norm": 0.500119149684906,
1561
+ "learning_rate": 1.3256102935148496e-05,
1562
+ "loss": 0.36284313201904295,
1563
+ "mean_token_accuracy": 0.9058476276695728,
1564
+ "num_tokens": 14214551.0,
1565
+ "step": 1280
1566
+ },
1567
+ {
1568
+ "entropy": 0.3284754135645926,
1569
+ "epoch": 2.5393700787401574,
1570
+ "grad_norm": 0.7045860886573792,
1571
+ "learning_rate": 1.2218213675784063e-05,
1572
+ "loss": 0.34949867725372313,
1573
+ "mean_token_accuracy": 0.9073399856686593,
1574
+ "num_tokens": 14322085.0,
1575
+ "step": 1290
1576
+ },
1577
+ {
1578
+ "entropy": 0.3220018117688596,
1579
+ "epoch": 2.559055118110236,
1580
+ "grad_norm": 0.5107280611991882,
1581
+ "learning_rate": 1.1219983158982917e-05,
1582
+ "loss": 0.32134926319122314,
1583
+ "mean_token_accuracy": 0.9144444465637207,
1584
+ "num_tokens": 14431579.0,
1585
+ "step": 1300
1586
+ },
1587
+ {
1588
+ "epoch": 2.559055118110236,
1589
+ "eval_entropy": 0.4890395458097811,
1590
+ "eval_loss": 0.7947290539741516,
1591
+ "eval_mean_token_accuracy": 0.7974367803997464,
1592
+ "eval_num_tokens": 14431579.0,
1593
+ "eval_runtime": 50.1041,
1594
+ "eval_samples_per_second": 8.522,
1595
+ "eval_steps_per_second": 1.078,
1596
+ "step": 1300
1597
+ },
1598
+ {
1599
+ "entropy": 0.2850076165981591,
1600
+ "epoch": 2.578740157480315,
1601
+ "grad_norm": 0.7151411771774292,
1602
+ "learning_rate": 1.0261862373141839e-05,
1603
+ "loss": 0.2979953527450562,
1604
+ "mean_token_accuracy": 0.9207482695579529,
1605
+ "num_tokens": 14536887.0,
1606
+ "step": 1310
1607
+ },
1608
+ {
1609
+ "entropy": 0.2971831484232098,
1610
+ "epoch": 2.5984251968503935,
1611
+ "grad_norm": 0.7176497578620911,
1612
+ "learning_rate": 9.344284185569463e-06,
1613
+ "loss": 0.3046797037124634,
1614
+ "mean_token_accuracy": 0.9163132011890411,
1615
+ "num_tokens": 14649040.0,
1616
+ "step": 1320
1617
+ },
1618
+ {
1619
+ "entropy": 0.31773042744025587,
1620
+ "epoch": 2.6181102362204722,
1621
+ "grad_norm": 0.5870872735977173,
1622
+ "learning_rate": 8.467663146921979e-06,
1623
+ "loss": 0.323029899597168,
1624
+ "mean_token_accuracy": 0.9097053371369839,
1625
+ "num_tokens": 14757590.0,
1626
+ "step": 1330
1627
+ },
1628
+ {
1629
+ "entropy": 0.317878791783005,
1630
+ "epoch": 2.637795275590551,
1631
+ "grad_norm": 0.5370131134986877,
1632
+ "learning_rate": 7.632395303914208e-06,
1633
+ "loss": 0.3096921920776367,
1634
+ "mean_token_accuracy": 0.9069532811641693,
1635
+ "num_tokens": 14870411.0,
1636
+ "step": 1340
1637
+ },
1638
+ {
1639
+ "entropy": 0.30778416004031894,
1640
+ "epoch": 2.65748031496063,
1641
+ "grad_norm": 0.6148006319999695,
1642
+ "learning_rate": 6.838858020390615e-06,
1643
+ "loss": 0.33772549629211424,
1644
+ "mean_token_accuracy": 0.913542590290308,
1645
+ "num_tokens": 14986705.0,
1646
+ "step": 1350
1647
+ },
1648
+ {
1649
+ "epoch": 2.65748031496063,
1650
+ "eval_entropy": 0.4901013904147678,
1651
+ "eval_loss": 0.7947279214859009,
1652
+ "eval_mean_token_accuracy": 0.7975728578037686,
1653
+ "eval_num_tokens": 14986705.0,
1654
+ "eval_runtime": 50.0762,
1655
+ "eval_samples_per_second": 8.527,
1656
+ "eval_steps_per_second": 1.078,
1657
+ "step": 1350
1658
+ },
1659
+ {
1660
+ "entropy": 0.3350960427895188,
1661
+ "epoch": 2.677165354330709,
1662
+ "grad_norm": 0.7815200686454773,
1663
+ "learning_rate": 6.087409806836752e-06,
1664
+ "loss": 0.3436413764953613,
1665
+ "mean_token_accuracy": 0.9064855180680752,
1666
+ "num_tokens": 15095469.0,
1667
+ "step": 1360
1668
+ },
1669
+ {
1670
+ "entropy": 0.2992165580391884,
1671
+ "epoch": 2.6968503937007875,
1672
+ "grad_norm": 0.6063485741615295,
1673
+ "learning_rate": 5.378390158408731e-06,
1674
+ "loss": 0.3226536512374878,
1675
+ "mean_token_accuracy": 0.9164511568844318,
1676
+ "num_tokens": 15202248.0,
1677
+ "step": 1370
1678
+ },
1679
+ {
1680
+ "entropy": 0.3059391477610916,
1681
+ "epoch": 2.716535433070866,
1682
+ "grad_norm": 0.582249104976654,
1683
+ "learning_rate": 4.712119401553394e-06,
1684
+ "loss": 0.2904583692550659,
1685
+ "mean_token_accuracy": 0.9138661302626133,
1686
+ "num_tokens": 15312525.0,
1687
+ "step": 1380
1688
+ },
1689
+ {
1690
+ "entropy": 0.3175976496189833,
1691
+ "epoch": 2.736220472440945,
1692
+ "grad_norm": 0.5042891502380371,
1693
+ "learning_rate": 4.088898549288689e-06,
1694
+ "loss": 0.33177206516265867,
1695
+ "mean_token_accuracy": 0.9126643091440201,
1696
+ "num_tokens": 15424901.0,
1697
+ "step": 1390
1698
+ },
1699
+ {
1700
+ "entropy": 0.3237245835363865,
1701
+ "epoch": 2.7559055118110236,
1702
+ "grad_norm": 0.6042836308479309,
1703
+ "learning_rate": 3.5090091652096977e-06,
1704
+ "loss": 0.3255606174468994,
1705
+ "mean_token_accuracy": 0.911313808709383,
1706
+ "num_tokens": 15534177.0,
1707
+ "step": 1400
1708
+ },
1709
+ {
1710
+ "epoch": 2.7559055118110236,
1711
+ "eval_entropy": 0.49696798898555616,
1712
+ "eval_loss": 0.7927594780921936,
1713
+ "eval_mean_token_accuracy": 0.7980255352126228,
1714
+ "eval_num_tokens": 15534177.0,
1715
+ "eval_runtime": 50.0812,
1716
+ "eval_samples_per_second": 8.526,
1717
+ "eval_steps_per_second": 1.078,
1718
+ "step": 1400
1719
+ },
1720
+ {
1721
+ "entropy": 0.3428220834583044,
1722
+ "epoch": 2.7755905511811023,
1723
+ "grad_norm": 0.728273332118988,
1724
+ "learning_rate": 2.972713236281632e-06,
1725
+ "loss": 0.3655885934829712,
1726
+ "mean_token_accuracy": 0.9057191483676433,
1727
+ "num_tokens": 15642725.0,
1728
+ "step": 1410
1729
+ },
1730
+ {
1731
+ "entropy": 0.3044391763396561,
1732
+ "epoch": 2.795275590551181,
1733
+ "grad_norm": 0.5648255944252014,
1734
+ "learning_rate": 2.480253054477244e-06,
1735
+ "loss": 0.3287725210189819,
1736
+ "mean_token_accuracy": 0.9158088378608227,
1737
+ "num_tokens": 15749590.0,
1738
+ "step": 1420
1739
+ },
1740
+ {
1741
+ "entropy": 0.32088840757496656,
1742
+ "epoch": 2.8149606299212597,
1743
+ "grad_norm": 0.5879103541374207,
1744
+ "learning_rate": 2.031851107312366e-06,
1745
+ "loss": 0.3544080018997192,
1746
+ "mean_token_accuracy": 0.9135449744760991,
1747
+ "num_tokens": 15865143.0,
1748
+ "step": 1430
1749
+ },
1750
+ {
1751
+ "entropy": 0.3113178635016084,
1752
+ "epoch": 2.8346456692913384,
1753
+ "grad_norm": 0.6843683123588562,
1754
+ "learning_rate": 1.6277099773286951e-06,
1755
+ "loss": 0.29128711223602294,
1756
+ "mean_token_accuracy": 0.9160408519208432,
1757
+ "num_tokens": 15967667.0,
1758
+ "step": 1440
1759
+ },
1760
+ {
1761
+ "entropy": 0.32423784183338283,
1762
+ "epoch": 2.8543307086614176,
1763
+ "grad_norm": 0.6659854650497437,
1764
+ "learning_rate": 1.2680122505694502e-06,
1765
+ "loss": 0.3179208755493164,
1766
+ "mean_token_accuracy": 0.9091328486800194,
1767
+ "num_tokens": 16077301.0,
1768
+ "step": 1450
1769
+ },
1770
+ {
1771
+ "epoch": 2.8543307086614176,
1772
+ "eval_entropy": 0.4910302360852559,
1773
+ "eval_loss": 0.792415976524353,
1774
+ "eval_mean_token_accuracy": 0.798325040826091,
1775
+ "eval_num_tokens": 16077301.0,
1776
+ "eval_runtime": 50.0532,
1777
+ "eval_samples_per_second": 8.531,
1778
+ "eval_steps_per_second": 1.079,
1779
+ "step": 1450
1780
+ },
1781
+ {
1782
+ "entropy": 0.3308924221433699,
1783
+ "epoch": 2.8740157480314963,
1784
+ "grad_norm": 0.6177695989608765,
1785
+ "learning_rate": 9.529204340892772e-07,
1786
+ "loss": 0.34883484840393064,
1787
+ "mean_token_accuracy": 0.907434081286192,
1788
+ "num_tokens": 16190635.0,
1789
+ "step": 1460
1790
+ },
1791
+ {
1792
+ "entropy": 0.32041617911309006,
1793
+ "epoch": 2.893700787401575,
1794
+ "grad_norm": 0.9388318657875061,
1795
+ "learning_rate": 6.825768825355017e-07,
1796
+ "loss": 0.33657877445220946,
1797
+ "mean_token_accuracy": 0.9068625263869763,
1798
+ "num_tokens": 16304259.0,
1799
+ "step": 1470
1800
+ },
1801
+ {
1802
+ "entropy": 0.29119140561670065,
1803
+ "epoch": 2.9133858267716537,
1804
+ "grad_norm": 0.6246579885482788,
1805
+ "learning_rate": 4.5710373383401895e-07,
1806
+ "loss": 0.28482346534729003,
1807
+ "mean_token_accuracy": 0.9181540630757808,
1808
+ "num_tokens": 16414959.0,
1809
+ "step": 1480
1810
+ },
1811
+ {
1812
+ "entropy": 0.30836315331980585,
1813
+ "epoch": 2.9330708661417324,
1814
+ "grad_norm": 0.6171616911888123,
1815
+ "learning_rate": 2.766028540089227e-07,
1816
+ "loss": 0.3132902145385742,
1817
+ "mean_token_accuracy": 0.9110966674983502,
1818
+ "num_tokens": 16531149.0,
1819
+ "step": 1490
1820
+ },
1821
+ {
1822
+ "entropy": 0.2961795757524669,
1823
+ "epoch": 2.952755905511811,
1824
+ "grad_norm": 0.7841485142707825,
1825
+ "learning_rate": 1.4115579116061873e-07,
1826
+ "loss": 0.3022057771682739,
1827
+ "mean_token_accuracy": 0.9193245336413384,
1828
+ "num_tokens": 16634608.0,
1829
+ "step": 1500
1830
+ },
1831
+ {
1832
+ "epoch": 2.952755905511811,
1833
+ "eval_entropy": 0.490779525703854,
1834
+ "eval_loss": 0.792911946773529,
1835
+ "eval_mean_token_accuracy": 0.7981838837817863,
1836
+ "eval_num_tokens": 16634608.0,
1837
+ "eval_runtime": 50.0697,
1838
+ "eval_samples_per_second": 8.528,
1839
+ "eval_steps_per_second": 1.078,
1840
+ "step": 1500
1841
+ },
1842
+ {
1843
+ "entropy": 0.3136138510890305,
1844
+ "epoch": 2.97244094488189,
1845
+ "grad_norm": 0.5390800833702087,
1846
+ "learning_rate": 5.0823738623417826e-08,
1847
+ "loss": 0.3194080591201782,
1848
+ "mean_token_accuracy": 0.9103287599980832,
1849
+ "num_tokens": 16742519.0,
1850
+ "step": 1510
1851
+ },
1852
+ {
1853
+ "entropy": 0.31666473839432,
1854
+ "epoch": 2.9921259842519685,
1855
+ "grad_norm": 0.5248324275016785,
1856
+ "learning_rate": 5.647507319117562e-09,
1857
+ "loss": 0.31403298377990724,
1858
+ "mean_token_accuracy": 0.9132906906306744,
1859
+ "num_tokens": 16855391.0,
1860
+ "step": 1520
1861
+ },
1862
+ {
1863
+ "epoch": 3.0,
1864
+ "eval_entropy": 0.49082624525935564,
1865
+ "eval_loss": 0.7929432988166809,
1866
+ "eval_mean_token_accuracy": 0.7976736547770323,
1867
+ "eval_num_tokens": 16901880.0,
1868
+ "eval_runtime": 50.0698,
1869
+ "eval_samples_per_second": 8.528,
1870
+ "eval_steps_per_second": 1.078,
1871
+ "step": 1524
1872
+ }
1873
+ ],
1874
+ "logging_steps": 10,
1875
+ "max_steps": 1524,
1876
+ "num_input_tokens_seen": 0,
1877
+ "num_train_epochs": 3,
1878
+ "save_steps": 50,
1879
+ "stateful_callbacks": {
1880
+ "TrainerControl": {
1881
+ "args": {
1882
+ "should_epoch_stop": false,
1883
+ "should_evaluate": false,
1884
+ "should_log": false,
1885
+ "should_save": true,
1886
+ "should_training_stop": true
1887
+ },
1888
+ "attributes": {}
1889
+ }
1890
+ },
1891
+ "total_flos": 8.956265936390922e+17,
1892
+ "train_batch_size": 2,
1893
+ "trial_name": null,
1894
+ "trial_params": null
1895
+ }
checkpoint-1524/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c565827a95d76fd524e57e1a6f572b1e00f75c93f00b63781d130a3eb57a2eb6
3
+ size 5713
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,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|fim_pad|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c565827a95d76fd524e57e1a6f572b1e00f75c93f00b63781d130a3eb57a2eb6
3
+ size 5713