modrill commited on
Commit
944a1b0
·
verified ·
1 Parent(s): 3b66962

Add files using upload-large-folder tool

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-3125/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,16 +1,62 @@
1
  ---
2
- license: cc-by-nc-4.0
 
 
3
  tags:
4
- - qwen3
5
- - mhm
6
- - text-generation
7
- library_name: transformers
 
 
 
8
  ---
9
 
10
- # lingcoder_shortcot_4k_lora_qwen3_4b_base
11
 
12
- Auto-uploaded by watcher.
 
13
 
14
- - Source path: `trl/models/qwen3-4b-base-restart-lingcoder-shortcot-4k-lora`
15
- - Uploaded at: `2026-05-20T05:44:57.337294`
16
- - Visibility: `public`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Qwen/Qwen3-4B-Base
3
+ library_name: peft
4
+ model_name: qwen3-4b-base-restart-lingcoder-shortcot-4k-lora
5
  tags:
6
+ - base_model:adapter:Qwen/Qwen3-4B-Base
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
  ---
14
 
15
+ # Model Card for qwen3-4b-base-restart-lingcoder-shortcot-4k-lora
16
 
17
+ This model is a fine-tuned version of [Qwen/Qwen3-4B-Base](https://huggingface.co/Qwen/Qwen3-4B-Base).
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.5.0.dev0
43
+ - Transformers: 5.8.0
44
+ - Pytorch: 2.11.0
45
+ - Datasets: 4.8.5
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/Qwen3-4B-Base",
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
+ "v_proj",
34
+ "gate_proj",
35
+ "o_proj",
36
+ "q_proj",
37
+ "k_proj",
38
+ "down_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:0a8c355fc3fc3a1b4db160f7658f983d55dd9a59a600a23c32cf66501ea0729b
3
+ size 264308896
chat_template.jinja ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- for message in messages %}
2
+ {%- if message.role == "user" %}
3
+ {{- '<|im_start|>user\n' + message.content + '<|im_end|>\n' }}
4
+ {%- elif message.role == "system" %}
5
+ {{- '<|im_start|>system\n' + message.content + '<|im_end|>\n' }}
6
+ {%- elif message.role == "assistant" %}
7
+ {{- '<|im_start|>assistant\n' }}{% generation %}{{ message.content }}{% endgeneration %}{{ '<|im_end|>\n' }}
8
+ {%- endif %}
9
+ {%- endfor %}
10
+ {%- if add_generation_prompt %}
11
+ {{- '<|im_start|>assistant\n' }}
12
+ {%- endif %}
checkpoint-3125/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-4B-Base
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen3-4B-Base
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-3125/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/Qwen3-4B-Base",
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
+ "v_proj",
34
+ "gate_proj",
35
+ "o_proj",
36
+ "q_proj",
37
+ "k_proj",
38
+ "down_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-3125/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a8c355fc3fc3a1b4db160f7658f983d55dd9a59a600a23c32cf66501ea0729b
3
+ size 264308896
checkpoint-3125/chat_template.jinja ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- for message in messages %}
2
+ {%- if message.role == "user" %}
3
+ {{- '<|im_start|>user\n' + message.content + '<|im_end|>\n' }}
4
+ {%- elif message.role == "system" %}
5
+ {{- '<|im_start|>system\n' + message.content + '<|im_end|>\n' }}
6
+ {%- elif message.role == "assistant" %}
7
+ {{- '<|im_start|>assistant\n' }}{% generation %}{{ message.content }}{% endgeneration %}{{ '<|im_end|>\n' }}
8
+ {%- endif %}
9
+ {%- endfor %}
10
+ {%- if add_generation_prompt %}
11
+ {{- '<|im_start|>assistant\n' }}
12
+ {%- endif %}
checkpoint-3125/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b5e6acdc3daf5ebfc51b358fb17bdd1f4bf0e347b9f0aeb278084ca7f7fd76b
3
+ size 528915403
checkpoint-3125/rng_state_0.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edde728faae9609404442e2484eb365220fb6315734058efbe29e6a3122ab519
3
+ size 15429
checkpoint-3125/rng_state_1.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f83be5e98a1785888339fda9c3f3685963efb102c4db55d6c1125067140074f6
3
+ size 15429
checkpoint-3125/rng_state_2.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35c82797c6c9d779c45f9200f23e36769674e4f41d9bbe638c586153a805d1e8
3
+ size 15429
checkpoint-3125/rng_state_3.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9779b0c14d1e1fa283183973cb2425a2f55979638f4066ee2cffa58b7b93c495
3
+ size 15429
checkpoint-3125/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd5cdc84d2b4d9a932721799f114ebfcc55a4d590aebab27d5998a9f127ea471
3
+ size 1465
checkpoint-3125/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
3
+ size 11422650
checkpoint-3125/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": "<|endoftext|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }
checkpoint-3125/trainer_state.json ADDED
@@ -0,0 +1,3154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 3125,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.5006090428680181,
14
+ "epoch": 0.0032,
15
+ "grad_norm": 0.21088215708732605,
16
+ "learning_rate": 5.732484076433121e-06,
17
+ "loss": 0.5713953971862793,
18
+ "mean_token_accuracy": 0.8289921566843986,
19
+ "num_tokens": 533455.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.5081364050507545,
24
+ "epoch": 0.0064,
25
+ "grad_norm": 0.12202276289463043,
26
+ "learning_rate": 1.2101910828025478e-05,
27
+ "loss": 0.5539228916168213,
28
+ "mean_token_accuracy": 0.8328638426959515,
29
+ "num_tokens": 1067567.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.5529022507369519,
34
+ "epoch": 0.0096,
35
+ "grad_norm": 0.11152374744415283,
36
+ "learning_rate": 1.8471337579617834e-05,
37
+ "loss": 0.5397152423858642,
38
+ "mean_token_accuracy": 0.8347398519515992,
39
+ "num_tokens": 1600896.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.559289076551795,
44
+ "epoch": 0.0128,
45
+ "grad_norm": 0.10228055715560913,
46
+ "learning_rate": 2.4840764331210193e-05,
47
+ "loss": 0.5441999435424805,
48
+ "mean_token_accuracy": 0.8323002874851226,
49
+ "num_tokens": 2133971.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.5037001080811023,
54
+ "epoch": 0.016,
55
+ "grad_norm": 0.10043259710073471,
56
+ "learning_rate": 3.121019108280255e-05,
57
+ "loss": 0.5217269420623779,
58
+ "mean_token_accuracy": 0.8391494512557983,
59
+ "num_tokens": 2683285.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.5125732887536287,
64
+ "epoch": 0.0192,
65
+ "grad_norm": 0.10314421355724335,
66
+ "learning_rate": 3.7579617834394906e-05,
67
+ "loss": 0.515027666091919,
68
+ "mean_token_accuracy": 0.8395569138228893,
69
+ "num_tokens": 3217227.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.49653887934982777,
74
+ "epoch": 0.0224,
75
+ "grad_norm": 0.09557953476905823,
76
+ "learning_rate": 4.394904458598726e-05,
77
+ "loss": 0.4976811408996582,
78
+ "mean_token_accuracy": 0.8442590735852719,
79
+ "num_tokens": 3759709.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.5080962128937244,
84
+ "epoch": 0.0256,
85
+ "grad_norm": 0.11208797246217728,
86
+ "learning_rate": 5.031847133757962e-05,
87
+ "loss": 0.507160758972168,
88
+ "mean_token_accuracy": 0.8411325640976429,
89
+ "num_tokens": 4304319.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.5011889148503542,
94
+ "epoch": 0.0288,
95
+ "grad_norm": 0.11951766908168793,
96
+ "learning_rate": 5.6687898089171974e-05,
97
+ "loss": 0.5021108627319336,
98
+ "mean_token_accuracy": 0.8430344834923744,
99
+ "num_tokens": 4846886.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.4849133860319853,
104
+ "epoch": 0.032,
105
+ "grad_norm": 0.10586579144001007,
106
+ "learning_rate": 6.305732484076433e-05,
107
+ "loss": 0.48747682571411133,
108
+ "mean_token_accuracy": 0.8480054885149002,
109
+ "num_tokens": 5395975.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.4885189659893513,
114
+ "epoch": 0.0352,
115
+ "grad_norm": 0.1046752855181694,
116
+ "learning_rate": 6.942675159235669e-05,
117
+ "loss": 0.49596099853515624,
118
+ "mean_token_accuracy": 0.8458828076720237,
119
+ "num_tokens": 5932911.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.5003112446516752,
124
+ "epoch": 0.0384,
125
+ "grad_norm": 0.10725490748882294,
126
+ "learning_rate": 7.579617834394906e-05,
127
+ "loss": 0.49750380516052245,
128
+ "mean_token_accuracy": 0.8431005917489529,
129
+ "num_tokens": 6470335.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.4913600035011768,
134
+ "epoch": 0.0416,
135
+ "grad_norm": 0.10014921426773071,
136
+ "learning_rate": 8.21656050955414e-05,
137
+ "loss": 0.4953355312347412,
138
+ "mean_token_accuracy": 0.8447930745780468,
139
+ "num_tokens": 7002932.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.47147834971547126,
144
+ "epoch": 0.0448,
145
+ "grad_norm": 0.09612508863210678,
146
+ "learning_rate": 8.853503184713377e-05,
147
+ "loss": 0.47597084045410154,
148
+ "mean_token_accuracy": 0.8496062621474266,
149
+ "num_tokens": 7539204.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.499130529910326,
154
+ "epoch": 0.048,
155
+ "grad_norm": 0.1032324880361557,
156
+ "learning_rate": 9.490445859872612e-05,
157
+ "loss": 0.5046750068664551,
158
+ "mean_token_accuracy": 0.8422100260853768,
159
+ "num_tokens": 8074373.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.4958477046340704,
164
+ "epoch": 0.0512,
165
+ "grad_norm": 0.10810820758342743,
166
+ "learning_rate": 9.9999887960338e-05,
167
+ "loss": 0.49416637420654297,
168
+ "mean_token_accuracy": 0.8444528333842755,
169
+ "num_tokens": 8598228.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.4908892083913088,
174
+ "epoch": 0.0544,
175
+ "grad_norm": 0.09390716999769211,
176
+ "learning_rate": 9.999596662488985e-05,
177
+ "loss": 0.4936826705932617,
178
+ "mean_token_accuracy": 0.8448271870613098,
179
+ "num_tokens": 9131410.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.48737211152911186,
184
+ "epoch": 0.0576,
185
+ "grad_norm": 0.09588056057691574,
186
+ "learning_rate": 9.998644380844701e-05,
187
+ "loss": 0.489206600189209,
188
+ "mean_token_accuracy": 0.8464116282761097,
189
+ "num_tokens": 9675197.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.4986014157533646,
194
+ "epoch": 0.0608,
195
+ "grad_norm": 0.09068372845649719,
196
+ "learning_rate": 9.997132057793305e-05,
197
+ "loss": 0.498153829574585,
198
+ "mean_token_accuracy": 0.8440827287733554,
199
+ "num_tokens": 10214255.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.48283746242523196,
204
+ "epoch": 0.064,
205
+ "grad_norm": 0.08930274099111557,
206
+ "learning_rate": 9.99505986277344e-05,
207
+ "loss": 0.48722114562988283,
208
+ "mean_token_accuracy": 0.8474265016615391,
209
+ "num_tokens": 10749783.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.4735735967755318,
214
+ "epoch": 0.0672,
215
+ "grad_norm": 0.09251251816749573,
216
+ "learning_rate": 9.992428027951055e-05,
217
+ "loss": 0.47350778579711916,
218
+ "mean_token_accuracy": 0.8512057550251484,
219
+ "num_tokens": 11298257.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.49423972591757775,
224
+ "epoch": 0.0704,
225
+ "grad_norm": 0.0889236181974411,
226
+ "learning_rate": 9.989236848193394e-05,
227
+ "loss": 0.4964627265930176,
228
+ "mean_token_accuracy": 0.844541211426258,
229
+ "num_tokens": 11832347.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.47527725249528885,
234
+ "epoch": 0.0736,
235
+ "grad_norm": 0.08239874988794327,
236
+ "learning_rate": 9.985486681035949e-05,
237
+ "loss": 0.4780255317687988,
238
+ "mean_token_accuracy": 0.850318918377161,
239
+ "num_tokens": 12369986.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.4821702651679516,
244
+ "epoch": 0.0768,
245
+ "grad_norm": 0.08620651811361313,
246
+ "learning_rate": 9.98117794664242e-05,
247
+ "loss": 0.4842814922332764,
248
+ "mean_token_accuracy": 0.8476981841027736,
249
+ "num_tokens": 12902336.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.4926739055663347,
254
+ "epoch": 0.08,
255
+ "grad_norm": 0.0822502076625824,
256
+ "learning_rate": 9.976311127757621e-05,
257
+ "loss": 0.493633508682251,
258
+ "mean_token_accuracy": 0.8439111061394214,
259
+ "num_tokens": 13436860.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.4778115816414356,
264
+ "epoch": 0.0832,
265
+ "grad_norm": 0.08052525669336319,
266
+ "learning_rate": 9.970886769653409e-05,
267
+ "loss": 0.4785038471221924,
268
+ "mean_token_accuracy": 0.8490743987262249,
269
+ "num_tokens": 13981154.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.4820780359208584,
274
+ "epoch": 0.0864,
275
+ "grad_norm": 0.08612845093011856,
276
+ "learning_rate": 9.964905480067586e-05,
277
+ "loss": 0.48402156829833987,
278
+ "mean_token_accuracy": 0.8483813837170601,
279
+ "num_tokens": 14508881.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.47784071788191795,
284
+ "epoch": 0.0896,
285
+ "grad_norm": 0.08451592922210693,
286
+ "learning_rate": 9.958367929135807e-05,
287
+ "loss": 0.47811522483825686,
288
+ "mean_token_accuracy": 0.8496255606412888,
289
+ "num_tokens": 15047947.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.47608734108507633,
294
+ "epoch": 0.0928,
295
+ "grad_norm": 0.07735177874565125,
296
+ "learning_rate": 9.951274849316505e-05,
297
+ "loss": 0.48113174438476564,
298
+ "mean_token_accuracy": 0.8494543135166168,
299
+ "num_tokens": 15598824.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.47693981789052486,
304
+ "epoch": 0.096,
305
+ "grad_norm": 0.08198647201061249,
306
+ "learning_rate": 9.943627035308823e-05,
307
+ "loss": 0.478253173828125,
308
+ "mean_token_accuracy": 0.8493702694773674,
309
+ "num_tokens": 16137973.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.4718359481543303,
314
+ "epoch": 0.0992,
315
+ "grad_norm": 0.07386098057031631,
316
+ "learning_rate": 9.935425343963574e-05,
317
+ "loss": 0.471728515625,
318
+ "mean_token_accuracy": 0.850666993111372,
319
+ "num_tokens": 16691551.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.49830644242465494,
324
+ "epoch": 0.1024,
325
+ "grad_norm": 0.10489208996295929,
326
+ "learning_rate": 9.926670694187252e-05,
327
+ "loss": 0.5005705833435059,
328
+ "mean_token_accuracy": 0.8427114583551883,
329
+ "num_tokens": 17229635.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.4819621954113245,
334
+ "epoch": 0.1056,
335
+ "grad_norm": 0.08344434201717377,
336
+ "learning_rate": 9.917364066839066e-05,
337
+ "loss": 0.4840703964233398,
338
+ "mean_token_accuracy": 0.847594378888607,
339
+ "num_tokens": 17766215.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.4873910341411829,
344
+ "epoch": 0.1088,
345
+ "grad_norm": 0.07981836050748825,
346
+ "learning_rate": 9.907506504621052e-05,
347
+ "loss": 0.4906445503234863,
348
+ "mean_token_accuracy": 0.8462508127093316,
349
+ "num_tokens": 18299051.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.4688674874603748,
354
+ "epoch": 0.112,
355
+ "grad_norm": 0.08283731341362,
356
+ "learning_rate": 9.897099111961248e-05,
357
+ "loss": 0.46679277420043946,
358
+ "mean_token_accuracy": 0.8521067276597023,
359
+ "num_tokens": 18839822.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.4761562652885914,
364
+ "epoch": 0.1152,
365
+ "grad_norm": 0.07877718657255173,
366
+ "learning_rate": 9.886143054889961e-05,
367
+ "loss": 0.47925453186035155,
368
+ "mean_token_accuracy": 0.8481348522007466,
369
+ "num_tokens": 19378985.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.4680658861994743,
374
+ "epoch": 0.1184,
375
+ "grad_norm": 0.08172708004713058,
376
+ "learning_rate": 9.874639560909117e-05,
377
+ "loss": 0.47161188125610354,
378
+ "mean_token_accuracy": 0.8510537907481194,
379
+ "num_tokens": 19929022.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.4918907206505537,
384
+ "epoch": 0.1216,
385
+ "grad_norm": 0.08135205507278442,
386
+ "learning_rate": 9.862589918854747e-05,
387
+ "loss": 0.4943386554718018,
388
+ "mean_token_accuracy": 0.8442828319966793,
389
+ "num_tokens": 20467412.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.4759133145213127,
394
+ "epoch": 0.1248,
395
+ "grad_norm": 0.07835420966148376,
396
+ "learning_rate": 9.849995478752567e-05,
397
+ "loss": 0.47806320190429685,
398
+ "mean_token_accuracy": 0.8508141845464706,
399
+ "num_tokens": 21023106.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.47920923940837384,
404
+ "epoch": 0.128,
405
+ "grad_norm": 0.07775858789682388,
406
+ "learning_rate": 9.836857651666747e-05,
407
+ "loss": 0.48003373146057127,
408
+ "mean_token_accuracy": 0.8479285657405853,
409
+ "num_tokens": 21573240.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.4857858780771494,
414
+ "epoch": 0.1312,
415
+ "grad_norm": 0.07792385667562485,
416
+ "learning_rate": 9.823177909541794e-05,
417
+ "loss": 0.48643798828125,
418
+ "mean_token_accuracy": 0.8469386555254459,
419
+ "num_tokens": 22113961.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.4869717873632908,
424
+ "epoch": 0.1344,
425
+ "grad_norm": 0.08274804800748825,
426
+ "learning_rate": 9.808957785037657e-05,
427
+ "loss": 0.4867594242095947,
428
+ "mean_token_accuracy": 0.8460087358951569,
429
+ "num_tokens": 22658794.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.47257179878652095,
434
+ "epoch": 0.1376,
435
+ "grad_norm": 0.079668328166008,
436
+ "learning_rate": 9.794198871358002e-05,
437
+ "loss": 0.4737967014312744,
438
+ "mean_token_accuracy": 0.850037157535553,
439
+ "num_tokens": 23196256.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.48443259075284006,
444
+ "epoch": 0.1408,
445
+ "grad_norm": 0.08419299125671387,
446
+ "learning_rate": 9.778902822071703e-05,
447
+ "loss": 0.48652334213256837,
448
+ "mean_token_accuracy": 0.8473159313201905,
449
+ "num_tokens": 23720420.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.49586297404021024,
454
+ "epoch": 0.144,
455
+ "grad_norm": 0.08213909715414047,
456
+ "learning_rate": 9.763071350927593e-05,
457
+ "loss": 0.49457316398620604,
458
+ "mean_token_accuracy": 0.8444145329296588,
459
+ "num_tokens": 24253978.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.47342996038496493,
464
+ "epoch": 0.1472,
465
+ "grad_norm": 0.08207234740257263,
466
+ "learning_rate": 9.74670623166245e-05,
467
+ "loss": 0.4776087760925293,
468
+ "mean_token_accuracy": 0.8502733767032623,
469
+ "num_tokens": 24792727.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.4875059641897678,
474
+ "epoch": 0.1504,
475
+ "grad_norm": 0.08009803295135498,
476
+ "learning_rate": 9.72980929780227e-05,
477
+ "loss": 0.48871440887451173,
478
+ "mean_token_accuracy": 0.845378078520298,
479
+ "num_tokens": 25331203.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.4694684144109488,
484
+ "epoch": 0.1536,
485
+ "grad_norm": 0.07450859248638153,
486
+ "learning_rate": 9.712382442456845e-05,
487
+ "loss": 0.4689479351043701,
488
+ "mean_token_accuracy": 0.8512169562280179,
489
+ "num_tokens": 25882792.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.48093602769076826,
494
+ "epoch": 0.1568,
495
+ "grad_norm": 0.079342320561409,
496
+ "learning_rate": 9.694427618107654e-05,
497
+ "loss": 0.4797829151153564,
498
+ "mean_token_accuracy": 0.8494518615305424,
499
+ "num_tokens": 26430601.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.4724384371191263,
504
+ "epoch": 0.16,
505
+ "grad_norm": 0.08262895047664642,
506
+ "learning_rate": 9.675946836389121e-05,
507
+ "loss": 0.47344017028808594,
508
+ "mean_token_accuracy": 0.8498825326561927,
509
+ "num_tokens": 26962264.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.47667323239147663,
514
+ "epoch": 0.1632,
515
+ "grad_norm": 0.07582014054059982,
516
+ "learning_rate": 9.656942167863221e-05,
517
+ "loss": 0.47846212387084963,
518
+ "mean_token_accuracy": 0.8493047229945659,
519
+ "num_tokens": 27513219.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.4824518483132124,
524
+ "epoch": 0.1664,
525
+ "grad_norm": 0.08134610205888748,
526
+ "learning_rate": 9.63741574178751e-05,
527
+ "loss": 0.48381881713867186,
528
+ "mean_token_accuracy": 0.8485548816621303,
529
+ "num_tokens": 28064670.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.47467301450669763,
534
+ "epoch": 0.1696,
535
+ "grad_norm": 0.08428889513015747,
536
+ "learning_rate": 9.617369745876555e-05,
537
+ "loss": 0.47686920166015623,
538
+ "mean_token_accuracy": 0.8505464628338814,
539
+ "num_tokens": 28614544.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.45858458913862704,
544
+ "epoch": 0.1728,
545
+ "grad_norm": 0.07831797003746033,
546
+ "learning_rate": 9.596806426056833e-05,
547
+ "loss": 0.4615936279296875,
548
+ "mean_token_accuracy": 0.8526844687759876,
549
+ "num_tokens": 29165163.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.4882994510233402,
554
+ "epoch": 0.176,
555
+ "grad_norm": 0.08403731882572174,
556
+ "learning_rate": 9.575728086215092e-05,
557
+ "loss": 0.48913259506225587,
558
+ "mean_token_accuracy": 0.8460622608661652,
559
+ "num_tokens": 29688523.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.47602466829121115,
564
+ "epoch": 0.1792,
565
+ "grad_norm": 0.07488343864679337,
566
+ "learning_rate": 9.554137087940241e-05,
567
+ "loss": 0.4770374298095703,
568
+ "mean_token_accuracy": 0.8491039857268333,
569
+ "num_tokens": 30237453.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.46900540217757225,
574
+ "epoch": 0.1824,
575
+ "grad_norm": 0.0737559124827385,
576
+ "learning_rate": 9.532035850258744e-05,
577
+ "loss": 0.4726743698120117,
578
+ "mean_token_accuracy": 0.8509468130767346,
579
+ "num_tokens": 30781920.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.4697703827172518,
584
+ "epoch": 0.1856,
585
+ "grad_norm": 0.07812653481960297,
586
+ "learning_rate": 9.509426849363608e-05,
587
+ "loss": 0.47063488960266114,
588
+ "mean_token_accuracy": 0.8523916371166707,
589
+ "num_tokens": 31342162.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.47539051938802,
594
+ "epoch": 0.1888,
595
+ "grad_norm": 0.07987186312675476,
596
+ "learning_rate": 9.486312618336943e-05,
597
+ "loss": 0.4764849662780762,
598
+ "mean_token_accuracy": 0.8499711640179157,
599
+ "num_tokens": 31889558.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.4931900303810835,
604
+ "epoch": 0.192,
605
+ "grad_norm": 0.11574485898017883,
606
+ "learning_rate": 9.462695746866173e-05,
607
+ "loss": 0.4949483394622803,
608
+ "mean_token_accuracy": 0.8442160576581955,
609
+ "num_tokens": 32426475.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.4768557969480753,
614
+ "epoch": 0.1952,
615
+ "grad_norm": 0.07476576417684555,
616
+ "learning_rate": 9.438578880953875e-05,
617
+ "loss": 0.4781337738037109,
618
+ "mean_token_accuracy": 0.8498996920883656,
619
+ "num_tokens": 32965358.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.48749228455126287,
624
+ "epoch": 0.1984,
625
+ "grad_norm": 0.08077512681484222,
626
+ "learning_rate": 9.413964722621338e-05,
627
+ "loss": 0.4897915840148926,
628
+ "mean_token_accuracy": 0.8461120188236236,
629
+ "num_tokens": 33499187.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.47319737523794175,
634
+ "epoch": 0.2016,
635
+ "grad_norm": 0.07910402119159698,
636
+ "learning_rate": 9.388856029605821e-05,
637
+ "loss": 0.47410268783569337,
638
+ "mean_token_accuracy": 0.8500978387892246,
639
+ "num_tokens": 34041503.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.47187038622796534,
644
+ "epoch": 0.2048,
645
+ "grad_norm": 0.0774277001619339,
646
+ "learning_rate": 9.363255615051591e-05,
647
+ "loss": 0.4751906871795654,
648
+ "mean_token_accuracy": 0.8505054004490376,
649
+ "num_tokens": 34595252.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.48014669977128505,
654
+ "epoch": 0.208,
655
+ "grad_norm": 0.07764683663845062,
656
+ "learning_rate": 9.337166347194732e-05,
657
+ "loss": 0.4829127311706543,
658
+ "mean_token_accuracy": 0.8502410404384136,
659
+ "num_tokens": 35141716.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.4769856847822666,
664
+ "epoch": 0.2112,
665
+ "grad_norm": 0.06824088096618652,
666
+ "learning_rate": 9.310591149041796e-05,
667
+ "loss": 0.47666058540344236,
668
+ "mean_token_accuracy": 0.8491735376417637,
669
+ "num_tokens": 35688010.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.48730610609054564,
674
+ "epoch": 0.2144,
675
+ "grad_norm": 0.07797452807426453,
676
+ "learning_rate": 9.283532998042314e-05,
677
+ "loss": 0.48588948249816893,
678
+ "mean_token_accuracy": 0.8470434345304966,
679
+ "num_tokens": 36226585.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.4712740655988455,
684
+ "epoch": 0.2176,
685
+ "grad_norm": 0.07640084624290466,
686
+ "learning_rate": 9.255994925755207e-05,
687
+ "loss": 0.4725786685943604,
688
+ "mean_token_accuracy": 0.8508462831377983,
689
+ "num_tokens": 36774498.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.47151445485651494,
694
+ "epoch": 0.2208,
695
+ "grad_norm": 0.0767187550663948,
696
+ "learning_rate": 9.22798001750913e-05,
697
+ "loss": 0.4724010467529297,
698
+ "mean_token_accuracy": 0.8511710181832314,
699
+ "num_tokens": 37321521.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.47285968586802485,
704
+ "epoch": 0.224,
705
+ "grad_norm": 0.08685708045959473,
706
+ "learning_rate": 9.199491412056805e-05,
707
+ "loss": 0.4756521224975586,
708
+ "mean_token_accuracy": 0.8499340698122978,
709
+ "num_tokens": 37869725.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.47530038133263586,
714
+ "epoch": 0.2272,
715
+ "grad_norm": 0.08178319036960602,
716
+ "learning_rate": 9.170532301223342e-05,
717
+ "loss": 0.4760128974914551,
718
+ "mean_token_accuracy": 0.8494046285748482,
719
+ "num_tokens": 38411812.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.4898712053894997,
724
+ "epoch": 0.2304,
725
+ "grad_norm": 0.0820806473493576,
726
+ "learning_rate": 9.141105929548654e-05,
727
+ "loss": 0.49225292205810545,
728
+ "mean_token_accuracy": 0.8461540147662163,
729
+ "num_tokens": 38957097.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.49410275742411613,
734
+ "epoch": 0.2336,
735
+ "grad_norm": 0.0803661122918129,
736
+ "learning_rate": 9.111215593923924e-05,
737
+ "loss": 0.49660024642944334,
738
+ "mean_token_accuracy": 0.844361025840044,
739
+ "num_tokens": 39484601.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.4832836758345366,
744
+ "epoch": 0.2368,
745
+ "grad_norm": 0.0747658908367157,
746
+ "learning_rate": 9.080864643222238e-05,
747
+ "loss": 0.48782711029052733,
748
+ "mean_token_accuracy": 0.8474400013685226,
749
+ "num_tokens": 40024350.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.47210120856761933,
754
+ "epoch": 0.24,
755
+ "grad_norm": 0.08369333297014236,
756
+ "learning_rate": 9.050056477923372e-05,
757
+ "loss": 0.4736424446105957,
758
+ "mean_token_accuracy": 0.8512022905051708,
759
+ "num_tokens": 40573607.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.4751798383891582,
764
+ "epoch": 0.2432,
765
+ "grad_norm": 0.07527061551809311,
766
+ "learning_rate": 9.018794549732819e-05,
767
+ "loss": 0.47675304412841796,
768
+ "mean_token_accuracy": 0.8492536380887031,
769
+ "num_tokens": 41128378.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.4596736691892147,
774
+ "epoch": 0.2464,
775
+ "grad_norm": 0.07552742958068848,
776
+ "learning_rate": 8.987082361195047e-05,
777
+ "loss": 0.4612094879150391,
778
+ "mean_token_accuracy": 0.85373764783144,
779
+ "num_tokens": 41676611.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.4881919324398041,
784
+ "epoch": 0.2496,
785
+ "grad_norm": 0.07089073956012726,
786
+ "learning_rate": 8.954923465301098e-05,
787
+ "loss": 0.48726844787597656,
788
+ "mean_token_accuracy": 0.8471492856740952,
789
+ "num_tokens": 42217221.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.48793355375528336,
794
+ "epoch": 0.2528,
795
+ "grad_norm": 0.07903842628002167,
796
+ "learning_rate": 8.922321465090504e-05,
797
+ "loss": 0.4911531448364258,
798
+ "mean_token_accuracy": 0.8451745077967644,
799
+ "num_tokens": 42757663.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.4636719670146704,
804
+ "epoch": 0.256,
805
+ "grad_norm": 0.08099409937858582,
806
+ "learning_rate": 8.889280013247608e-05,
807
+ "loss": 0.4613630771636963,
808
+ "mean_token_accuracy": 0.8535272777080536,
809
+ "num_tokens": 43303288.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.4685452912002802,
814
+ "epoch": 0.2592,
815
+ "grad_norm": 0.07842060178518295,
816
+ "learning_rate": 8.855802811692326e-05,
817
+ "loss": 0.47121448516845704,
818
+ "mean_token_accuracy": 0.852169182896614,
819
+ "num_tokens": 43841558.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.4764429606497288,
824
+ "epoch": 0.2624,
825
+ "grad_norm": 0.07855252176523209,
826
+ "learning_rate": 8.821893611165387e-05,
827
+ "loss": 0.4794772148132324,
828
+ "mean_token_accuracy": 0.8487229481339454,
829
+ "num_tokens": 44386409.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.4749792542308569,
834
+ "epoch": 0.2656,
835
+ "grad_norm": 0.08472711592912674,
836
+ "learning_rate": 8.787556210808101e-05,
837
+ "loss": 0.4772174835205078,
838
+ "mean_token_accuracy": 0.8503303691744805,
839
+ "num_tokens": 44918678.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.4767191309481859,
844
+ "epoch": 0.2688,
845
+ "grad_norm": 0.08218918740749359,
846
+ "learning_rate": 8.752794457736719e-05,
847
+ "loss": 0.47406606674194335,
848
+ "mean_token_accuracy": 0.8507293291389942,
849
+ "num_tokens": 45473631.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.47092341966927054,
854
+ "epoch": 0.272,
855
+ "grad_norm": 0.085779570043087,
856
+ "learning_rate": 8.717612246611396e-05,
857
+ "loss": 0.47501192092895506,
858
+ "mean_token_accuracy": 0.8503929585218429,
859
+ "num_tokens": 46012094.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.4835963238030672,
864
+ "epoch": 0.2752,
865
+ "grad_norm": 0.08534952253103256,
866
+ "learning_rate": 8.682013519199841e-05,
867
+ "loss": 0.4834300994873047,
868
+ "mean_token_accuracy": 0.8477169685065746,
869
+ "num_tokens": 46553265.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.4751033581793308,
874
+ "epoch": 0.2784,
875
+ "grad_norm": 0.07841655611991882,
876
+ "learning_rate": 8.646002263935695e-05,
877
+ "loss": 0.47674098014831545,
878
+ "mean_token_accuracy": 0.8485349163413047,
879
+ "num_tokens": 47087343.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.4564079999923706,
884
+ "epoch": 0.2816,
885
+ "grad_norm": 0.07997316122055054,
886
+ "learning_rate": 8.609582515471663e-05,
887
+ "loss": 0.45759096145629885,
888
+ "mean_token_accuracy": 0.8546725757420063,
889
+ "num_tokens": 47633002.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.4866001050919294,
894
+ "epoch": 0.2848,
895
+ "grad_norm": 0.08223622292280197,
896
+ "learning_rate": 8.572758354227476e-05,
897
+ "loss": 0.4863016128540039,
898
+ "mean_token_accuracy": 0.8472935289144516,
899
+ "num_tokens": 48180335.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.46846042200922966,
904
+ "epoch": 0.288,
905
+ "grad_norm": 0.08052714169025421,
906
+ "learning_rate": 8.535533905932738e-05,
907
+ "loss": 0.47049579620361326,
908
+ "mean_token_accuracy": 0.8506691426038742,
909
+ "num_tokens": 48728626.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.46195199266076087,
914
+ "epoch": 0.2912,
915
+ "grad_norm": 0.07734925299882889,
916
+ "learning_rate": 8.49791334116467e-05,
917
+ "loss": 0.4631977081298828,
918
+ "mean_token_accuracy": 0.8535349547863007,
919
+ "num_tokens": 49263697.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.4654418841004372,
924
+ "epoch": 0.2944,
925
+ "grad_norm": 0.07527711987495422,
926
+ "learning_rate": 8.459900874880849e-05,
927
+ "loss": 0.4663339614868164,
928
+ "mean_token_accuracy": 0.8517521195113659,
929
+ "num_tokens": 49802308.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.4810977768152952,
934
+ "epoch": 0.2976,
935
+ "grad_norm": 0.07790960371494293,
936
+ "learning_rate": 8.421500765946983e-05,
937
+ "loss": 0.48372488021850585,
938
+ "mean_token_accuracy": 0.8469045363366604,
939
+ "num_tokens": 50327998.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.4687338896095753,
944
+ "epoch": 0.3008,
945
+ "grad_norm": 0.0822044163942337,
946
+ "learning_rate": 8.382717316659731e-05,
947
+ "loss": 0.4695611000061035,
948
+ "mean_token_accuracy": 0.8508451916277409,
949
+ "num_tokens": 50865818.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 0.4692784225568175,
954
+ "epoch": 0.304,
955
+ "grad_norm": 0.07648163288831711,
956
+ "learning_rate": 8.343554872264697e-05,
957
+ "loss": 0.4679527759552002,
958
+ "mean_token_accuracy": 0.8531959399580955,
959
+ "num_tokens": 51408778.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 0.4685392875224352,
964
+ "epoch": 0.3072,
965
+ "grad_norm": 0.08264504373073578,
966
+ "learning_rate": 8.304017820469582e-05,
967
+ "loss": 0.47391357421875,
968
+ "mean_token_accuracy": 0.851045648008585,
969
+ "num_tokens": 51947066.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 0.4727648008614779,
974
+ "epoch": 0.3104,
975
+ "grad_norm": 0.07236472517251968,
976
+ "learning_rate": 8.264110590952609e-05,
977
+ "loss": 0.47615623474121094,
978
+ "mean_token_accuracy": 0.8499816425144673,
979
+ "num_tokens": 52491591.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 0.47436089888215066,
984
+ "epoch": 0.3136,
985
+ "grad_norm": 0.07411123812198639,
986
+ "learning_rate": 8.223837654866202e-05,
987
+ "loss": 0.475218391418457,
988
+ "mean_token_accuracy": 0.8491612285375595,
989
+ "num_tokens": 53028176.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 0.48128985017538073,
994
+ "epoch": 0.3168,
995
+ "grad_norm": 0.07564353942871094,
996
+ "learning_rate": 8.183203524336068e-05,
997
+ "loss": 0.48183107376098633,
998
+ "mean_token_accuracy": 0.848487002402544,
999
+ "num_tokens": 53568117.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 0.4761129651218653,
1004
+ "epoch": 0.32,
1005
+ "grad_norm": 0.07757043093442917,
1006
+ "learning_rate": 8.142212751955649e-05,
1007
+ "loss": 0.4786111831665039,
1008
+ "mean_token_accuracy": 0.8494840450584888,
1009
+ "num_tokens": 54116640.0,
1010
+ "step": 1000
1011
+ },
1012
+ {
1013
+ "entropy": 0.46917025968432424,
1014
+ "epoch": 0.3232,
1015
+ "grad_norm": 0.07940242439508438,
1016
+ "learning_rate": 8.100869930276064e-05,
1017
+ "loss": 0.4714414119720459,
1018
+ "mean_token_accuracy": 0.8503246434032917,
1019
+ "num_tokens": 54653051.0,
1020
+ "step": 1010
1021
+ },
1022
+ {
1023
+ "entropy": 0.4772383697330952,
1024
+ "epoch": 0.3264,
1025
+ "grad_norm": 0.07760357111692429,
1026
+ "learning_rate": 8.059179691291565e-05,
1027
+ "loss": 0.47988409996032716,
1028
+ "mean_token_accuracy": 0.8488184005022049,
1029
+ "num_tokens": 55189061.0,
1030
+ "step": 1020
1031
+ },
1032
+ {
1033
+ "entropy": 0.49717654250562193,
1034
+ "epoch": 0.3296,
1035
+ "grad_norm": 0.08256684243679047,
1036
+ "learning_rate": 8.017146705920568e-05,
1037
+ "loss": 0.49762907028198244,
1038
+ "mean_token_accuracy": 0.8431043148040771,
1039
+ "num_tokens": 55717461.0,
1040
+ "step": 1030
1041
+ },
1042
+ {
1043
+ "entropy": 0.44942800477147105,
1044
+ "epoch": 0.3328,
1045
+ "grad_norm": 0.07848676294088364,
1046
+ "learning_rate": 7.974775683482338e-05,
1047
+ "loss": 0.4503443717956543,
1048
+ "mean_token_accuracy": 0.8557130552828311,
1049
+ "num_tokens": 56269615.0,
1050
+ "step": 1040
1051
+ },
1052
+ {
1053
+ "entropy": 0.4714782789349556,
1054
+ "epoch": 0.336,
1055
+ "grad_norm": 0.0803825706243515,
1056
+ "learning_rate": 7.932071371169354e-05,
1057
+ "loss": 0.47602090835571287,
1058
+ "mean_token_accuracy": 0.8500577941536903,
1059
+ "num_tokens": 56811939.0,
1060
+ "step": 1050
1061
+ },
1062
+ {
1063
+ "entropy": 0.4705597136169672,
1064
+ "epoch": 0.3392,
1065
+ "grad_norm": 0.08659618347883224,
1066
+ "learning_rate": 7.889038553515451e-05,
1067
+ "loss": 0.470610523223877,
1068
+ "mean_token_accuracy": 0.8512009240686893,
1069
+ "num_tokens": 57358576.0,
1070
+ "step": 1060
1071
+ },
1072
+ {
1073
+ "entropy": 0.4670447796583176,
1074
+ "epoch": 0.3424,
1075
+ "grad_norm": 0.07773701101541519,
1076
+ "learning_rate": 7.845682051859757e-05,
1077
+ "loss": 0.4706146240234375,
1078
+ "mean_token_accuracy": 0.8512641072273255,
1079
+ "num_tokens": 57900469.0,
1080
+ "step": 1070
1081
+ },
1082
+ {
1083
+ "entropy": 0.47142090164124967,
1084
+ "epoch": 0.3456,
1085
+ "grad_norm": 0.07671911269426346,
1086
+ "learning_rate": 7.802006723806527e-05,
1087
+ "loss": 0.4736938953399658,
1088
+ "mean_token_accuracy": 0.8514165125787259,
1089
+ "num_tokens": 58453070.0,
1090
+ "step": 1080
1091
+ },
1092
+ {
1093
+ "entropy": 0.47359533831477163,
1094
+ "epoch": 0.3488,
1095
+ "grad_norm": 0.08079513162374496,
1096
+ "learning_rate": 7.758017462680892e-05,
1097
+ "loss": 0.4731889724731445,
1098
+ "mean_token_accuracy": 0.8501715049147606,
1099
+ "num_tokens": 58997842.0,
1100
+ "step": 1090
1101
+ },
1102
+ {
1103
+ "entropy": 0.4660038728266954,
1104
+ "epoch": 0.352,
1105
+ "grad_norm": 0.076938696205616,
1106
+ "learning_rate": 7.713719196980624e-05,
1107
+ "loss": 0.4702435493469238,
1108
+ "mean_token_accuracy": 0.8505289196968079,
1109
+ "num_tokens": 59534354.0,
1110
+ "step": 1100
1111
+ },
1112
+ {
1113
+ "entropy": 0.46711551398038864,
1114
+ "epoch": 0.3552,
1115
+ "grad_norm": 0.07634937763214111,
1116
+ "learning_rate": 7.669116889823955e-05,
1117
+ "loss": 0.4659992218017578,
1118
+ "mean_token_accuracy": 0.8514557547867299,
1119
+ "num_tokens": 60067312.0,
1120
+ "step": 1110
1121
+ },
1122
+ {
1123
+ "entropy": 0.4589589949697256,
1124
+ "epoch": 0.3584,
1125
+ "grad_norm": 0.08179903030395508,
1126
+ "learning_rate": 7.62421553839351e-05,
1127
+ "loss": 0.4589775562286377,
1128
+ "mean_token_accuracy": 0.8547109857201576,
1129
+ "num_tokens": 60611327.0,
1130
+ "step": 1120
1131
+ },
1132
+ {
1133
+ "entropy": 0.4735019005835056,
1134
+ "epoch": 0.3616,
1135
+ "grad_norm": 0.0791383907198906,
1136
+ "learning_rate": 7.579020173376438e-05,
1137
+ "loss": 0.4762627601623535,
1138
+ "mean_token_accuracy": 0.8496688216924667,
1139
+ "num_tokens": 61152192.0,
1140
+ "step": 1130
1141
+ },
1142
+ {
1143
+ "entropy": 0.4838758923113346,
1144
+ "epoch": 0.3648,
1145
+ "grad_norm": 0.08668875694274902,
1146
+ "learning_rate": 7.533535858400773e-05,
1147
+ "loss": 0.483915901184082,
1148
+ "mean_token_accuracy": 0.8477108284831048,
1149
+ "num_tokens": 61679786.0,
1150
+ "step": 1140
1151
+ },
1152
+ {
1153
+ "entropy": 0.4788258831948042,
1154
+ "epoch": 0.368,
1155
+ "grad_norm": 0.1338026523590088,
1156
+ "learning_rate": 7.487767689468114e-05,
1157
+ "loss": 0.4759991645812988,
1158
+ "mean_token_accuracy": 0.8496520824730396,
1159
+ "num_tokens": 62235403.0,
1160
+ "step": 1150
1161
+ },
1162
+ {
1163
+ "entropy": 0.4697259794920683,
1164
+ "epoch": 0.3712,
1165
+ "grad_norm": 0.07391800731420517,
1166
+ "learning_rate": 7.441720794382678e-05,
1167
+ "loss": 0.47245054244995116,
1168
+ "mean_token_accuracy": 0.8507399395108223,
1169
+ "num_tokens": 62775337.0,
1170
+ "step": 1160
1171
+ },
1172
+ {
1173
+ "entropy": 0.46641252711415293,
1174
+ "epoch": 0.3744,
1175
+ "grad_norm": 0.08541858196258545,
1176
+ "learning_rate": 7.39540033217678e-05,
1177
+ "loss": 0.46926565170288087,
1178
+ "mean_token_accuracy": 0.8515971966087819,
1179
+ "num_tokens": 63313974.0,
1180
+ "step": 1170
1181
+ },
1182
+ {
1183
+ "entropy": 0.46677456349134444,
1184
+ "epoch": 0.3776,
1185
+ "grad_norm": 0.07809534668922424,
1186
+ "learning_rate": 7.34881149253284e-05,
1187
+ "loss": 0.4635956287384033,
1188
+ "mean_token_accuracy": 0.8533280894160271,
1189
+ "num_tokens": 63860582.0,
1190
+ "step": 1180
1191
+ },
1192
+ {
1193
+ "entropy": 0.4531945262104273,
1194
+ "epoch": 0.3808,
1195
+ "grad_norm": 0.07714966684579849,
1196
+ "learning_rate": 7.301959495201914e-05,
1197
+ "loss": 0.4573531150817871,
1198
+ "mean_token_accuracy": 0.8545272573828697,
1199
+ "num_tokens": 64393449.0,
1200
+ "step": 1190
1201
+ },
1202
+ {
1203
+ "entropy": 0.47963859550654886,
1204
+ "epoch": 0.384,
1205
+ "grad_norm": 0.08511944115161896,
1206
+ "learning_rate": 7.254849589418899e-05,
1207
+ "loss": 0.48232240676879884,
1208
+ "mean_token_accuracy": 0.847790089994669,
1209
+ "num_tokens": 64929559.0,
1210
+ "step": 1200
1211
+ },
1212
+ {
1213
+ "entropy": 0.4696847841143608,
1214
+ "epoch": 0.3872,
1215
+ "grad_norm": 0.0821264460682869,
1216
+ "learning_rate": 7.207487053314408e-05,
1217
+ "loss": 0.4743045330047607,
1218
+ "mean_token_accuracy": 0.8509298220276833,
1219
+ "num_tokens": 65472324.0,
1220
+ "step": 1210
1221
+ },
1222
+ {
1223
+ "entropy": 0.4760958280414343,
1224
+ "epoch": 0.3904,
1225
+ "grad_norm": 0.07894673943519592,
1226
+ "learning_rate": 7.159877193323412e-05,
1227
+ "loss": 0.47612338066101073,
1228
+ "mean_token_accuracy": 0.8502611100673676,
1229
+ "num_tokens": 66010367.0,
1230
+ "step": 1220
1231
+ },
1232
+ {
1233
+ "entropy": 0.4641199756413698,
1234
+ "epoch": 0.3936,
1235
+ "grad_norm": 0.08127527683973312,
1236
+ "learning_rate": 7.11202534359072e-05,
1237
+ "loss": 0.464811897277832,
1238
+ "mean_token_accuracy": 0.8529750660061837,
1239
+ "num_tokens": 66555852.0,
1240
+ "step": 1230
1241
+ },
1242
+ {
1243
+ "entropy": 0.4783476207405329,
1244
+ "epoch": 0.3968,
1245
+ "grad_norm": 0.08005862683057785,
1246
+ "learning_rate": 7.063936865373353e-05,
1247
+ "loss": 0.47718076705932616,
1248
+ "mean_token_accuracy": 0.8489580906927585,
1249
+ "num_tokens": 67098708.0,
1250
+ "step": 1240
1251
+ },
1252
+ {
1253
+ "entropy": 0.44940643701702354,
1254
+ "epoch": 0.4,
1255
+ "grad_norm": 0.07871269434690475,
1256
+ "learning_rate": 7.015617146439863e-05,
1257
+ "loss": 0.4523442268371582,
1258
+ "mean_token_accuracy": 0.8564409531652928,
1259
+ "num_tokens": 67645082.0,
1260
+ "step": 1250
1261
+ },
1262
+ {
1263
+ "entropy": 0.48388259410858153,
1264
+ "epoch": 0.4032,
1265
+ "grad_norm": 0.08175542205572128,
1266
+ "learning_rate": 6.967071600466699e-05,
1267
+ "loss": 0.48316283226013185,
1268
+ "mean_token_accuracy": 0.8477910667657852,
1269
+ "num_tokens": 68183965.0,
1270
+ "step": 1260
1271
+ },
1272
+ {
1273
+ "entropy": 0.4663986641913652,
1274
+ "epoch": 0.4064,
1275
+ "grad_norm": 0.08386580646038055,
1276
+ "learning_rate": 6.918305666431678e-05,
1277
+ "loss": 0.4686122894287109,
1278
+ "mean_token_accuracy": 0.8507393769919872,
1279
+ "num_tokens": 68715381.0,
1280
+ "step": 1270
1281
+ },
1282
+ {
1283
+ "entropy": 0.47266134805977345,
1284
+ "epoch": 0.4096,
1285
+ "grad_norm": 0.07826567441225052,
1286
+ "learning_rate": 6.869324808004591e-05,
1287
+ "loss": 0.4709297180175781,
1288
+ "mean_token_accuracy": 0.8507488630712032,
1289
+ "num_tokens": 69261931.0,
1290
+ "step": 1280
1291
+ },
1292
+ {
1293
+ "entropy": 0.4749354414641857,
1294
+ "epoch": 0.4128,
1295
+ "grad_norm": 0.08114854991436005,
1296
+ "learning_rate": 6.820134512935076e-05,
1297
+ "loss": 0.4813858509063721,
1298
+ "mean_token_accuracy": 0.8486299641430378,
1299
+ "num_tokens": 69798702.0,
1300
+ "step": 1290
1301
+ },
1302
+ {
1303
+ "entropy": 0.48080884739756585,
1304
+ "epoch": 0.416,
1305
+ "grad_norm": 0.08293881267309189,
1306
+ "learning_rate": 6.770740292437765e-05,
1307
+ "loss": 0.4830974578857422,
1308
+ "mean_token_accuracy": 0.8486068546772003,
1309
+ "num_tokens": 70335520.0,
1310
+ "step": 1300
1311
+ },
1312
+ {
1313
+ "entropy": 0.445353127643466,
1314
+ "epoch": 0.4192,
1315
+ "grad_norm": 0.07848215103149414,
1316
+ "learning_rate": 6.721147680574825e-05,
1317
+ "loss": 0.443513298034668,
1318
+ "mean_token_accuracy": 0.8587793231010437,
1319
+ "num_tokens": 70893408.0,
1320
+ "step": 1310
1321
+ },
1322
+ {
1323
+ "entropy": 0.46828467808663843,
1324
+ "epoch": 0.4224,
1325
+ "grad_norm": 0.07849520444869995,
1326
+ "learning_rate": 6.671362233635925e-05,
1327
+ "loss": 0.47074165344238283,
1328
+ "mean_token_accuracy": 0.8519576385617256,
1329
+ "num_tokens": 71432511.0,
1330
+ "step": 1320
1331
+ },
1332
+ {
1333
+ "entropy": 0.46790354028344155,
1334
+ "epoch": 0.4256,
1335
+ "grad_norm": 0.07682167738676071,
1336
+ "learning_rate": 6.621389529515718e-05,
1337
+ "loss": 0.46987133026123046,
1338
+ "mean_token_accuracy": 0.8507593631744385,
1339
+ "num_tokens": 71972931.0,
1340
+ "step": 1330
1341
+ },
1342
+ {
1343
+ "entropy": 0.47380633652210236,
1344
+ "epoch": 0.4288,
1345
+ "grad_norm": 0.07671021670103073,
1346
+ "learning_rate": 6.571235167088897e-05,
1347
+ "loss": 0.4743668079376221,
1348
+ "mean_token_accuracy": 0.849990089982748,
1349
+ "num_tokens": 72509252.0,
1350
+ "step": 1340
1351
+ },
1352
+ {
1353
+ "entropy": 0.4695499274879694,
1354
+ "epoch": 0.432,
1355
+ "grad_norm": 0.07734425365924835,
1356
+ "learning_rate": 6.520904765582909e-05,
1357
+ "loss": 0.47025532722473146,
1358
+ "mean_token_accuracy": 0.8512202836573124,
1359
+ "num_tokens": 73051252.0,
1360
+ "step": 1350
1361
+ },
1362
+ {
1363
+ "entropy": 0.45717273019254207,
1364
+ "epoch": 0.4352,
1365
+ "grad_norm": 0.07840635627508163,
1366
+ "learning_rate": 6.470403963948386e-05,
1367
+ "loss": 0.45947952270507814,
1368
+ "mean_token_accuracy": 0.8544160060584545,
1369
+ "num_tokens": 73584956.0,
1370
+ "step": 1360
1371
+ },
1372
+ {
1373
+ "entropy": 0.47162831015884876,
1374
+ "epoch": 0.4384,
1375
+ "grad_norm": 0.08281369507312775,
1376
+ "learning_rate": 6.419738420227357e-05,
1377
+ "loss": 0.4729193687438965,
1378
+ "mean_token_accuracy": 0.8503495909273624,
1379
+ "num_tokens": 74115323.0,
1380
+ "step": 1370
1381
+ },
1382
+ {
1383
+ "entropy": 0.46119370497763157,
1384
+ "epoch": 0.4416,
1385
+ "grad_norm": 0.0766388550400734,
1386
+ "learning_rate": 6.368913810919339e-05,
1387
+ "loss": 0.46128005981445314,
1388
+ "mean_token_accuracy": 0.8537597492337227,
1389
+ "num_tokens": 74672444.0,
1390
+ "step": 1380
1391
+ },
1392
+ {
1393
+ "entropy": 0.47553979940712454,
1394
+ "epoch": 0.4448,
1395
+ "grad_norm": 0.07618532329797745,
1396
+ "learning_rate": 6.317935830345338e-05,
1397
+ "loss": 0.47728590965270995,
1398
+ "mean_token_accuracy": 0.8493086688220501,
1399
+ "num_tokens": 75205841.0,
1400
+ "step": 1390
1401
+ },
1402
+ {
1403
+ "entropy": 0.47228156924247744,
1404
+ "epoch": 0.448,
1405
+ "grad_norm": 0.08119732141494751,
1406
+ "learning_rate": 6.266810190009877e-05,
1407
+ "loss": 0.4703529357910156,
1408
+ "mean_token_accuracy": 0.851146450638771,
1409
+ "num_tokens": 75752180.0,
1410
+ "step": 1400
1411
+ },
1412
+ {
1413
+ "entropy": 0.4720066156238317,
1414
+ "epoch": 0.4512,
1415
+ "grad_norm": 0.0890950933098793,
1416
+ "learning_rate": 6.21554261796107e-05,
1417
+ "loss": 0.4751739501953125,
1418
+ "mean_token_accuracy": 0.851177292317152,
1419
+ "num_tokens": 76289695.0,
1420
+ "step": 1410
1421
+ },
1422
+ {
1423
+ "entropy": 0.46984184756875036,
1424
+ "epoch": 0.4544,
1425
+ "grad_norm": 0.0826389417052269,
1426
+ "learning_rate": 6.164138858148886e-05,
1427
+ "loss": 0.47519564628601074,
1428
+ "mean_token_accuracy": 0.8512011744081974,
1429
+ "num_tokens": 76825284.0,
1430
+ "step": 1420
1431
+ },
1432
+ {
1433
+ "entropy": 0.4752038478851318,
1434
+ "epoch": 0.4576,
1435
+ "grad_norm": 0.08134012669324875,
1436
+ "learning_rate": 6.112604669781572e-05,
1437
+ "loss": 0.475037670135498,
1438
+ "mean_token_accuracy": 0.8502763018012047,
1439
+ "num_tokens": 77358614.0,
1440
+ "step": 1430
1441
+ },
1442
+ {
1443
+ "entropy": 0.4627603005617857,
1444
+ "epoch": 0.4608,
1445
+ "grad_norm": 0.08518964052200317,
1446
+ "learning_rate": 6.060945826680425e-05,
1447
+ "loss": 0.46430625915527346,
1448
+ "mean_token_accuracy": 0.8529912106692791,
1449
+ "num_tokens": 77902786.0,
1450
+ "step": 1440
1451
+ },
1452
+ {
1453
+ "entropy": 0.49012349732220173,
1454
+ "epoch": 0.464,
1455
+ "grad_norm": 0.07677725702524185,
1456
+ "learning_rate": 6.009168116632887e-05,
1457
+ "loss": 0.4902459144592285,
1458
+ "mean_token_accuracy": 0.8460152193903923,
1459
+ "num_tokens": 78437651.0,
1460
+ "step": 1450
1461
+ },
1462
+ {
1463
+ "entropy": 0.4582429379224777,
1464
+ "epoch": 0.4672,
1465
+ "grad_norm": 0.07936195284128189,
1466
+ "learning_rate": 5.957277340744094e-05,
1467
+ "loss": 0.46192111968994143,
1468
+ "mean_token_accuracy": 0.8537801176309585,
1469
+ "num_tokens": 78994453.0,
1470
+ "step": 1460
1471
+ },
1472
+ {
1473
+ "entropy": 0.46386151425540445,
1474
+ "epoch": 0.4704,
1475
+ "grad_norm": 0.07885941863059998,
1476
+ "learning_rate": 5.905279312786928e-05,
1477
+ "loss": 0.46464266777038576,
1478
+ "mean_token_accuracy": 0.8536564350128174,
1479
+ "num_tokens": 79540754.0,
1480
+ "step": 1470
1481
+ },
1482
+ {
1483
+ "entropy": 0.48290870524942875,
1484
+ "epoch": 0.4736,
1485
+ "grad_norm": 0.0816439688205719,
1486
+ "learning_rate": 5.853179858550647e-05,
1487
+ "loss": 0.4833097457885742,
1488
+ "mean_token_accuracy": 0.848555526137352,
1489
+ "num_tokens": 80074234.0,
1490
+ "step": 1480
1491
+ },
1492
+ {
1493
+ "entropy": 0.46357379723340275,
1494
+ "epoch": 0.4768,
1495
+ "grad_norm": 0.0767681673169136,
1496
+ "learning_rate": 5.800984815188176e-05,
1497
+ "loss": 0.46472816467285155,
1498
+ "mean_token_accuracy": 0.8527257896959781,
1499
+ "num_tokens": 80621881.0,
1500
+ "step": 1490
1501
+ },
1502
+ {
1503
+ "entropy": 0.47054843716323375,
1504
+ "epoch": 0.48,
1505
+ "grad_norm": 0.08159372210502625,
1506
+ "learning_rate": 5.748700030562115e-05,
1507
+ "loss": 0.471923828125,
1508
+ "mean_token_accuracy": 0.8509253062307834,
1509
+ "num_tokens": 81155872.0,
1510
+ "step": 1500
1511
+ },
1512
+ {
1513
+ "entropy": 0.4759920839220285,
1514
+ "epoch": 0.4832,
1515
+ "grad_norm": 0.08094548434019089,
1516
+ "learning_rate": 5.696331362589556e-05,
1517
+ "loss": 0.47703728675842283,
1518
+ "mean_token_accuracy": 0.8494079612195492,
1519
+ "num_tokens": 81703773.0,
1520
+ "step": 1510
1521
+ },
1522
+ {
1523
+ "entropy": 0.4699292115867138,
1524
+ "epoch": 0.4864,
1525
+ "grad_norm": 0.07761377841234207,
1526
+ "learning_rate": 5.643884678585768e-05,
1527
+ "loss": 0.4721334934234619,
1528
+ "mean_token_accuracy": 0.8508599974215031,
1529
+ "num_tokens": 82234520.0,
1530
+ "step": 1520
1531
+ },
1532
+ {
1533
+ "entropy": 0.4649160888046026,
1534
+ "epoch": 0.4896,
1535
+ "grad_norm": 0.07809717953205109,
1536
+ "learning_rate": 5.5913658546068295e-05,
1537
+ "loss": 0.4664757251739502,
1538
+ "mean_token_accuracy": 0.8522942341864109,
1539
+ "num_tokens": 82767650.0,
1540
+ "step": 1530
1541
+ },
1542
+ {
1543
+ "entropy": 0.4619267268106341,
1544
+ "epoch": 0.4928,
1545
+ "grad_norm": 0.07818735390901566,
1546
+ "learning_rate": 5.538780774791289e-05,
1547
+ "loss": 0.4628866672515869,
1548
+ "mean_token_accuracy": 0.8537545248866081,
1549
+ "num_tokens": 83315969.0,
1550
+ "step": 1540
1551
+ },
1552
+ {
1553
+ "entropy": 0.47179987765848636,
1554
+ "epoch": 0.496,
1555
+ "grad_norm": 0.08222338557243347,
1556
+ "learning_rate": 5.486135330700906e-05,
1557
+ "loss": 0.4757401943206787,
1558
+ "mean_token_accuracy": 0.8511043928563595,
1559
+ "num_tokens": 83860076.0,
1560
+ "step": 1550
1561
+ },
1562
+ {
1563
+ "entropy": 0.4809089325368404,
1564
+ "epoch": 0.4992,
1565
+ "grad_norm": 0.0822545662522316,
1566
+ "learning_rate": 5.4334354206605776e-05,
1567
+ "loss": 0.47745490074157715,
1568
+ "mean_token_accuracy": 0.848536130785942,
1569
+ "num_tokens": 84409148.0,
1570
+ "step": 1560
1571
+ },
1572
+ {
1573
+ "entropy": 0.4698262229561806,
1574
+ "epoch": 0.5024,
1575
+ "grad_norm": 0.07563979923725128,
1576
+ "learning_rate": 5.380686949097485e-05,
1577
+ "loss": 0.47144665718078616,
1578
+ "mean_token_accuracy": 0.850661239027977,
1579
+ "num_tokens": 84952704.0,
1580
+ "step": 1570
1581
+ },
1582
+ {
1583
+ "entropy": 0.4649834394454956,
1584
+ "epoch": 0.5056,
1585
+ "grad_norm": 0.0799219161272049,
1586
+ "learning_rate": 5.327895825879586e-05,
1587
+ "loss": 0.4677272796630859,
1588
+ "mean_token_accuracy": 0.852253969758749,
1589
+ "num_tokens": 85492340.0,
1590
+ "step": 1580
1591
+ },
1592
+ {
1593
+ "entropy": 0.45752881802618506,
1594
+ "epoch": 0.5088,
1595
+ "grad_norm": 0.08413282781839371,
1596
+ "learning_rate": 5.2750679656534653e-05,
1597
+ "loss": 0.4573859214782715,
1598
+ "mean_token_accuracy": 0.8535019971430302,
1599
+ "num_tokens": 86048793.0,
1600
+ "step": 1590
1601
+ },
1602
+ {
1603
+ "entropy": 0.4634219191968441,
1604
+ "epoch": 0.512,
1605
+ "grad_norm": 0.07937274128198624,
1606
+ "learning_rate": 5.2222092871816766e-05,
1607
+ "loss": 0.4633816719055176,
1608
+ "mean_token_accuracy": 0.8537441596388817,
1609
+ "num_tokens": 86597585.0,
1610
+ "step": 1600
1611
+ },
1612
+ {
1613
+ "entropy": 0.4644321594387293,
1614
+ "epoch": 0.5152,
1615
+ "grad_norm": 0.08164449781179428,
1616
+ "learning_rate": 5.169325712679608e-05,
1617
+ "loss": 0.46547470092773435,
1618
+ "mean_token_accuracy": 0.8514500871300698,
1619
+ "num_tokens": 87135884.0,
1620
+ "step": 1610
1621
+ },
1622
+ {
1623
+ "entropy": 0.4709007706493139,
1624
+ "epoch": 0.5184,
1625
+ "grad_norm": 0.08022154122591019,
1626
+ "learning_rate": 5.116423167151962e-05,
1627
+ "loss": 0.4748415470123291,
1628
+ "mean_token_accuracy": 0.8505366109311581,
1629
+ "num_tokens": 87672565.0,
1630
+ "step": 1620
1631
+ },
1632
+ {
1633
+ "entropy": 0.46826594732701776,
1634
+ "epoch": 0.5216,
1635
+ "grad_norm": 0.07857371866703033,
1636
+ "learning_rate": 5.0635075777289377e-05,
1637
+ "loss": 0.4679561138153076,
1638
+ "mean_token_accuracy": 0.852530375123024,
1639
+ "num_tokens": 88210140.0,
1640
+ "step": 1630
1641
+ },
1642
+ {
1643
+ "entropy": 0.4680090047419071,
1644
+ "epoch": 0.5248,
1645
+ "grad_norm": 0.07805909961462021,
1646
+ "learning_rate": 5.010584873002143e-05,
1647
+ "loss": 0.4689174175262451,
1648
+ "mean_token_accuracy": 0.8522804908454418,
1649
+ "num_tokens": 88763982.0,
1650
+ "step": 1640
1651
+ },
1652
+ {
1653
+ "entropy": 0.4906394749879837,
1654
+ "epoch": 0.528,
1655
+ "grad_norm": 0.07526839524507523,
1656
+ "learning_rate": 4.957660982360387e-05,
1657
+ "loss": 0.487869930267334,
1658
+ "mean_token_accuracy": 0.8450503595173359,
1659
+ "num_tokens": 89299205.0,
1660
+ "step": 1650
1661
+ },
1662
+ {
1663
+ "entropy": 0.48258905243128536,
1664
+ "epoch": 0.5312,
1665
+ "grad_norm": 0.07946979254484177,
1666
+ "learning_rate": 4.904741835325338e-05,
1667
+ "loss": 0.48380413055419924,
1668
+ "mean_token_accuracy": 0.8472427576780319,
1669
+ "num_tokens": 89831095.0,
1670
+ "step": 1660
1671
+ },
1672
+ {
1673
+ "entropy": 0.46592932008206844,
1674
+ "epoch": 0.5344,
1675
+ "grad_norm": 0.08615154772996902,
1676
+ "learning_rate": 4.851833360887201e-05,
1677
+ "loss": 0.46813020706176756,
1678
+ "mean_token_accuracy": 0.8520313084125519,
1679
+ "num_tokens": 90365573.0,
1680
+ "step": 1670
1681
+ },
1682
+ {
1683
+ "entropy": 0.47134263552725314,
1684
+ "epoch": 0.5376,
1685
+ "grad_norm": 0.08925487846136093,
1686
+ "learning_rate": 4.798941486840438e-05,
1687
+ "loss": 0.4732311248779297,
1688
+ "mean_token_accuracy": 0.8519421115517616,
1689
+ "num_tokens": 90905209.0,
1690
+ "step": 1680
1691
+ },
1692
+ {
1693
+ "entropy": 0.4612633462995291,
1694
+ "epoch": 0.5408,
1695
+ "grad_norm": 0.07562625408172607,
1696
+ "learning_rate": 4.746072139119622e-05,
1697
+ "loss": 0.46331634521484377,
1698
+ "mean_token_accuracy": 0.8531689427793026,
1699
+ "num_tokens": 91452004.0,
1700
+ "step": 1690
1701
+ },
1702
+ {
1703
+ "entropy": 0.4733666587620974,
1704
+ "epoch": 0.544,
1705
+ "grad_norm": 0.07982128858566284,
1706
+ "learning_rate": 4.69323124113551e-05,
1707
+ "loss": 0.4750804901123047,
1708
+ "mean_token_accuracy": 0.849866820126772,
1709
+ "num_tokens": 91990495.0,
1710
+ "step": 1700
1711
+ },
1712
+ {
1713
+ "entropy": 0.46132506281137464,
1714
+ "epoch": 0.5472,
1715
+ "grad_norm": 0.07697301357984543,
1716
+ "learning_rate": 4.6404247131113884e-05,
1717
+ "loss": 0.45983171463012695,
1718
+ "mean_token_accuracy": 0.8535612806677818,
1719
+ "num_tokens": 92531009.0,
1720
+ "step": 1710
1721
+ },
1722
+ {
1723
+ "entropy": 0.4602090664207935,
1724
+ "epoch": 0.5504,
1725
+ "grad_norm": 0.08081653714179993,
1726
+ "learning_rate": 4.587658471419778e-05,
1727
+ "loss": 0.46139278411865237,
1728
+ "mean_token_accuracy": 0.8547950901091099,
1729
+ "num_tokens": 93078503.0,
1730
+ "step": 1720
1731
+ },
1732
+ {
1733
+ "entropy": 0.46119733825325965,
1734
+ "epoch": 0.5536,
1735
+ "grad_norm": 0.07525499165058136,
1736
+ "learning_rate": 4.534938427919574e-05,
1737
+ "loss": 0.46621341705322267,
1738
+ "mean_token_accuracy": 0.8530056290328503,
1739
+ "num_tokens": 93634630.0,
1740
+ "step": 1730
1741
+ },
1742
+ {
1743
+ "entropy": 0.4653968673199415,
1744
+ "epoch": 0.5568,
1745
+ "grad_norm": 0.08232194185256958,
1746
+ "learning_rate": 4.482270489293685e-05,
1747
+ "loss": 0.4654714107513428,
1748
+ "mean_token_accuracy": 0.851850800216198,
1749
+ "num_tokens": 94171307.0,
1750
+ "step": 1740
1751
+ },
1752
+ {
1753
+ "entropy": 0.46817119382321837,
1754
+ "epoch": 0.56,
1755
+ "grad_norm": 0.08604299277067184,
1756
+ "learning_rate": 4.429660556387267e-05,
1757
+ "loss": 0.466612720489502,
1758
+ "mean_token_accuracy": 0.852244134247303,
1759
+ "num_tokens": 94714877.0,
1760
+ "step": 1750
1761
+ },
1762
+ {
1763
+ "entropy": 0.4692326754331589,
1764
+ "epoch": 0.5632,
1765
+ "grad_norm": 0.0843324363231659,
1766
+ "learning_rate": 4.377114523546586e-05,
1767
+ "loss": 0.4702005386352539,
1768
+ "mean_token_accuracy": 0.8516683995723724,
1769
+ "num_tokens": 95246459.0,
1770
+ "step": 1760
1771
+ },
1772
+ {
1773
+ "entropy": 0.4593378620222211,
1774
+ "epoch": 0.5664,
1775
+ "grad_norm": 0.07727103680372238,
1776
+ "learning_rate": 4.324638277958633e-05,
1777
+ "loss": 0.4627023696899414,
1778
+ "mean_token_accuracy": 0.8540186882019043,
1779
+ "num_tokens": 95796716.0,
1780
+ "step": 1770
1781
+ },
1782
+ {
1783
+ "entropy": 0.4712889514863491,
1784
+ "epoch": 0.5696,
1785
+ "grad_norm": 0.08348117768764496,
1786
+ "learning_rate": 4.272237698991529e-05,
1787
+ "loss": 0.4713275909423828,
1788
+ "mean_token_accuracy": 0.8512714870274067,
1789
+ "num_tokens": 96336169.0,
1790
+ "step": 1780
1791
+ },
1792
+ {
1793
+ "entropy": 0.46586135439574716,
1794
+ "epoch": 0.5728,
1795
+ "grad_norm": 0.08345329016447067,
1796
+ "learning_rate": 4.219918657535806e-05,
1797
+ "loss": 0.46833324432373047,
1798
+ "mean_token_accuracy": 0.8511520080268383,
1799
+ "num_tokens": 96862313.0,
1800
+ "step": 1790
1801
+ },
1802
+ {
1803
+ "entropy": 0.4541656643152237,
1804
+ "epoch": 0.576,
1805
+ "grad_norm": 0.0810740664601326,
1806
+ "learning_rate": 4.167687015346647e-05,
1807
+ "loss": 0.4527875900268555,
1808
+ "mean_token_accuracy": 0.8561052702367306,
1809
+ "num_tokens": 97408845.0,
1810
+ "step": 1800
1811
+ },
1812
+ {
1813
+ "entropy": 0.45898658633232114,
1814
+ "epoch": 0.5792,
1815
+ "grad_norm": 0.0800258219242096,
1816
+ "learning_rate": 4.115548624387137e-05,
1817
+ "loss": 0.4628445148468018,
1818
+ "mean_token_accuracy": 0.8538055151700974,
1819
+ "num_tokens": 97953346.0,
1820
+ "step": 1810
1821
+ },
1822
+ {
1823
+ "entropy": 0.4664215393364429,
1824
+ "epoch": 0.5824,
1825
+ "grad_norm": 0.07937142997980118,
1826
+ "learning_rate": 4.063509326172614e-05,
1827
+ "loss": 0.46411833763122556,
1828
+ "mean_token_accuracy": 0.8535587899386883,
1829
+ "num_tokens": 98496187.0,
1830
+ "step": 1820
1831
+ },
1832
+ {
1833
+ "entropy": 0.4728786572813988,
1834
+ "epoch": 0.5856,
1835
+ "grad_norm": 0.07668383419513702,
1836
+ "learning_rate": 4.0115749511162015e-05,
1837
+ "loss": 0.47352752685546873,
1838
+ "mean_token_accuracy": 0.8497631318867207,
1839
+ "num_tokens": 99040416.0,
1840
+ "step": 1830
1841
+ },
1842
+ {
1843
+ "entropy": 0.47622836790978906,
1844
+ "epoch": 0.5888,
1845
+ "grad_norm": 0.08195730298757553,
1846
+ "learning_rate": 3.959751317875578e-05,
1847
+ "loss": 0.4752840042114258,
1848
+ "mean_token_accuracy": 0.850227864831686,
1849
+ "num_tokens": 99593149.0,
1850
+ "step": 1840
1851
+ },
1852
+ {
1853
+ "entropy": 0.4608859997242689,
1854
+ "epoch": 0.592,
1855
+ "grad_norm": 0.0843755304813385,
1856
+ "learning_rate": 3.908044232701048e-05,
1857
+ "loss": 0.46326684951782227,
1858
+ "mean_token_accuracy": 0.8526121072471142,
1859
+ "num_tokens": 100134908.0,
1860
+ "step": 1850
1861
+ },
1862
+ {
1863
+ "entropy": 0.47524676024913787,
1864
+ "epoch": 0.5952,
1865
+ "grad_norm": 0.07998881489038467,
1866
+ "learning_rate": 3.856459488785034e-05,
1867
+ "loss": 0.4724444389343262,
1868
+ "mean_token_accuracy": 0.8499803431332111,
1869
+ "num_tokens": 100688262.0,
1870
+ "step": 1860
1871
+ },
1872
+ {
1873
+ "entropy": 0.4676617939025164,
1874
+ "epoch": 0.5984,
1875
+ "grad_norm": 0.07983442395925522,
1876
+ "learning_rate": 3.8050028656130044e-05,
1877
+ "loss": 0.4673893451690674,
1878
+ "mean_token_accuracy": 0.8520112574100495,
1879
+ "num_tokens": 101238667.0,
1880
+ "step": 1870
1881
+ },
1882
+ {
1883
+ "entropy": 0.46478423550724984,
1884
+ "epoch": 0.6016,
1885
+ "grad_norm": 0.08955696225166321,
1886
+ "learning_rate": 3.753680128315952e-05,
1887
+ "loss": 0.4648019790649414,
1888
+ "mean_token_accuracy": 0.8533546671271324,
1889
+ "num_tokens": 101782475.0,
1890
+ "step": 1880
1891
+ },
1892
+ {
1893
+ "entropy": 0.46628143414855006,
1894
+ "epoch": 0.6048,
1895
+ "grad_norm": 0.07812649011611938,
1896
+ "learning_rate": 3.702497027024481e-05,
1897
+ "loss": 0.46871194839477537,
1898
+ "mean_token_accuracy": 0.8519086144864559,
1899
+ "num_tokens": 102320202.0,
1900
+ "step": 1890
1901
+ },
1902
+ {
1903
+ "entropy": 0.4700084120035172,
1904
+ "epoch": 0.608,
1905
+ "grad_norm": 0.08428274095058441,
1906
+ "learning_rate": 3.651459296224558e-05,
1907
+ "loss": 0.47167129516601564,
1908
+ "mean_token_accuracy": 0.8507826834917068,
1909
+ "num_tokens": 102861209.0,
1910
+ "step": 1900
1911
+ },
1912
+ {
1913
+ "entropy": 0.4668469190597534,
1914
+ "epoch": 0.6112,
1915
+ "grad_norm": 0.07659580558538437,
1916
+ "learning_rate": 3.6005726541150374e-05,
1917
+ "loss": 0.4668436527252197,
1918
+ "mean_token_accuracy": 0.8514630772173405,
1919
+ "num_tokens": 103387686.0,
1920
+ "step": 1910
1921
+ },
1922
+ {
1923
+ "entropy": 0.45636183880269526,
1924
+ "epoch": 0.6144,
1925
+ "grad_norm": 0.08237709105014801,
1926
+ "learning_rate": 3.549842801967e-05,
1927
+ "loss": 0.45879192352294923,
1928
+ "mean_token_accuracy": 0.8547308295965195,
1929
+ "num_tokens": 103924119.0,
1930
+ "step": 1920
1931
+ },
1932
+ {
1933
+ "entropy": 0.46668031103909013,
1934
+ "epoch": 0.6176,
1935
+ "grad_norm": 0.08361906558275223,
1936
+ "learning_rate": 3.49927542348499e-05,
1937
+ "loss": 0.46662054061889646,
1938
+ "mean_token_accuracy": 0.8522961035370826,
1939
+ "num_tokens": 104466214.0,
1940
+ "step": 1930
1941
+ },
1942
+ {
1943
+ "entropy": 0.4627140048891306,
1944
+ "epoch": 0.6208,
1945
+ "grad_norm": 0.08293884992599487,
1946
+ "learning_rate": 3.448876184170219e-05,
1947
+ "loss": 0.4651099681854248,
1948
+ "mean_token_accuracy": 0.8533656261861324,
1949
+ "num_tokens": 105006195.0,
1950
+ "step": 1940
1951
+ },
1952
+ {
1953
+ "entropy": 0.459839666634798,
1954
+ "epoch": 0.624,
1955
+ "grad_norm": 0.07877857983112335,
1956
+ "learning_rate": 3.3986507306858125e-05,
1957
+ "loss": 0.4621723175048828,
1958
+ "mean_token_accuracy": 0.8544248096644879,
1959
+ "num_tokens": 105548590.0,
1960
+ "step": 1950
1961
+ },
1962
+ {
1963
+ "entropy": 0.4668099503964186,
1964
+ "epoch": 0.6272,
1965
+ "grad_norm": 0.08203998953104019,
1966
+ "learning_rate": 3.3486046902241664e-05,
1967
+ "loss": 0.4681126594543457,
1968
+ "mean_token_accuracy": 0.8515423350036144,
1969
+ "num_tokens": 106094102.0,
1970
+ "step": 1960
1971
+ },
1972
+ {
1973
+ "entropy": 0.44877244122326376,
1974
+ "epoch": 0.6304,
1975
+ "grad_norm": 0.07209313660860062,
1976
+ "learning_rate": 3.2987436698764763e-05,
1977
+ "loss": 0.45133142471313475,
1978
+ "mean_token_accuracy": 0.8570409543812275,
1979
+ "num_tokens": 106635016.0,
1980
+ "step": 1970
1981
+ },
1982
+ {
1983
+ "entropy": 0.4783164393156767,
1984
+ "epoch": 0.6336,
1985
+ "grad_norm": 0.08684968948364258,
1986
+ "learning_rate": 3.2490732560045437e-05,
1987
+ "loss": 0.48186798095703126,
1988
+ "mean_token_accuracy": 0.8482549019157887,
1989
+ "num_tokens": 107174345.0,
1990
+ "step": 1980
1991
+ },
1992
+ {
1993
+ "entropy": 0.4584357634186745,
1994
+ "epoch": 0.6368,
1995
+ "grad_norm": 0.07954578846693039,
1996
+ "learning_rate": 3.1995990136148657e-05,
1997
+ "loss": 0.4587684631347656,
1998
+ "mean_token_accuracy": 0.8542109049856663,
1999
+ "num_tokens": 107731902.0,
2000
+ "step": 1990
2001
+ },
2002
+ {
2003
+ "entropy": 0.4726602200418711,
2004
+ "epoch": 0.64,
2005
+ "grad_norm": 0.08083987981081009,
2006
+ "learning_rate": 3.1503264857351545e-05,
2007
+ "loss": 0.46906423568725586,
2008
+ "mean_token_accuracy": 0.8510009065270424,
2009
+ "num_tokens": 108279762.0,
2010
+ "step": 2000
2011
+ },
2012
+ {
2013
+ "entropy": 0.44844978749752046,
2014
+ "epoch": 0.6432,
2015
+ "grad_norm": 0.07614653557538986,
2016
+ "learning_rate": 3.1012611927932975e-05,
2017
+ "loss": 0.44867725372314454,
2018
+ "mean_token_accuracy": 0.8577892072498798,
2019
+ "num_tokens": 108816206.0,
2020
+ "step": 2010
2021
+ },
2022
+ {
2023
+ "entropy": 0.4724151039496064,
2024
+ "epoch": 0.6464,
2025
+ "grad_norm": 0.08435625582933426,
2026
+ "learning_rate": 3.0524086319988634e-05,
2027
+ "loss": 0.47345867156982424,
2028
+ "mean_token_accuracy": 0.8507047936320304,
2029
+ "num_tokens": 109367381.0,
2030
+ "step": 2020
2031
+ },
2032
+ {
2033
+ "entropy": 0.44393031001091005,
2034
+ "epoch": 0.6496,
2035
+ "grad_norm": 0.08213211596012115,
2036
+ "learning_rate": 3.0037742767271894e-05,
2037
+ "loss": 0.4445021152496338,
2038
+ "mean_token_accuracy": 0.8578391231596469,
2039
+ "num_tokens": 109908791.0,
2040
+ "step": 2030
2041
+ },
2042
+ {
2043
+ "entropy": 0.4640093095600605,
2044
+ "epoch": 0.6528,
2045
+ "grad_norm": 0.082188181579113,
2046
+ "learning_rate": 2.955363575906162e-05,
2047
+ "loss": 0.4640909194946289,
2048
+ "mean_token_accuracy": 0.8525204718112945,
2049
+ "num_tokens": 110449065.0,
2050
+ "step": 2040
2051
+ },
2052
+ {
2053
+ "entropy": 0.4612592164427042,
2054
+ "epoch": 0.656,
2055
+ "grad_norm": 0.08360268920660019,
2056
+ "learning_rate": 2.907181953405723e-05,
2057
+ "loss": 0.458968448638916,
2058
+ "mean_token_accuracy": 0.8536446385085583,
2059
+ "num_tokens": 110994873.0,
2060
+ "step": 2050
2061
+ },
2062
+ {
2063
+ "entropy": 0.4579277090728283,
2064
+ "epoch": 0.6592,
2065
+ "grad_norm": 0.08358589559793472,
2066
+ "learning_rate": 2.859234807430186e-05,
2067
+ "loss": 0.46317567825317385,
2068
+ "mean_token_accuracy": 0.8538489252328872,
2069
+ "num_tokens": 111535422.0,
2070
+ "step": 2060
2071
+ },
2072
+ {
2073
+ "entropy": 0.4806145966053009,
2074
+ "epoch": 0.6624,
2075
+ "grad_norm": 0.07769794017076492,
2076
+ "learning_rate": 2.8115275099134307e-05,
2077
+ "loss": 0.4799009323120117,
2078
+ "mean_token_accuracy": 0.8483485169708729,
2079
+ "num_tokens": 112081357.0,
2080
+ "step": 2070
2081
+ },
2082
+ {
2083
+ "entropy": 0.4620382659137249,
2084
+ "epoch": 0.6656,
2085
+ "grad_norm": 0.0826093927025795,
2086
+ "learning_rate": 2.76406540591704e-05,
2087
+ "loss": 0.46086602210998534,
2088
+ "mean_token_accuracy": 0.8536053143441678,
2089
+ "num_tokens": 112621297.0,
2090
+ "step": 2080
2091
+ },
2092
+ {
2093
+ "entropy": 0.4670826118439436,
2094
+ "epoch": 0.6688,
2095
+ "grad_norm": 0.08501531928777695,
2096
+ "learning_rate": 2.716853813031435e-05,
2097
+ "loss": 0.4681534767150879,
2098
+ "mean_token_accuracy": 0.8521834880113601,
2099
+ "num_tokens": 113174059.0,
2100
+ "step": 2090
2101
+ },
2102
+ {
2103
+ "entropy": 0.46330604888498783,
2104
+ "epoch": 0.672,
2105
+ "grad_norm": 0.0856207087635994,
2106
+ "learning_rate": 2.6698980207801165e-05,
2107
+ "loss": 0.4677117347717285,
2108
+ "mean_token_accuracy": 0.8527464650571346,
2109
+ "num_tokens": 113708519.0,
2110
+ "step": 2100
2111
+ },
2112
+ {
2113
+ "entropy": 0.4704467307776213,
2114
+ "epoch": 0.6752,
2115
+ "grad_norm": 0.07923608273267746,
2116
+ "learning_rate": 2.6232032900270255e-05,
2117
+ "loss": 0.4697268009185791,
2118
+ "mean_token_accuracy": 0.8514689601957798,
2119
+ "num_tokens": 114241852.0,
2120
+ "step": 2110
2121
+ },
2122
+ {
2123
+ "entropy": 0.4633196447044611,
2124
+ "epoch": 0.6784,
2125
+ "grad_norm": 0.08135133981704712,
2126
+ "learning_rate": 2.576774852387116e-05,
2127
+ "loss": 0.4679567337036133,
2128
+ "mean_token_accuracy": 0.8528963334858417,
2129
+ "num_tokens": 114773806.0,
2130
+ "step": 2120
2131
+ },
2132
+ {
2133
+ "entropy": 0.46051954887807367,
2134
+ "epoch": 0.6816,
2135
+ "grad_norm": 0.07803782820701599,
2136
+ "learning_rate": 2.5306179096402284e-05,
2137
+ "loss": 0.4630821704864502,
2138
+ "mean_token_accuracy": 0.8534800790250301,
2139
+ "num_tokens": 115317973.0,
2140
+ "step": 2130
2141
+ },
2142
+ {
2143
+ "entropy": 0.47381667234003544,
2144
+ "epoch": 0.6848,
2145
+ "grad_norm": 0.08514274656772614,
2146
+ "learning_rate": 2.4847376331482708e-05,
2147
+ "loss": 0.47550249099731445,
2148
+ "mean_token_accuracy": 0.8499852366745472,
2149
+ "num_tokens": 115857229.0,
2150
+ "step": 2140
2151
+ },
2152
+ {
2153
+ "entropy": 0.4630388144403696,
2154
+ "epoch": 0.688,
2155
+ "grad_norm": 0.08278600871562958,
2156
+ "learning_rate": 2.439139163275841e-05,
2157
+ "loss": 0.45961742401123046,
2158
+ "mean_token_accuracy": 0.8528052791953087,
2159
+ "num_tokens": 116391992.0,
2160
+ "step": 2150
2161
+ },
2162
+ {
2163
+ "entropy": 0.4639690738171339,
2164
+ "epoch": 0.6912,
2165
+ "grad_norm": 0.08281213045120239,
2166
+ "learning_rate": 2.3938276088143003e-05,
2167
+ "loss": 0.46523027420043944,
2168
+ "mean_token_accuracy": 0.8540500201284885,
2169
+ "num_tokens": 116929302.0,
2170
+ "step": 2160
2171
+ },
2172
+ {
2173
+ "entropy": 0.4527744609862566,
2174
+ "epoch": 0.6944,
2175
+ "grad_norm": 0.08127865195274353,
2176
+ "learning_rate": 2.348808046409394e-05,
2177
+ "loss": 0.45207915306091306,
2178
+ "mean_token_accuracy": 0.8564808771014214,
2179
+ "num_tokens": 117473336.0,
2180
+ "step": 2170
2181
+ },
2182
+ {
2183
+ "entropy": 0.4757744297385216,
2184
+ "epoch": 0.6976,
2185
+ "grad_norm": 0.08432777225971222,
2186
+ "learning_rate": 2.304085519992464e-05,
2187
+ "loss": 0.47539215087890624,
2188
+ "mean_token_accuracy": 0.8493755608797073,
2189
+ "num_tokens": 118012328.0,
2190
+ "step": 2180
2191
+ },
2192
+ {
2193
+ "entropy": 0.4456796331331134,
2194
+ "epoch": 0.7008,
2195
+ "grad_norm": 0.17296849191188812,
2196
+ "learning_rate": 2.2596650402153435e-05,
2197
+ "loss": 0.44671993255615233,
2198
+ "mean_token_accuracy": 0.8578110568225383,
2199
+ "num_tokens": 118571425.0,
2200
+ "step": 2190
2201
+ },
2202
+ {
2203
+ "entropy": 0.46766641810536386,
2204
+ "epoch": 0.704,
2205
+ "grad_norm": 0.0819447934627533,
2206
+ "learning_rate": 2.215551583888965e-05,
2207
+ "loss": 0.4681885242462158,
2208
+ "mean_token_accuracy": 0.852161280810833,
2209
+ "num_tokens": 119115084.0,
2210
+ "step": 2200
2211
+ },
2212
+ {
2213
+ "entropy": 0.45493533834815025,
2214
+ "epoch": 0.7072,
2215
+ "grad_norm": 0.08149348944425583,
2216
+ "learning_rate": 2.1717500934257666e-05,
2217
+ "loss": 0.4589592933654785,
2218
+ "mean_token_accuracy": 0.8552753947675228,
2219
+ "num_tokens": 119652242.0,
2220
+ "step": 2210
2221
+ },
2222
+ {
2223
+ "entropy": 0.47455503717064856,
2224
+ "epoch": 0.7104,
2225
+ "grad_norm": 0.08334008604288101,
2226
+ "learning_rate": 2.1282654762859444e-05,
2227
+ "loss": 0.4724628448486328,
2228
+ "mean_token_accuracy": 0.8500432133674621,
2229
+ "num_tokens": 120189209.0,
2230
+ "step": 2220
2231
+ },
2232
+ {
2233
+ "entropy": 0.46832988820970056,
2234
+ "epoch": 0.7136,
2235
+ "grad_norm": 0.08058661222457886,
2236
+ "learning_rate": 2.0851026044276406e-05,
2237
+ "loss": 0.4681687355041504,
2238
+ "mean_token_accuracy": 0.8522658489644528,
2239
+ "num_tokens": 120733556.0,
2240
+ "step": 2230
2241
+ },
2242
+ {
2243
+ "entropy": 0.47705818600952626,
2244
+ "epoch": 0.7168,
2245
+ "grad_norm": 0.08390231430530548,
2246
+ "learning_rate": 2.0422663137610798e-05,
2247
+ "loss": 0.47703895568847654,
2248
+ "mean_token_accuracy": 0.8492309600114822,
2249
+ "num_tokens": 121274222.0,
2250
+ "step": 2240
2251
+ },
2252
+ {
2253
+ "entropy": 0.47597878277301786,
2254
+ "epoch": 0.72,
2255
+ "grad_norm": 0.08627524971961975,
2256
+ "learning_rate": 1.9997614036067742e-05,
2257
+ "loss": 0.4765979766845703,
2258
+ "mean_token_accuracy": 0.8501147925853729,
2259
+ "num_tokens": 121808251.0,
2260
+ "step": 2250
2261
+ },
2262
+ {
2263
+ "entropy": 0.46871641650795937,
2264
+ "epoch": 0.7232,
2265
+ "grad_norm": 0.08514464646577835,
2266
+ "learning_rate": 1.9575926361578078e-05,
2267
+ "loss": 0.47216053009033204,
2268
+ "mean_token_accuracy": 0.8506880171597004,
2269
+ "num_tokens": 122344572.0,
2270
+ "step": 2260
2271
+ },
2272
+ {
2273
+ "entropy": 0.4548498407006264,
2274
+ "epoch": 0.7264,
2275
+ "grad_norm": 0.08697574585676193,
2276
+ "learning_rate": 1.9157647359462825e-05,
2277
+ "loss": 0.4541280269622803,
2278
+ "mean_token_accuracy": 0.8561206422746181,
2279
+ "num_tokens": 122888982.0,
2280
+ "step": 2270
2281
+ },
2282
+ {
2283
+ "entropy": 0.4578681141138077,
2284
+ "epoch": 0.7296,
2285
+ "grad_norm": 0.08466683328151703,
2286
+ "learning_rate": 1.8742823893139965e-05,
2287
+ "loss": 0.461226224899292,
2288
+ "mean_token_accuracy": 0.8543559476733208,
2289
+ "num_tokens": 123440890.0,
2290
+ "step": 2280
2291
+ },
2292
+ {
2293
+ "entropy": 0.45721089132130144,
2294
+ "epoch": 0.7328,
2295
+ "grad_norm": 0.08381082117557526,
2296
+ "learning_rate": 1.8331502438873883e-05,
2297
+ "loss": 0.458039379119873,
2298
+ "mean_token_accuracy": 0.8553496666252614,
2299
+ "num_tokens": 123995478.0,
2300
+ "step": 2290
2301
+ },
2302
+ {
2303
+ "entropy": 0.48102103658020495,
2304
+ "epoch": 0.736,
2305
+ "grad_norm": 0.08151254802942276,
2306
+ "learning_rate": 1.792372908056824e-05,
2307
+ "loss": 0.4803072452545166,
2308
+ "mean_token_accuracy": 0.8496612899005413,
2309
+ "num_tokens": 124543628.0,
2310
+ "step": 2300
2311
+ },
2312
+ {
2313
+ "entropy": 0.4647577222436666,
2314
+ "epoch": 0.7392,
2315
+ "grad_norm": 0.07907874137163162,
2316
+ "learning_rate": 1.751954950460275e-05,
2317
+ "loss": 0.4656996726989746,
2318
+ "mean_token_accuracy": 0.8517619237303734,
2319
+ "num_tokens": 125080657.0,
2320
+ "step": 2310
2321
+ },
2322
+ {
2323
+ "entropy": 0.46176278330385684,
2324
+ "epoch": 0.7424,
2325
+ "grad_norm": 0.08020291477441788,
2326
+ "learning_rate": 1.711900899471463e-05,
2327
+ "loss": 0.4624810218811035,
2328
+ "mean_token_accuracy": 0.852861026674509,
2329
+ "num_tokens": 125621368.0,
2330
+ "step": 2320
2331
+ },
2332
+ {
2333
+ "entropy": 0.45940026380121707,
2334
+ "epoch": 0.7456,
2335
+ "grad_norm": 0.08816850930452347,
2336
+ "learning_rate": 1.6722152426924957e-05,
2337
+ "loss": 0.464081335067749,
2338
+ "mean_token_accuracy": 0.8537900924682618,
2339
+ "num_tokens": 126159116.0,
2340
+ "step": 2330
2341
+ },
2342
+ {
2343
+ "entropy": 0.461243599653244,
2344
+ "epoch": 0.7488,
2345
+ "grad_norm": 0.08073343336582184,
2346
+ "learning_rate": 1.632902426451094e-05,
2347
+ "loss": 0.46134142875671386,
2348
+ "mean_token_accuracy": 0.8536130629479886,
2349
+ "num_tokens": 126706217.0,
2350
+ "step": 2340
2351
+ },
2352
+ {
2353
+ "entropy": 0.4594324670732021,
2354
+ "epoch": 0.752,
2355
+ "grad_norm": 0.08281491696834564,
2356
+ "learning_rate": 1.5939668553024235e-05,
2357
+ "loss": 0.4629940986633301,
2358
+ "mean_token_accuracy": 0.8533355824649334,
2359
+ "num_tokens": 127244265.0,
2360
+ "step": 2350
2361
+ },
2362
+ {
2363
+ "entropy": 0.48015770092606547,
2364
+ "epoch": 0.7552,
2365
+ "grad_norm": 0.08678045123815536,
2366
+ "learning_rate": 1.5554128915356126e-05,
2367
+ "loss": 0.4795347213745117,
2368
+ "mean_token_accuracy": 0.8486863911151886,
2369
+ "num_tokens": 127787717.0,
2370
+ "step": 2360
2371
+ },
2372
+ {
2373
+ "entropy": 0.4674267187714577,
2374
+ "epoch": 0.7584,
2375
+ "grad_norm": 0.08806832134723663,
2376
+ "learning_rate": 1.5172448546850165e-05,
2377
+ "loss": 0.4694706916809082,
2378
+ "mean_token_accuracy": 0.8519207708537578,
2379
+ "num_tokens": 128325214.0,
2380
+ "step": 2370
2381
+ },
2382
+ {
2383
+ "entropy": 0.4692223500460386,
2384
+ "epoch": 0.7616,
2385
+ "grad_norm": 0.08210162818431854,
2386
+ "learning_rate": 1.4794670210462492e-05,
2387
+ "loss": 0.47144575119018556,
2388
+ "mean_token_accuracy": 0.8511710479855538,
2389
+ "num_tokens": 128866259.0,
2390
+ "step": 2380
2391
+ },
2392
+ {
2393
+ "entropy": 0.45822653025388715,
2394
+ "epoch": 0.7648,
2395
+ "grad_norm": 0.08143525570631027,
2396
+ "learning_rate": 1.4420836231970914e-05,
2397
+ "loss": 0.46082229614257814,
2398
+ "mean_token_accuracy": 0.8544653721153737,
2399
+ "num_tokens": 129404832.0,
2400
+ "step": 2390
2401
+ },
2402
+ {
2403
+ "entropy": 0.466277177259326,
2404
+ "epoch": 0.768,
2405
+ "grad_norm": 0.08295784145593643,
2406
+ "learning_rate": 1.4050988495232565e-05,
2407
+ "loss": 0.46442317962646484,
2408
+ "mean_token_accuracy": 0.8529163144528866,
2409
+ "num_tokens": 129943074.0,
2410
+ "step": 2400
2411
+ },
2412
+ {
2413
+ "entropy": 0.46804318726062777,
2414
+ "epoch": 0.7712,
2415
+ "grad_norm": 0.08742719143629074,
2416
+ "learning_rate": 1.3685168437491475e-05,
2417
+ "loss": 0.4691460609436035,
2418
+ "mean_token_accuracy": 0.8516571588814259,
2419
+ "num_tokens": 130487358.0,
2420
+ "step": 2410
2421
+ },
2422
+ {
2423
+ "entropy": 0.45586061477661133,
2424
+ "epoch": 0.7744,
2425
+ "grad_norm": 0.07925993204116821,
2426
+ "learning_rate": 1.3323417044735864e-05,
2427
+ "loss": 0.4539622783660889,
2428
+ "mean_token_accuracy": 0.8555390655994415,
2429
+ "num_tokens": 131030867.0,
2430
+ "step": 2420
2431
+ },
2432
+ {
2433
+ "entropy": 0.4753517936915159,
2434
+ "epoch": 0.7776,
2435
+ "grad_norm": 0.0779256746172905,
2436
+ "learning_rate": 1.296577484710627e-05,
2437
+ "loss": 0.4771604537963867,
2438
+ "mean_token_accuracy": 0.8492721661925315,
2439
+ "num_tokens": 131583751.0,
2440
+ "step": 2430
2441
+ },
2442
+ {
2443
+ "entropy": 0.46178548224270344,
2444
+ "epoch": 0.7808,
2445
+ "grad_norm": 0.0828179195523262,
2446
+ "learning_rate": 1.2612281914354451e-05,
2447
+ "loss": 0.46554718017578123,
2448
+ "mean_token_accuracy": 0.8518827095627785,
2449
+ "num_tokens": 132115400.0,
2450
+ "step": 2440
2451
+ },
2452
+ {
2453
+ "entropy": 0.4675505064427853,
2454
+ "epoch": 0.784,
2455
+ "grad_norm": 0.08057764917612076,
2456
+ "learning_rate": 1.226297785135414e-05,
2457
+ "loss": 0.46473064422607424,
2458
+ "mean_token_accuracy": 0.8523139268159866,
2459
+ "num_tokens": 132666000.0,
2460
+ "step": 2450
2461
+ },
2462
+ {
2463
+ "entropy": 0.44793173633515837,
2464
+ "epoch": 0.7872,
2465
+ "grad_norm": 0.08276599645614624,
2466
+ "learning_rate": 1.1917901793663682e-05,
2467
+ "loss": 0.44820418357849123,
2468
+ "mean_token_accuracy": 0.857875219732523,
2469
+ "num_tokens": 133206157.0,
2470
+ "step": 2460
2471
+ },
2472
+ {
2473
+ "entropy": 0.4644062086939812,
2474
+ "epoch": 0.7904,
2475
+ "grad_norm": 0.08161120861768723,
2476
+ "learning_rate": 1.1577092403141433e-05,
2477
+ "loss": 0.4627474308013916,
2478
+ "mean_token_accuracy": 0.8532275453209877,
2479
+ "num_tokens": 133771874.0,
2480
+ "step": 2470
2481
+ },
2482
+ {
2483
+ "entropy": 0.44853013232350347,
2484
+ "epoch": 0.7936,
2485
+ "grad_norm": 0.08148295432329178,
2486
+ "learning_rate": 1.1240587863614071e-05,
2487
+ "loss": 0.45169339179992674,
2488
+ "mean_token_accuracy": 0.8561265848577022,
2489
+ "num_tokens": 134318559.0,
2490
+ "step": 2480
2491
+ },
2492
+ {
2493
+ "entropy": 0.45980192013084886,
2494
+ "epoch": 0.7968,
2495
+ "grad_norm": 0.0792505070567131,
2496
+ "learning_rate": 1.090842587659851e-05,
2497
+ "loss": 0.45940675735473635,
2498
+ "mean_token_accuracy": 0.8535128928720951,
2499
+ "num_tokens": 134862620.0,
2500
+ "step": 2490
2501
+ },
2502
+ {
2503
+ "entropy": 0.45604656375944613,
2504
+ "epoch": 0.8,
2505
+ "grad_norm": 0.08306615054607391,
2506
+ "learning_rate": 1.0580643657077976e-05,
2507
+ "loss": 0.4595036506652832,
2508
+ "mean_token_accuracy": 0.8552262201905251,
2509
+ "num_tokens": 135403888.0,
2510
+ "step": 2500
2511
+ },
2512
+ {
2513
+ "entropy": 0.472680402174592,
2514
+ "epoch": 0.8032,
2515
+ "grad_norm": 0.08291345089673996,
2516
+ "learning_rate": 1.0257277929332332e-05,
2517
+ "loss": 0.4714357376098633,
2518
+ "mean_token_accuracy": 0.8513913378119469,
2519
+ "num_tokens": 135947508.0,
2520
+ "step": 2510
2521
+ },
2522
+ {
2523
+ "entropy": 0.4574604358524084,
2524
+ "epoch": 0.8064,
2525
+ "grad_norm": 0.07977301627397537,
2526
+ "learning_rate": 9.938364922823745e-06,
2527
+ "loss": 0.4595664978027344,
2528
+ "mean_token_accuracy": 0.854312700778246,
2529
+ "num_tokens": 136490466.0,
2530
+ "step": 2520
2531
+ },
2532
+ {
2533
+ "entropy": 0.45157139785587785,
2534
+ "epoch": 0.8096,
2535
+ "grad_norm": 0.08351728320121765,
2536
+ "learning_rate": 9.623940368137369e-06,
2537
+ "loss": 0.4506734848022461,
2538
+ "mean_token_accuracy": 0.8566409595310688,
2539
+ "num_tokens": 137031910.0,
2540
+ "step": 2530
2541
+ },
2542
+ {
2543
+ "entropy": 0.4738286957144737,
2544
+ "epoch": 0.8128,
2545
+ "grad_norm": 0.08656181395053864,
2546
+ "learning_rate": 9.314039492978311e-06,
2547
+ "loss": 0.47472944259643557,
2548
+ "mean_token_accuracy": 0.8510151915252209,
2549
+ "num_tokens": 137579298.0,
2550
+ "step": 2540
2551
+ },
2552
+ {
2553
+ "entropy": 0.4666871029883623,
2554
+ "epoch": 0.816,
2555
+ "grad_norm": 0.07740852236747742,
2556
+ "learning_rate": 9.008697018224638e-06,
2557
+ "loss": 0.46857662200927735,
2558
+ "mean_token_accuracy": 0.8524154961109162,
2559
+ "num_tokens": 138113839.0,
2560
+ "step": 2550
2561
+ },
2562
+ {
2563
+ "entropy": 0.4572214774787426,
2564
+ "epoch": 0.8192,
2565
+ "grad_norm": 0.08414942771196365,
2566
+ "learning_rate": 8.707947154037389e-06,
2567
+ "loss": 0.4580754280090332,
2568
+ "mean_token_accuracy": 0.8550274461507797,
2569
+ "num_tokens": 138657606.0,
2570
+ "step": 2560
2571
+ },
2572
+ {
2573
+ "entropy": 0.46387795843183993,
2574
+ "epoch": 0.8224,
2575
+ "grad_norm": 0.07949203997850418,
2576
+ "learning_rate": 8.411823596027685e-06,
2577
+ "loss": 0.46186103820800783,
2578
+ "mean_token_accuracy": 0.8532565161585808,
2579
+ "num_tokens": 139199109.0,
2580
+ "step": 2570
2581
+ },
2582
+ {
2583
+ "entropy": 0.4731456235051155,
2584
+ "epoch": 0.8256,
2585
+ "grad_norm": 0.08628631383180618,
2586
+ "learning_rate": 8.120359521481501e-06,
2587
+ "loss": 0.47334856986999513,
2588
+ "mean_token_accuracy": 0.8491534382104874,
2589
+ "num_tokens": 139727359.0,
2590
+ "step": 2580
2591
+ },
2592
+ {
2593
+ "entropy": 0.4579001996666193,
2594
+ "epoch": 0.8288,
2595
+ "grad_norm": 0.0787086933851242,
2596
+ "learning_rate": 7.833587585642527e-06,
2597
+ "loss": 0.45937094688415525,
2598
+ "mean_token_accuracy": 0.8540180057287217,
2599
+ "num_tokens": 140263619.0,
2600
+ "step": 2590
2601
+ },
2602
+ {
2603
+ "entropy": 0.47708442993462086,
2604
+ "epoch": 0.832,
2605
+ "grad_norm": 0.0864366665482521,
2606
+ "learning_rate": 7.551539918053541e-06,
2607
+ "loss": 0.47784271240234377,
2608
+ "mean_token_accuracy": 0.8495126746594905,
2609
+ "num_tokens": 140803204.0,
2610
+ "step": 2600
2611
+ },
2612
+ {
2613
+ "entropy": 0.4615286778658628,
2614
+ "epoch": 0.8352,
2615
+ "grad_norm": 0.08561565726995468,
2616
+ "learning_rate": 7.274248118956667e-06,
2617
+ "loss": 0.46320443153381347,
2618
+ "mean_token_accuracy": 0.8532632842659951,
2619
+ "num_tokens": 141347346.0,
2620
+ "step": 2610
2621
+ },
2622
+ {
2623
+ "entropy": 0.4521449118852615,
2624
+ "epoch": 0.8384,
2625
+ "grad_norm": 0.0840955302119255,
2626
+ "learning_rate": 7.001743255752857e-06,
2627
+ "loss": 0.45335044860839846,
2628
+ "mean_token_accuracy": 0.856326463073492,
2629
+ "num_tokens": 141891461.0,
2630
+ "step": 2620
2631
+ },
2632
+ {
2633
+ "entropy": 0.4658927246928215,
2634
+ "epoch": 0.8416,
2635
+ "grad_norm": 0.08690115809440613,
2636
+ "learning_rate": 6.7340558595212485e-06,
2637
+ "loss": 0.46956405639648435,
2638
+ "mean_token_accuracy": 0.8530021667480469,
2639
+ "num_tokens": 142443544.0,
2640
+ "step": 2630
2641
+ },
2642
+ {
2643
+ "entropy": 0.4672031823545694,
2644
+ "epoch": 0.8448,
2645
+ "grad_norm": 0.0802784189581871,
2646
+ "learning_rate": 6.4712159215983945e-06,
2647
+ "loss": 0.4663797378540039,
2648
+ "mean_token_accuracy": 0.8518442392349244,
2649
+ "num_tokens": 142988736.0,
2650
+ "step": 2640
2651
+ },
2652
+ {
2653
+ "entropy": 0.45975690335035324,
2654
+ "epoch": 0.848,
2655
+ "grad_norm": 0.08276927471160889,
2656
+ "learning_rate": 6.213252890218163e-06,
2657
+ "loss": 0.45941638946533203,
2658
+ "mean_token_accuracy": 0.8541808009147644,
2659
+ "num_tokens": 143533757.0,
2660
+ "step": 2650
2661
+ },
2662
+ {
2663
+ "entropy": 0.45979082882404326,
2664
+ "epoch": 0.8512,
2665
+ "grad_norm": 0.08185946196317673,
2666
+ "learning_rate": 5.960195667212337e-06,
2667
+ "loss": 0.4600400924682617,
2668
+ "mean_token_accuracy": 0.8538325548171997,
2669
+ "num_tokens": 144081635.0,
2670
+ "step": 2660
2671
+ },
2672
+ {
2673
+ "entropy": 0.45433352291584017,
2674
+ "epoch": 0.8544,
2675
+ "grad_norm": 0.08438166230916977,
2676
+ "learning_rate": 5.712072604772539e-06,
2677
+ "loss": 0.4563631057739258,
2678
+ "mean_token_accuracy": 0.8551003247499466,
2679
+ "num_tokens": 144632213.0,
2680
+ "step": 2670
2681
+ },
2682
+ {
2683
+ "entropy": 0.47600530944764613,
2684
+ "epoch": 0.8576,
2685
+ "grad_norm": 0.07887919992208481,
2686
+ "learning_rate": 5.468911502273627e-06,
2687
+ "loss": 0.47498316764831544,
2688
+ "mean_token_accuracy": 0.84912119358778,
2689
+ "num_tokens": 145179291.0,
2690
+ "step": 2680
2691
+ },
2692
+ {
2693
+ "entropy": 0.48059417977929114,
2694
+ "epoch": 0.8608,
2695
+ "grad_norm": 0.09053132683038712,
2696
+ "learning_rate": 5.230739603159152e-06,
2697
+ "loss": 0.4829423427581787,
2698
+ "mean_token_accuracy": 0.8477361969649791,
2699
+ "num_tokens": 145708078.0,
2700
+ "step": 2690
2701
+ },
2702
+ {
2703
+ "entropy": 0.4714535430073738,
2704
+ "epoch": 0.864,
2705
+ "grad_norm": 0.08268075436353683,
2706
+ "learning_rate": 4.997583591889027e-06,
2707
+ "loss": 0.47348756790161134,
2708
+ "mean_token_accuracy": 0.850239709764719,
2709
+ "num_tokens": 146250196.0,
2710
+ "step": 2700
2711
+ },
2712
+ {
2713
+ "entropy": 0.4679393831640482,
2714
+ "epoch": 0.8672,
2715
+ "grad_norm": 0.09109136462211609,
2716
+ "learning_rate": 4.769469590949782e-06,
2717
+ "loss": 0.46534051895141604,
2718
+ "mean_token_accuracy": 0.8525628745555878,
2719
+ "num_tokens": 146790541.0,
2720
+ "step": 2710
2721
+ },
2722
+ {
2723
+ "entropy": 0.4727115105837584,
2724
+ "epoch": 0.8704,
2725
+ "grad_norm": 0.08139918744564056,
2726
+ "learning_rate": 4.546423157927921e-06,
2727
+ "loss": 0.47171907424926757,
2728
+ "mean_token_accuracy": 0.8515786036849022,
2729
+ "num_tokens": 147333731.0,
2730
+ "step": 2720
2731
+ },
2732
+ {
2733
+ "entropy": 0.4678931195288897,
2734
+ "epoch": 0.8736,
2735
+ "grad_norm": 0.08541391789913177,
2736
+ "learning_rate": 4.3284692826464025e-06,
2737
+ "loss": 0.4691716194152832,
2738
+ "mean_token_accuracy": 0.8512527458369732,
2739
+ "num_tokens": 147874335.0,
2740
+ "step": 2730
2741
+ },
2742
+ {
2743
+ "entropy": 0.4652485832571983,
2744
+ "epoch": 0.8768,
2745
+ "grad_norm": 0.07994713634252548,
2746
+ "learning_rate": 4.115632384364876e-06,
2747
+ "loss": 0.4703035831451416,
2748
+ "mean_token_accuracy": 0.8522162444889545,
2749
+ "num_tokens": 148416067.0,
2750
+ "step": 2740
2751
+ },
2752
+ {
2753
+ "entropy": 0.4409920936450362,
2754
+ "epoch": 0.88,
2755
+ "grad_norm": 0.080880306661129,
2756
+ "learning_rate": 3.907936309043752e-06,
2757
+ "loss": 0.4397623062133789,
2758
+ "mean_token_accuracy": 0.8596334785223008,
2759
+ "num_tokens": 148962585.0,
2760
+ "step": 2750
2761
+ },
2762
+ {
2763
+ "entropy": 0.4632509328424931,
2764
+ "epoch": 0.8832,
2765
+ "grad_norm": 0.08481155335903168,
2766
+ "learning_rate": 3.705404326672546e-06,
2767
+ "loss": 0.46387577056884766,
2768
+ "mean_token_accuracy": 0.8529495015740395,
2769
+ "num_tokens": 149504343.0,
2770
+ "step": 2760
2771
+ },
2772
+ {
2773
+ "entropy": 0.45417391285300257,
2774
+ "epoch": 0.8864,
2775
+ "grad_norm": 0.08323755860328674,
2776
+ "learning_rate": 3.5080591286626994e-06,
2777
+ "loss": 0.4597487926483154,
2778
+ "mean_token_accuracy": 0.854594460874796,
2779
+ "num_tokens": 150044863.0,
2780
+ "step": 2770
2781
+ },
2782
+ {
2783
+ "entropy": 0.4529740372672677,
2784
+ "epoch": 0.8896,
2785
+ "grad_norm": 0.08288435637950897,
2786
+ "learning_rate": 3.315922825305323e-06,
2787
+ "loss": 0.45327181816101075,
2788
+ "mean_token_accuracy": 0.8563416883349418,
2789
+ "num_tokens": 150578775.0,
2790
+ "step": 2780
2791
+ },
2792
+ {
2793
+ "entropy": 0.4761421289294958,
2794
+ "epoch": 0.8928,
2795
+ "grad_norm": 0.08802027255296707,
2796
+ "learning_rate": 3.1290169432939553e-06,
2797
+ "loss": 0.4763199806213379,
2798
+ "mean_token_accuracy": 0.8495484620332718,
2799
+ "num_tokens": 151109429.0,
2800
+ "step": 2790
2801
+ },
2802
+ {
2803
+ "entropy": 0.47611254937946795,
2804
+ "epoch": 0.896,
2805
+ "grad_norm": 0.0790930911898613,
2806
+ "learning_rate": 2.9473624233127497e-06,
2807
+ "loss": 0.4803468704223633,
2808
+ "mean_token_accuracy": 0.8489079758524894,
2809
+ "num_tokens": 151655289.0,
2810
+ "step": 2800
2811
+ },
2812
+ {
2813
+ "entropy": 0.4751625269651413,
2814
+ "epoch": 0.8992,
2815
+ "grad_norm": 0.0879993736743927,
2816
+ "learning_rate": 2.770979617690289e-06,
2817
+ "loss": 0.4718982219696045,
2818
+ "mean_token_accuracy": 0.850994748622179,
2819
+ "num_tokens": 152200128.0,
2820
+ "step": 2810
2821
+ },
2822
+ {
2823
+ "entropy": 0.4601206321269274,
2824
+ "epoch": 0.9024,
2825
+ "grad_norm": 0.08376693725585938,
2826
+ "learning_rate": 2.5998882881193954e-06,
2827
+ "loss": 0.4597844123840332,
2828
+ "mean_token_accuracy": 0.8535569846630097,
2829
+ "num_tokens": 152733954.0,
2830
+ "step": 2820
2831
+ },
2832
+ {
2833
+ "entropy": 0.4504482693970203,
2834
+ "epoch": 0.9056,
2835
+ "grad_norm": 0.08362895250320435,
2836
+ "learning_rate": 2.4341076034429587e-06,
2837
+ "loss": 0.4514331817626953,
2838
+ "mean_token_accuracy": 0.8559839025139808,
2839
+ "num_tokens": 153264534.0,
2840
+ "step": 2830
2841
+ },
2842
+ {
2843
+ "entropy": 0.4604618210345507,
2844
+ "epoch": 0.9088,
2845
+ "grad_norm": 0.08140548318624496,
2846
+ "learning_rate": 2.273656137506397e-06,
2847
+ "loss": 0.4624817371368408,
2848
+ "mean_token_accuracy": 0.8531782232224941,
2849
+ "num_tokens": 153810193.0,
2850
+ "step": 2840
2851
+ },
2852
+ {
2853
+ "entropy": 0.4675752319395542,
2854
+ "epoch": 0.912,
2855
+ "grad_norm": 0.08216649293899536,
2856
+ "learning_rate": 2.1185518670765903e-06,
2857
+ "loss": 0.47134923934936523,
2858
+ "mean_token_accuracy": 0.8514118038117886,
2859
+ "num_tokens": 154341314.0,
2860
+ "step": 2850
2861
+ },
2862
+ {
2863
+ "entropy": 0.4534553330391645,
2864
+ "epoch": 0.9152,
2865
+ "grad_norm": 0.0871286541223526,
2866
+ "learning_rate": 1.9688121698277995e-06,
2867
+ "loss": 0.45147104263305665,
2868
+ "mean_token_accuracy": 0.8560508869588375,
2869
+ "num_tokens": 154887467.0,
2870
+ "step": 2860
2871
+ },
2872
+ {
2873
+ "entropy": 0.4619016032665968,
2874
+ "epoch": 0.9184,
2875
+ "grad_norm": 0.08505194634199142,
2876
+ "learning_rate": 1.8244538223947227e-06,
2877
+ "loss": 0.464245080947876,
2878
+ "mean_token_accuracy": 0.8529387354850769,
2879
+ "num_tokens": 155425200.0,
2880
+ "step": 2870
2881
+ },
2882
+ {
2883
+ "entropy": 0.46694816537201406,
2884
+ "epoch": 0.9216,
2885
+ "grad_norm": 0.08090124279260635,
2886
+ "learning_rate": 1.6854929984928546e-06,
2887
+ "loss": 0.4668296813964844,
2888
+ "mean_token_accuracy": 0.8528281696140766,
2889
+ "num_tokens": 155966457.0,
2890
+ "step": 2880
2891
+ },
2892
+ {
2893
+ "entropy": 0.4619465067982674,
2894
+ "epoch": 0.9248,
2895
+ "grad_norm": 0.08461577445268631,
2896
+ "learning_rate": 1.5519452671063917e-06,
2897
+ "loss": 0.4609919548034668,
2898
+ "mean_token_accuracy": 0.8542857751250267,
2899
+ "num_tokens": 156505143.0,
2900
+ "step": 2890
2901
+ },
2902
+ {
2903
+ "entropy": 0.468216797336936,
2904
+ "epoch": 0.928,
2905
+ "grad_norm": 0.08594241738319397,
2906
+ "learning_rate": 1.423825590743888e-06,
2907
+ "loss": 0.4666452407836914,
2908
+ "mean_token_accuracy": 0.853216753154993,
2909
+ "num_tokens": 157061376.0,
2910
+ "step": 2900
2911
+ },
2912
+ {
2913
+ "entropy": 0.4693597674369812,
2914
+ "epoch": 0.9312,
2915
+ "grad_norm": 0.08410052210092545,
2916
+ "learning_rate": 1.3011483237619305e-06,
2917
+ "loss": 0.46759915351867676,
2918
+ "mean_token_accuracy": 0.8519282631576062,
2919
+ "num_tokens": 157594464.0,
2920
+ "step": 2910
2921
+ },
2922
+ {
2923
+ "entropy": 0.46422403417527675,
2924
+ "epoch": 0.9344,
2925
+ "grad_norm": 0.08244696259498596,
2926
+ "learning_rate": 1.1839272107568466e-06,
2927
+ "loss": 0.4629973411560059,
2928
+ "mean_token_accuracy": 0.8526307120919228,
2929
+ "num_tokens": 158131479.0,
2930
+ "step": 2920
2931
+ },
2932
+ {
2933
+ "entropy": 0.4626509569585323,
2934
+ "epoch": 0.9376,
2935
+ "grad_norm": 0.08002057671546936,
2936
+ "learning_rate": 1.0721753850247984e-06,
2937
+ "loss": 0.4618197441101074,
2938
+ "mean_token_accuracy": 0.8529696725308895,
2939
+ "num_tokens": 158675636.0,
2940
+ "step": 2930
2941
+ },
2942
+ {
2943
+ "entropy": 0.46270943246781826,
2944
+ "epoch": 0.9408,
2945
+ "grad_norm": 0.08056887239217758,
2946
+ "learning_rate": 9.659053670903583e-07,
2947
+ "loss": 0.46524944305419924,
2948
+ "mean_token_accuracy": 0.8522255882620812,
2949
+ "num_tokens": 159207544.0,
2950
+ "step": 2940
2951
+ },
2952
+ {
2953
+ "entropy": 0.4581955760717392,
2954
+ "epoch": 0.944,
2955
+ "grad_norm": 0.08471491187810898,
2956
+ "learning_rate": 8.651290633036768e-07,
2957
+ "loss": 0.46083908081054686,
2958
+ "mean_token_accuracy": 0.8546010799705982,
2959
+ "num_tokens": 159754829.0,
2960
+ "step": 2950
2961
+ },
2962
+ {
2963
+ "entropy": 0.4575455904006958,
2964
+ "epoch": 0.9472,
2965
+ "grad_norm": 0.07735498249530792,
2966
+ "learning_rate": 7.698577645065763e-07,
2967
+ "loss": 0.4579817771911621,
2968
+ "mean_token_accuracy": 0.8554122239351273,
2969
+ "num_tokens": 160309257.0,
2970
+ "step": 2960
2971
+ },
2972
+ {
2973
+ "entropy": 0.45687297359108925,
2974
+ "epoch": 0.9504,
2975
+ "grad_norm": 0.08392135053873062,
2976
+ "learning_rate": 6.801021447674971e-07,
2977
+ "loss": 0.4586464881896973,
2978
+ "mean_token_accuracy": 0.8538117773830891,
2979
+ "num_tokens": 160843007.0,
2980
+ "step": 2970
2981
+ },
2982
+ {
2983
+ "entropy": 0.45821645110845566,
2984
+ "epoch": 0.9536,
2985
+ "grad_norm": 0.08588553965091705,
2986
+ "learning_rate": 5.958722601856093e-07,
2987
+ "loss": 0.45988945960998534,
2988
+ "mean_token_accuracy": 0.8539286591112614,
2989
+ "num_tokens": 161388268.0,
2990
+ "step": 2980
2991
+ },
2992
+ {
2993
+ "entropy": 0.4608828775584698,
2994
+ "epoch": 0.9568,
2995
+ "grad_norm": 0.0871865451335907,
2996
+ "learning_rate": 5.171775477641139e-07,
2997
+ "loss": 0.46298632621765134,
2998
+ "mean_token_accuracy": 0.8532721899449826,
2999
+ "num_tokens": 161931208.0,
3000
+ "step": 2990
3001
+ },
3002
+ {
3003
+ "entropy": 0.4577631322667003,
3004
+ "epoch": 0.96,
3005
+ "grad_norm": 0.08455237746238708,
3006
+ "learning_rate": 4.4402682435296663e-07,
3007
+ "loss": 0.4582681179046631,
3008
+ "mean_token_accuracy": 0.8539157420396805,
3009
+ "num_tokens": 162482893.0,
3010
+ "step": 3000
3011
+ },
3012
+ {
3013
+ "entropy": 0.46698101833462713,
3014
+ "epoch": 0.9632,
3015
+ "grad_norm": 0.08095478266477585,
3016
+ "learning_rate": 3.7642828566104014e-07,
3017
+ "loss": 0.4648216724395752,
3018
+ "mean_token_accuracy": 0.8526224665343761,
3019
+ "num_tokens": 163035582.0,
3020
+ "step": 3010
3021
+ },
3022
+ {
3023
+ "entropy": 0.45926835350692274,
3024
+ "epoch": 0.9664,
3025
+ "grad_norm": 0.07997886836528778,
3026
+ "learning_rate": 3.143895053378698e-07,
3027
+ "loss": 0.46354007720947266,
3028
+ "mean_token_accuracy": 0.8539989247918129,
3029
+ "num_tokens": 163575065.0,
3030
+ "step": 3020
3031
+ },
3032
+ {
3033
+ "entropy": 0.46516573056578636,
3034
+ "epoch": 0.9696,
3035
+ "grad_norm": 0.08414747565984726,
3036
+ "learning_rate": 2.579174341251378e-07,
3037
+ "loss": 0.4646583080291748,
3038
+ "mean_token_accuracy": 0.8528312422335148,
3039
+ "num_tokens": 164110820.0,
3040
+ "step": 3030
3041
+ },
3042
+ {
3043
+ "entropy": 0.46528425142169,
3044
+ "epoch": 0.9728,
3045
+ "grad_norm": 0.07954436540603638,
3046
+ "learning_rate": 2.070183990779073e-07,
3047
+ "loss": 0.4692234039306641,
3048
+ "mean_token_accuracy": 0.8517439760267734,
3049
+ "num_tokens": 164646689.0,
3050
+ "step": 3040
3051
+ },
3052
+ {
3053
+ "entropy": 0.4535929933190346,
3054
+ "epoch": 0.976,
3055
+ "grad_norm": 0.07825275510549545,
3056
+ "learning_rate": 1.6169810285573406e-07,
3057
+ "loss": 0.4504249572753906,
3058
+ "mean_token_accuracy": 0.855993852764368,
3059
+ "num_tokens": 165211524.0,
3060
+ "step": 3050
3061
+ },
3062
+ {
3063
+ "entropy": 0.46400816589593885,
3064
+ "epoch": 0.9792,
3065
+ "grad_norm": 0.08895574510097504,
3066
+ "learning_rate": 1.219616230837939e-07,
3067
+ "loss": 0.46570405960083006,
3068
+ "mean_token_accuracy": 0.8532424159348011,
3069
+ "num_tokens": 165749501.0,
3070
+ "step": 3060
3071
+ },
3072
+ {
3073
+ "entropy": 0.47027173936367034,
3074
+ "epoch": 0.9824,
3075
+ "grad_norm": 0.0804954394698143,
3076
+ "learning_rate": 8.781341178393244e-08,
3077
+ "loss": 0.47028093338012694,
3078
+ "mean_token_accuracy": 0.8512769274413585,
3079
+ "num_tokens": 166291620.0,
3080
+ "step": 3070
3081
+ },
3082
+ {
3083
+ "entropy": 0.4440871596336365,
3084
+ "epoch": 0.9856,
3085
+ "grad_norm": 0.08392955362796783,
3086
+ "learning_rate": 5.925729487590847e-08,
3087
+ "loss": 0.4455129146575928,
3088
+ "mean_token_accuracy": 0.8584165126085281,
3089
+ "num_tokens": 166837045.0,
3090
+ "step": 3080
3091
+ },
3092
+ {
3093
+ "entropy": 0.46984327845275403,
3094
+ "epoch": 0.9888,
3095
+ "grad_norm": 0.08318781852722168,
3096
+ "learning_rate": 3.62964717487424e-08,
3097
+ "loss": 0.47353472709655764,
3098
+ "mean_token_accuracy": 0.8512238331139088,
3099
+ "num_tokens": 167386481.0,
3100
+ "step": 3090
3101
+ },
3102
+ {
3103
+ "entropy": 0.4673919454216957,
3104
+ "epoch": 0.992,
3105
+ "grad_norm": 0.0839017778635025,
3106
+ "learning_rate": 1.8933514902225167e-08,
3107
+ "loss": 0.46686429977416993,
3108
+ "mean_token_accuracy": 0.8511216603219509,
3109
+ "num_tokens": 167928926.0,
3110
+ "step": 3100
3111
+ },
3112
+ {
3113
+ "entropy": 0.46121672354638577,
3114
+ "epoch": 0.9952,
3115
+ "grad_norm": 0.08226187527179718,
3116
+ "learning_rate": 7.170369658748843e-09,
3117
+ "loss": 0.46160082817077636,
3118
+ "mean_token_accuracy": 0.8539618447422981,
3119
+ "num_tokens": 168485378.0,
3120
+ "step": 3110
3121
+ },
3122
+ {
3123
+ "entropy": 0.4504577457904816,
3124
+ "epoch": 0.9984,
3125
+ "grad_norm": 0.08203563094139099,
3126
+ "learning_rate": 1.0083539453142888e-09,
3127
+ "loss": 0.45265903472900393,
3128
+ "mean_token_accuracy": 0.8571697436273098,
3129
+ "num_tokens": 169031051.0,
3130
+ "step": 3120
3131
+ }
3132
+ ],
3133
+ "logging_steps": 10,
3134
+ "max_steps": 3125,
3135
+ "num_input_tokens_seen": 0,
3136
+ "num_train_epochs": 1,
3137
+ "save_steps": 500,
3138
+ "stateful_callbacks": {
3139
+ "TrainerControl": {
3140
+ "args": {
3141
+ "should_epoch_stop": false,
3142
+ "should_evaluate": false,
3143
+ "should_log": false,
3144
+ "should_save": true,
3145
+ "should_training_stop": true
3146
+ },
3147
+ "attributes": {}
3148
+ }
3149
+ },
3150
+ "total_flos": 4.416136156903637e+18,
3151
+ "train_batch_size": 2,
3152
+ "trial_name": null,
3153
+ "trial_params": null
3154
+ }
checkpoint-3125/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8583acc94d326a62088f75412e0942118ca66c71eede297a3417075363db5791
3
+ size 5841
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
3
+ size 11422650
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": "<|endoftext|>",
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:8583acc94d326a62088f75412e0942118ca66c71eede297a3417075363db5791
3
+ size 5841