modrill commited on
Commit
a72802b
·
verified ·
1 Parent(s): 2889a4c

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-256/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
- # qwen3_4b_probe_lingcoder_lora_1g
11
 
12
- Auto-uploaded by watcher.
 
13
 
14
- - Source path: `trl/models/qwen3-4b-probe-lingcoder-lora-1g`
15
- - Uploaded at: `2026-05-20T05:45:25.039370`
16
- - Visibility: `public`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Qwen/Qwen3-4B-Base
3
+ library_name: peft
4
+ model_name: qwen3-4b-probe-lingcoder-lora-1g
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-probe-lingcoder-lora-1g
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
+ "k_proj",
34
+ "o_proj",
35
+ "up_proj",
36
+ "gate_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_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:9e00bad0b82f58ffd38ca561f7b9cf14f419427c4322937e2a3f88df288688b2
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-256/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-256/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
+ "k_proj",
34
+ "o_proj",
35
+ "up_proj",
36
+ "gate_proj",
37
+ "q_proj",
38
+ "down_proj",
39
+ "v_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-256/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e00bad0b82f58ffd38ca561f7b9cf14f419427c4322937e2a3f88df288688b2
3
+ size 264308896
checkpoint-256/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-256/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7693c8d3dd390c89aaf4c619635f1dbcd2162bb99e58ff6718ddb792cd4e641
3
+ size 528915403
checkpoint-256/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90a7e42456cdc1b276a17850dd27e2e254c15b3e9404b7f14df06aee71e9c332
3
+ size 14709
checkpoint-256/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9796310e6c783b70334f842ffbcd2b6bad30a61ebe6dc7fd60aae80a8ddb82b
3
+ size 1465
checkpoint-256/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
3
+ size 11422650
checkpoint-256/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-256/trainer_state.json ADDED
@@ -0,0 +1,2594 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 256,
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.2590447962284088,
14
+ "epoch": 0.00390625,
15
+ "grad_norm": 0.7801761627197266,
16
+ "learning_rate": 0.0,
17
+ "loss": 0.2889120280742645,
18
+ "mean_token_accuracy": 0.9251968264579773,
19
+ "num_tokens": 614.0,
20
+ "step": 1
21
+ },
22
+ {
23
+ "entropy": 0.8471839427947998,
24
+ "epoch": 0.0078125,
25
+ "grad_norm": 1.0937414169311523,
26
+ "learning_rate": 7.692307692307694e-06,
27
+ "loss": 0.9662710428237915,
28
+ "mean_token_accuracy": 0.7279693484306335,
29
+ "num_tokens": 1246.0,
30
+ "step": 2
31
+ },
32
+ {
33
+ "entropy": 0.5400290489196777,
34
+ "epoch": 0.01171875,
35
+ "grad_norm": 0.5771386027336121,
36
+ "learning_rate": 1.5384615384615387e-05,
37
+ "loss": 0.6009750962257385,
38
+ "mean_token_accuracy": 0.8273224234580994,
39
+ "num_tokens": 2224.0,
40
+ "step": 3
41
+ },
42
+ {
43
+ "entropy": 0.5040320158004761,
44
+ "epoch": 0.015625,
45
+ "grad_norm": 0.5884291529655457,
46
+ "learning_rate": 2.307692307692308e-05,
47
+ "loss": 0.571037232875824,
48
+ "mean_token_accuracy": 0.8431817889213562,
49
+ "num_tokens": 3178.0,
50
+ "step": 4
51
+ },
52
+ {
53
+ "entropy": 0.7248499989509583,
54
+ "epoch": 0.01953125,
55
+ "grad_norm": 0.6174550652503967,
56
+ "learning_rate": 3.0769230769230774e-05,
57
+ "loss": 0.7390681505203247,
58
+ "mean_token_accuracy": 0.7871825695037842,
59
+ "num_tokens": 4063.0,
60
+ "step": 5
61
+ },
62
+ {
63
+ "entropy": 0.49000677466392517,
64
+ "epoch": 0.0234375,
65
+ "grad_norm": 0.6189038157463074,
66
+ "learning_rate": 3.846153846153846e-05,
67
+ "loss": 0.6010043621063232,
68
+ "mean_token_accuracy": 0.8243626356124878,
69
+ "num_tokens": 5183.0,
70
+ "step": 6
71
+ },
72
+ {
73
+ "entropy": 0.2592145800590515,
74
+ "epoch": 0.02734375,
75
+ "grad_norm": 0.4830591678619385,
76
+ "learning_rate": 4.615384615384616e-05,
77
+ "loss": 0.2511421740055084,
78
+ "mean_token_accuracy": 0.9138461351394653,
79
+ "num_tokens": 6572.0,
80
+ "step": 7
81
+ },
82
+ {
83
+ "entropy": 0.6752243638038635,
84
+ "epoch": 0.03125,
85
+ "grad_norm": 0.6484870314598083,
86
+ "learning_rate": 5.384615384615385e-05,
87
+ "loss": 0.7448326349258423,
88
+ "mean_token_accuracy": 0.7770800590515137,
89
+ "num_tokens": 7280.0,
90
+ "step": 8
91
+ },
92
+ {
93
+ "entropy": 0.44495999813079834,
94
+ "epoch": 0.03515625,
95
+ "grad_norm": 0.5341415405273438,
96
+ "learning_rate": 6.153846153846155e-05,
97
+ "loss": 0.517272412776947,
98
+ "mean_token_accuracy": 0.8297587037086487,
99
+ "num_tokens": 8114.0,
100
+ "step": 9
101
+ },
102
+ {
103
+ "entropy": 0.5511445999145508,
104
+ "epoch": 0.0390625,
105
+ "grad_norm": 0.5533967614173889,
106
+ "learning_rate": 6.923076923076924e-05,
107
+ "loss": 0.5668619871139526,
108
+ "mean_token_accuracy": 0.809568464756012,
109
+ "num_tokens": 9241.0,
110
+ "step": 10
111
+ },
112
+ {
113
+ "entropy": 0.5666453838348389,
114
+ "epoch": 0.04296875,
115
+ "grad_norm": 0.5970139503479004,
116
+ "learning_rate": 7.692307692307693e-05,
117
+ "loss": 0.5543555617332458,
118
+ "mean_token_accuracy": 0.8302631378173828,
119
+ "num_tokens": 10061.0,
120
+ "step": 11
121
+ },
122
+ {
123
+ "entropy": 0.6745113134384155,
124
+ "epoch": 0.046875,
125
+ "grad_norm": 0.7207919955253601,
126
+ "learning_rate": 8.461538461538461e-05,
127
+ "loss": 0.7640900611877441,
128
+ "mean_token_accuracy": 0.8009049892425537,
129
+ "num_tokens": 10774.0,
130
+ "step": 12
131
+ },
132
+ {
133
+ "entropy": 0.5185617804527283,
134
+ "epoch": 0.05078125,
135
+ "grad_norm": 0.5652928948402405,
136
+ "learning_rate": 9.230769230769232e-05,
137
+ "loss": 0.48071104288101196,
138
+ "mean_token_accuracy": 0.8530259132385254,
139
+ "num_tokens": 11515.0,
140
+ "step": 13
141
+ },
142
+ {
143
+ "entropy": 0.21858422458171844,
144
+ "epoch": 0.0546875,
145
+ "grad_norm": 0.5040489435195923,
146
+ "learning_rate": 0.0001,
147
+ "loss": 0.19600161910057068,
148
+ "mean_token_accuracy": 0.9303675293922424,
149
+ "num_tokens": 12415.0,
150
+ "step": 14
151
+ },
152
+ {
153
+ "entropy": 0.8073277473449707,
154
+ "epoch": 0.05859375,
155
+ "grad_norm": 0.7844629883766174,
156
+ "learning_rate": 9.999582149277187e-05,
157
+ "loss": 0.7193360328674316,
158
+ "mean_token_accuracy": 0.7882096171379089,
159
+ "num_tokens": 13173.0,
160
+ "step": 15
161
+ },
162
+ {
163
+ "entropy": 1.1454415321350098,
164
+ "epoch": 0.0625,
165
+ "grad_norm": 0.974055290222168,
166
+ "learning_rate": 9.998328666948438e-05,
167
+ "loss": 1.1323111057281494,
168
+ "mean_token_accuracy": 0.6666666865348816,
169
+ "num_tokens": 13920.0,
170
+ "step": 16
171
+ },
172
+ {
173
+ "entropy": 0.61671382188797,
174
+ "epoch": 0.06640625,
175
+ "grad_norm": 0.5854765772819519,
176
+ "learning_rate": 9.996239762521151e-05,
177
+ "loss": 0.5350141525268555,
178
+ "mean_token_accuracy": 0.8413524031639099,
179
+ "num_tokens": 14748.0,
180
+ "step": 17
181
+ },
182
+ {
183
+ "entropy": 0.7238249778747559,
184
+ "epoch": 0.0703125,
185
+ "grad_norm": 0.577200174331665,
186
+ "learning_rate": 9.993315785135416e-05,
187
+ "loss": 0.6484571695327759,
188
+ "mean_token_accuracy": 0.8147714138031006,
189
+ "num_tokens": 15659.0,
190
+ "step": 18
191
+ },
192
+ {
193
+ "entropy": 0.42435163259506226,
194
+ "epoch": 0.07421875,
195
+ "grad_norm": 0.7431618571281433,
196
+ "learning_rate": 9.989557223505661e-05,
197
+ "loss": 0.3732726573944092,
198
+ "mean_token_accuracy": 0.8780487775802612,
199
+ "num_tokens": 16469.0,
200
+ "step": 19
201
+ },
202
+ {
203
+ "entropy": 0.5280213356018066,
204
+ "epoch": 0.078125,
205
+ "grad_norm": 0.5703546404838562,
206
+ "learning_rate": 9.98496470583896e-05,
207
+ "loss": 0.47382473945617676,
208
+ "mean_token_accuracy": 0.8323615193367004,
209
+ "num_tokens": 17241.0,
210
+ "step": 20
211
+ },
212
+ {
213
+ "entropy": 0.2634253203868866,
214
+ "epoch": 0.08203125,
215
+ "grad_norm": 0.8636095523834229,
216
+ "learning_rate": 9.979538999730047e-05,
217
+ "loss": 0.2421087771654129,
218
+ "mean_token_accuracy": 0.9324324131011963,
219
+ "num_tokens": 17735.0,
220
+ "step": 21
221
+ },
222
+ {
223
+ "entropy": 0.7180085182189941,
224
+ "epoch": 0.0859375,
225
+ "grad_norm": 0.848982036113739,
226
+ "learning_rate": 9.973281012033007e-05,
227
+ "loss": 0.6361225247383118,
228
+ "mean_token_accuracy": 0.8064516186714172,
229
+ "num_tokens": 18390.0,
230
+ "step": 22
231
+ },
232
+ {
233
+ "entropy": 0.5791106224060059,
234
+ "epoch": 0.08984375,
235
+ "grad_norm": 0.5454062223434448,
236
+ "learning_rate": 9.966191788709716e-05,
237
+ "loss": 0.5845445394515991,
238
+ "mean_token_accuracy": 0.824435293674469,
239
+ "num_tokens": 19418.0,
240
+ "step": 23
241
+ },
242
+ {
243
+ "entropy": 0.4929169714450836,
244
+ "epoch": 0.09375,
245
+ "grad_norm": 0.5984290242195129,
246
+ "learning_rate": 9.958272514655006e-05,
247
+ "loss": 0.49152883887290955,
248
+ "mean_token_accuracy": 0.8545246124267578,
249
+ "num_tokens": 20349.0,
250
+ "step": 24
251
+ },
252
+ {
253
+ "entropy": 0.5289084315299988,
254
+ "epoch": 0.09765625,
255
+ "grad_norm": 0.597358763217926,
256
+ "learning_rate": 9.949524513498636e-05,
257
+ "loss": 0.5099250674247742,
258
+ "mean_token_accuracy": 0.8437103033065796,
259
+ "num_tokens": 21202.0,
260
+ "step": 25
261
+ },
262
+ {
263
+ "entropy": 0.43412598967552185,
264
+ "epoch": 0.1015625,
265
+ "grad_norm": 1.2732841968536377,
266
+ "learning_rate": 9.939949247384046e-05,
267
+ "loss": 0.49120208621025085,
268
+ "mean_token_accuracy": 0.8381295204162598,
269
+ "num_tokens": 21886.0,
270
+ "step": 26
271
+ },
272
+ {
273
+ "entropy": 0.3697093725204468,
274
+ "epoch": 0.10546875,
275
+ "grad_norm": 0.4351414144039154,
276
+ "learning_rate": 9.929548316723982e-05,
277
+ "loss": 0.4187180697917938,
278
+ "mean_token_accuracy": 0.8720238208770752,
279
+ "num_tokens": 22959.0,
280
+ "step": 27
281
+ },
282
+ {
283
+ "entropy": 0.5468494892120361,
284
+ "epoch": 0.109375,
285
+ "grad_norm": 0.7426009178161621,
286
+ "learning_rate": 9.918323459933005e-05,
287
+ "loss": 0.5927971601486206,
288
+ "mean_token_accuracy": 0.8241758346557617,
289
+ "num_tokens": 23648.0,
290
+ "step": 28
291
+ },
292
+ {
293
+ "entropy": 0.8542861342430115,
294
+ "epoch": 0.11328125,
295
+ "grad_norm": 1.2180156707763672,
296
+ "learning_rate": 9.906276553136923e-05,
297
+ "loss": 1.0376310348510742,
298
+ "mean_token_accuracy": 0.7510373592376709,
299
+ "num_tokens": 24228.0,
300
+ "step": 29
301
+ },
302
+ {
303
+ "entropy": 0.48639291524887085,
304
+ "epoch": 0.1171875,
305
+ "grad_norm": 0.5901576280593872,
306
+ "learning_rate": 9.893409609859222e-05,
307
+ "loss": 0.5231559872627258,
308
+ "mean_token_accuracy": 0.8418862819671631,
309
+ "num_tokens": 25005.0,
310
+ "step": 30
311
+ },
312
+ {
313
+ "entropy": 0.6086449027061462,
314
+ "epoch": 0.12109375,
315
+ "grad_norm": 0.5684905052185059,
316
+ "learning_rate": 9.879724780684519e-05,
317
+ "loss": 0.6100994944572449,
318
+ "mean_token_accuracy": 0.7975903749465942,
319
+ "num_tokens": 25945.0,
320
+ "step": 31
321
+ },
322
+ {
323
+ "entropy": 0.2810980975627899,
324
+ "epoch": 0.125,
325
+ "grad_norm": 0.8133203983306885,
326
+ "learning_rate": 9.865224352899119e-05,
327
+ "loss": 0.27467983961105347,
328
+ "mean_token_accuracy": 0.9043062329292297,
329
+ "num_tokens": 26524.0,
330
+ "step": 32
331
+ },
332
+ {
333
+ "entropy": 0.8997385501861572,
334
+ "epoch": 0.12890625,
335
+ "grad_norm": 0.7001259922981262,
336
+ "learning_rate": 9.849910750108717e-05,
337
+ "loss": 0.872958779335022,
338
+ "mean_token_accuracy": 0.75,
339
+ "num_tokens": 27339.0,
340
+ "step": 33
341
+ },
342
+ {
343
+ "entropy": 0.763770341873169,
344
+ "epoch": 0.1328125,
345
+ "grad_norm": 0.6955083012580872,
346
+ "learning_rate": 9.83378653183331e-05,
347
+ "loss": 0.8287037014961243,
348
+ "mean_token_accuracy": 0.7598253488540649,
349
+ "num_tokens": 28100.0,
350
+ "step": 34
351
+ },
352
+ {
353
+ "entropy": 0.3402330279350281,
354
+ "epoch": 0.13671875,
355
+ "grad_norm": 0.48411691188812256,
356
+ "learning_rate": 9.816854393079403e-05,
357
+ "loss": 0.36252474784851074,
358
+ "mean_token_accuracy": 0.8937259912490845,
359
+ "num_tokens": 28935.0,
360
+ "step": 35
361
+ },
362
+ {
363
+ "entropy": 0.29372096061706543,
364
+ "epoch": 0.140625,
365
+ "grad_norm": 0.6549316644668579,
366
+ "learning_rate": 9.799117163889559e-05,
367
+ "loss": 0.2963707745075226,
368
+ "mean_token_accuracy": 0.9077306985855103,
369
+ "num_tokens": 29714.0,
370
+ "step": 36
371
+ },
372
+ {
373
+ "entropy": 0.4241790473461151,
374
+ "epoch": 0.14453125,
375
+ "grad_norm": 0.7347589731216431,
376
+ "learning_rate": 9.780577808869398e-05,
377
+ "loss": 0.5015050172805786,
378
+ "mean_token_accuracy": 0.8459529876708984,
379
+ "num_tokens": 30523.0,
380
+ "step": 37
381
+ },
382
+ {
383
+ "entropy": 0.28753387928009033,
384
+ "epoch": 0.1484375,
385
+ "grad_norm": 0.719067394733429,
386
+ "learning_rate": 9.761239426692077e-05,
387
+ "loss": 0.2576276361942291,
388
+ "mean_token_accuracy": 0.9147540926933289,
389
+ "num_tokens": 31208.0,
390
+ "step": 38
391
+ },
392
+ {
393
+ "entropy": 0.475173681974411,
394
+ "epoch": 0.15234375,
395
+ "grad_norm": 1.1069060564041138,
396
+ "learning_rate": 9.741105249580383e-05,
397
+ "loss": 0.4583543539047241,
398
+ "mean_token_accuracy": 0.8554216623306274,
399
+ "num_tokens": 31761.0,
400
+ "step": 39
401
+ },
402
+ {
403
+ "entropy": 0.2746836841106415,
404
+ "epoch": 0.15625,
405
+ "grad_norm": 0.8300859332084656,
406
+ "learning_rate": 9.7201786427665e-05,
407
+ "loss": 0.2247270941734314,
408
+ "mean_token_accuracy": 0.9043062329292297,
409
+ "num_tokens": 32326.0,
410
+ "step": 40
411
+ },
412
+ {
413
+ "entropy": 0.5290616154670715,
414
+ "epoch": 0.16015625,
415
+ "grad_norm": 0.5069507956504822,
416
+ "learning_rate": 9.698463103929542e-05,
417
+ "loss": 0.4967139661312103,
418
+ "mean_token_accuracy": 0.8347305655479431,
419
+ "num_tokens": 33237.0,
420
+ "step": 41
421
+ },
422
+ {
423
+ "entropy": 0.17607364058494568,
424
+ "epoch": 0.1640625,
425
+ "grad_norm": 0.8130342364311218,
426
+ "learning_rate": 9.67596226261095e-05,
427
+ "loss": 0.18348810076713562,
428
+ "mean_token_accuracy": 0.9281437397003174,
429
+ "num_tokens": 33765.0,
430
+ "step": 42
431
+ },
432
+ {
433
+ "entropy": 0.9480698704719543,
434
+ "epoch": 0.16796875,
435
+ "grad_norm": 0.8172163963317871,
436
+ "learning_rate": 9.652679879607843e-05,
437
+ "loss": 0.9325052499771118,
438
+ "mean_token_accuracy": 0.7251114249229431,
439
+ "num_tokens": 34498.0,
440
+ "step": 43
441
+ },
442
+ {
443
+ "entropy": 0.4078804850578308,
444
+ "epoch": 0.171875,
445
+ "grad_norm": 0.7695475816726685,
446
+ "learning_rate": 9.628619846344454e-05,
447
+ "loss": 0.32897821068763733,
448
+ "mean_token_accuracy": 0.8977035284042358,
449
+ "num_tokens": 35059.0,
450
+ "step": 44
451
+ },
452
+ {
453
+ "entropy": 0.6567792296409607,
454
+ "epoch": 0.17578125,
455
+ "grad_norm": 0.6577677726745605,
456
+ "learning_rate": 9.603786184221693e-05,
457
+ "loss": 0.6604552268981934,
458
+ "mean_token_accuracy": 0.7876712083816528,
459
+ "num_tokens": 35718.0,
460
+ "step": 45
461
+ },
462
+ {
463
+ "entropy": 0.5705280900001526,
464
+ "epoch": 0.1796875,
465
+ "grad_norm": 0.5337263941764832,
466
+ "learning_rate": 9.57818304394503e-05,
467
+ "loss": 0.5775972604751587,
468
+ "mean_token_accuracy": 0.8275400996208191,
469
+ "num_tokens": 36508.0,
470
+ "step": 46
471
+ },
472
+ {
473
+ "entropy": 0.4061397612094879,
474
+ "epoch": 0.18359375,
475
+ "grad_norm": 0.6210362315177917,
476
+ "learning_rate": 9.551814704830734e-05,
477
+ "loss": 0.30573710799217224,
478
+ "mean_token_accuracy": 0.8992481231689453,
479
+ "num_tokens": 37606.0,
480
+ "step": 47
481
+ },
482
+ {
483
+ "entropy": 0.7427402138710022,
484
+ "epoch": 0.1875,
485
+ "grad_norm": 0.6562739610671997,
486
+ "learning_rate": 9.524685574090627e-05,
487
+ "loss": 0.8000867366790771,
488
+ "mean_token_accuracy": 0.7481698393821716,
489
+ "num_tokens": 38352.0,
490
+ "step": 48
491
+ },
492
+ {
493
+ "entropy": 0.5252540707588196,
494
+ "epoch": 0.19140625,
495
+ "grad_norm": 1.1183611154556274,
496
+ "learning_rate": 9.496800186095466e-05,
497
+ "loss": 0.5875065326690674,
498
+ "mean_token_accuracy": 0.8088235259056091,
499
+ "num_tokens": 38923.0,
500
+ "step": 49
501
+ },
502
+ {
503
+ "entropy": 0.15077699720859528,
504
+ "epoch": 0.1953125,
505
+ "grad_norm": 0.5114659070968628,
506
+ "learning_rate": 9.468163201617062e-05,
507
+ "loss": 0.1495133340358734,
508
+ "mean_token_accuracy": 0.9547738432884216,
509
+ "num_tokens": 39700.0,
510
+ "step": 50
511
+ },
512
+ {
513
+ "entropy": 0.5502139329910278,
514
+ "epoch": 0.19921875,
515
+ "grad_norm": 0.7144715785980225,
516
+ "learning_rate": 9.438779407049281e-05,
517
+ "loss": 0.5862892866134644,
518
+ "mean_token_accuracy": 0.8315789699554443,
519
+ "num_tokens": 40419.0,
520
+ "step": 51
521
+ },
522
+ {
523
+ "entropy": 0.48560580611228943,
524
+ "epoch": 0.203125,
525
+ "grad_norm": 0.513193666934967,
526
+ "learning_rate": 9.40865371360804e-05,
527
+ "loss": 0.47880712151527405,
528
+ "mean_token_accuracy": 0.8279411792755127,
529
+ "num_tokens": 41202.0,
530
+ "step": 52
531
+ },
532
+ {
533
+ "entropy": 0.33771631121635437,
534
+ "epoch": 0.20703125,
535
+ "grad_norm": 0.5135825872421265,
536
+ "learning_rate": 9.377791156510455e-05,
537
+ "loss": 0.28588980436325073,
538
+ "mean_token_accuracy": 0.9021447896957397,
539
+ "num_tokens": 42455.0,
540
+ "step": 53
541
+ },
542
+ {
543
+ "entropy": 0.6165871024131775,
544
+ "epoch": 0.2109375,
545
+ "grad_norm": 0.48555585741996765,
546
+ "learning_rate": 9.346196894133239e-05,
547
+ "loss": 0.6004568338394165,
548
+ "mean_token_accuracy": 0.8091286420822144,
549
+ "num_tokens": 43493.0,
550
+ "step": 54
551
+ },
552
+ {
553
+ "entropy": 0.7081799507141113,
554
+ "epoch": 0.21484375,
555
+ "grad_norm": 1.0581609010696411,
556
+ "learning_rate": 9.313876207150543e-05,
557
+ "loss": 0.8294097185134888,
558
+ "mean_token_accuracy": 0.78925621509552,
559
+ "num_tokens": 44125.0,
560
+ "step": 55
561
+ },
562
+ {
563
+ "entropy": 0.45999354124069214,
564
+ "epoch": 0.21875,
565
+ "grad_norm": 0.4506646394729614,
566
+ "learning_rate": 9.280834497651334e-05,
567
+ "loss": 0.5012324452400208,
568
+ "mean_token_accuracy": 0.8410757780075073,
569
+ "num_tokens": 44991.0,
570
+ "step": 56
571
+ },
572
+ {
573
+ "entropy": 0.5937639474868774,
574
+ "epoch": 0.22265625,
575
+ "grad_norm": 0.54532790184021,
576
+ "learning_rate": 9.247077288236488e-05,
577
+ "loss": 0.6704734563827515,
578
+ "mean_token_accuracy": 0.8050089478492737,
579
+ "num_tokens": 45861.0,
580
+ "step": 57
581
+ },
582
+ {
583
+ "entropy": 0.6354159712791443,
584
+ "epoch": 0.2265625,
585
+ "grad_norm": 0.4860483705997467,
586
+ "learning_rate": 9.212610221095748e-05,
587
+ "loss": 0.6274347305297852,
588
+ "mean_token_accuracy": 0.8134490251541138,
589
+ "num_tokens": 46838.0,
590
+ "step": 58
591
+ },
592
+ {
593
+ "entropy": 0.5907365679740906,
594
+ "epoch": 0.23046875,
595
+ "grad_norm": 0.6250556707382202,
596
+ "learning_rate": 9.177439057064683e-05,
597
+ "loss": 0.6647694706916809,
598
+ "mean_token_accuracy": 0.7956834435462952,
599
+ "num_tokens": 47622.0,
600
+ "step": 59
601
+ },
602
+ {
603
+ "entropy": 0.49545010924339294,
604
+ "epoch": 0.234375,
605
+ "grad_norm": 0.50145423412323,
606
+ "learning_rate": 9.141569674661817e-05,
607
+ "loss": 0.5231200456619263,
608
+ "mean_token_accuracy": 0.8244473338127136,
609
+ "num_tokens": 48454.0,
610
+ "step": 60
611
+ },
612
+ {
613
+ "entropy": 0.6162831783294678,
614
+ "epoch": 0.23828125,
615
+ "grad_norm": 0.4918208420276642,
616
+ "learning_rate": 9.105008069106093e-05,
617
+ "loss": 0.6733858585357666,
618
+ "mean_token_accuracy": 0.8091286420822144,
619
+ "num_tokens": 49253.0,
620
+ "step": 61
621
+ },
622
+ {
623
+ "entropy": 0.05496763810515404,
624
+ "epoch": 0.2421875,
625
+ "grad_norm": 1.3541446924209595,
626
+ "learning_rate": 9.067760351314838e-05,
627
+ "loss": 0.10028333216905594,
628
+ "mean_token_accuracy": 0.9659090638160706,
629
+ "num_tokens": 49514.0,
630
+ "step": 62
631
+ },
632
+ {
633
+ "entropy": 0.5858029723167419,
634
+ "epoch": 0.24609375,
635
+ "grad_norm": 0.41623160243034363,
636
+ "learning_rate": 9.029832746882371e-05,
637
+ "loss": 0.6132221221923828,
638
+ "mean_token_accuracy": 0.820853054523468,
639
+ "num_tokens": 50637.0,
640
+ "step": 63
641
+ },
642
+ {
643
+ "entropy": 0.11868977546691895,
644
+ "epoch": 0.25,
645
+ "grad_norm": 0.5636643171310425,
646
+ "learning_rate": 8.991231595039465e-05,
647
+ "loss": 0.0864829421043396,
648
+ "mean_token_accuracy": 0.9688888788223267,
649
+ "num_tokens": 51241.0,
650
+ "step": 64
651
+ },
652
+ {
653
+ "entropy": 0.5117590427398682,
654
+ "epoch": 0.25390625,
655
+ "grad_norm": 0.6280642747879028,
656
+ "learning_rate": 8.951963347593797e-05,
657
+ "loss": 0.38439318537712097,
658
+ "mean_token_accuracy": 0.8670520186424255,
659
+ "num_tokens": 52015.0,
660
+ "step": 65
661
+ },
662
+ {
663
+ "entropy": 0.5181878209114075,
664
+ "epoch": 0.2578125,
665
+ "grad_norm": 0.9919320940971375,
666
+ "learning_rate": 8.912034567851599e-05,
667
+ "loss": 0.5401250720024109,
668
+ "mean_token_accuracy": 0.7982062697410583,
669
+ "num_tokens": 52616.0,
670
+ "step": 66
671
+ },
672
+ {
673
+ "entropy": 0.23600083589553833,
674
+ "epoch": 0.26171875,
675
+ "grad_norm": 0.6863732933998108,
676
+ "learning_rate": 8.871451929520663e-05,
677
+ "loss": 0.25889232754707336,
678
+ "mean_token_accuracy": 0.9220778942108154,
679
+ "num_tokens": 53327.0,
680
+ "step": 67
681
+ },
682
+ {
683
+ "entropy": 0.47514960169792175,
684
+ "epoch": 0.265625,
685
+ "grad_norm": 0.708480715751648,
686
+ "learning_rate": 8.83022221559489e-05,
687
+ "loss": 0.46035659313201904,
688
+ "mean_token_accuracy": 0.8456140160560608,
689
+ "num_tokens": 54106.0,
690
+ "step": 68
691
+ },
692
+ {
693
+ "entropy": 0.1594257950782776,
694
+ "epoch": 0.26953125,
695
+ "grad_norm": 0.7160263061523438,
696
+ "learning_rate": 8.78835231722059e-05,
697
+ "loss": 0.15633094310760498,
698
+ "mean_token_accuracy": 0.9552238583564758,
699
+ "num_tokens": 54663.0,
700
+ "step": 69
701
+ },
702
+ {
703
+ "entropy": 0.3020382523536682,
704
+ "epoch": 0.2734375,
705
+ "grad_norm": 0.6970436573028564,
706
+ "learning_rate": 8.745849232544681e-05,
707
+ "loss": 0.29399704933166504,
708
+ "mean_token_accuracy": 0.882539689540863,
709
+ "num_tokens": 55493.0,
710
+ "step": 70
711
+ },
712
+ {
713
+ "entropy": 0.5089768767356873,
714
+ "epoch": 0.27734375,
715
+ "grad_norm": 0.3825555145740509,
716
+ "learning_rate": 8.702720065545024e-05,
717
+ "loss": 0.4680228531360626,
718
+ "mean_token_accuracy": 0.8552875518798828,
719
+ "num_tokens": 56629.0,
720
+ "step": 71
721
+ },
722
+ {
723
+ "entropy": 1.1572331190109253,
724
+ "epoch": 0.28125,
725
+ "grad_norm": 0.7397168874740601,
726
+ "learning_rate": 8.658972024843062e-05,
727
+ "loss": 1.1789411306381226,
728
+ "mean_token_accuracy": 0.6794354915618896,
729
+ "num_tokens": 57563.0,
730
+ "step": 72
731
+ },
732
+ {
733
+ "entropy": 0.32222115993499756,
734
+ "epoch": 0.28515625,
735
+ "grad_norm": 0.5344856977462769,
736
+ "learning_rate": 8.614612422498964e-05,
737
+ "loss": 0.3255745768547058,
738
+ "mean_token_accuracy": 0.8844155669212341,
739
+ "num_tokens": 58670.0,
740
+ "step": 73
741
+ },
742
+ {
743
+ "entropy": 0.4632827937602997,
744
+ "epoch": 0.2890625,
745
+ "grad_norm": 0.5455396771430969,
746
+ "learning_rate": 8.569648672789497e-05,
747
+ "loss": 0.4700681269168854,
748
+ "mean_token_accuracy": 0.840228259563446,
749
+ "num_tokens": 59428.0,
750
+ "step": 74
751
+ },
752
+ {
753
+ "entropy": 0.1857202798128128,
754
+ "epoch": 0.29296875,
755
+ "grad_norm": 0.5769023895263672,
756
+ "learning_rate": 8.524088290968781e-05,
757
+ "loss": 0.19467991590499878,
758
+ "mean_token_accuracy": 0.9217687249183655,
759
+ "num_tokens": 60095.0,
760
+ "step": 75
761
+ },
762
+ {
763
+ "entropy": 0.3141404986381531,
764
+ "epoch": 0.296875,
765
+ "grad_norm": 0.29498976469039917,
766
+ "learning_rate": 8.47793889201221e-05,
767
+ "loss": 0.31678324937820435,
768
+ "mean_token_accuracy": 0.9121830463409424,
769
+ "num_tokens": 61765.0,
770
+ "step": 76
771
+ },
772
+ {
773
+ "entropy": 0.2404460608959198,
774
+ "epoch": 0.30078125,
775
+ "grad_norm": 0.4017998278141022,
776
+ "learning_rate": 8.43120818934367e-05,
777
+ "loss": 0.23486091196537018,
778
+ "mean_token_accuracy": 0.9183841943740845,
779
+ "num_tokens": 63570.0,
780
+ "step": 77
781
+ },
782
+ {
783
+ "entropy": 0.5518016219139099,
784
+ "epoch": 0.3046875,
785
+ "grad_norm": 0.49208730459213257,
786
+ "learning_rate": 8.383903993546311e-05,
787
+ "loss": 0.6085214018821716,
788
+ "mean_token_accuracy": 0.8143872022628784,
789
+ "num_tokens": 64765.0,
790
+ "step": 78
791
+ },
792
+ {
793
+ "entropy": 0.18448811769485474,
794
+ "epoch": 0.30859375,
795
+ "grad_norm": 0.37179243564605713,
796
+ "learning_rate": 8.336034211057098e-05,
797
+ "loss": 0.14006929099559784,
798
+ "mean_token_accuracy": 0.9479553699493408,
799
+ "num_tokens": 65685.0,
800
+ "step": 79
801
+ },
802
+ {
803
+ "entropy": 0.42918166518211365,
804
+ "epoch": 0.3125,
805
+ "grad_norm": 0.442133367061615,
806
+ "learning_rate": 8.28760684284532e-05,
807
+ "loss": 0.4223015606403351,
808
+ "mean_token_accuracy": 0.8700494766235352,
809
+ "num_tokens": 66558.0,
810
+ "step": 80
811
+ },
812
+ {
813
+ "entropy": 0.5193983912467957,
814
+ "epoch": 0.31640625,
815
+ "grad_norm": 0.7973830103874207,
816
+ "learning_rate": 8.238629983075294e-05,
817
+ "loss": 0.5227593183517456,
818
+ "mean_token_accuracy": 0.8419753313064575,
819
+ "num_tokens": 67021.0,
820
+ "step": 81
821
+ },
822
+ {
823
+ "entropy": 0.6162667274475098,
824
+ "epoch": 0.3203125,
825
+ "grad_norm": 0.3803671896457672,
826
+ "learning_rate": 8.18911181775353e-05,
827
+ "loss": 0.5831434726715088,
828
+ "mean_token_accuracy": 0.8372319936752319,
829
+ "num_tokens": 68815.0,
830
+ "step": 82
831
+ },
832
+ {
833
+ "entropy": 0.5226625800132751,
834
+ "epoch": 0.32421875,
835
+ "grad_norm": 0.6740264892578125,
836
+ "learning_rate": 8.139060623360493e-05,
837
+ "loss": 0.5770704746246338,
838
+ "mean_token_accuracy": 0.8193717002868652,
839
+ "num_tokens": 69250.0,
840
+ "step": 83
841
+ },
842
+ {
843
+ "entropy": 0.2120583951473236,
844
+ "epoch": 0.328125,
845
+ "grad_norm": 0.3773080110549927,
846
+ "learning_rate": 8.088484765467286e-05,
847
+ "loss": 0.17072270810604095,
848
+ "mean_token_accuracy": 0.9328436255455017,
849
+ "num_tokens": 70269.0,
850
+ "step": 84
851
+ },
852
+ {
853
+ "entropy": 0.5727735757827759,
854
+ "epoch": 0.33203125,
855
+ "grad_norm": 0.47534501552581787,
856
+ "learning_rate": 8.037392697337418e-05,
857
+ "loss": 0.6191591024398804,
858
+ "mean_token_accuracy": 0.8163265585899353,
859
+ "num_tokens": 71812.0,
860
+ "step": 85
861
+ },
862
+ {
863
+ "entropy": 0.5548444390296936,
864
+ "epoch": 0.3359375,
865
+ "grad_norm": 0.33695611357688904,
866
+ "learning_rate": 7.985792958513931e-05,
867
+ "loss": 0.6584370136260986,
868
+ "mean_token_accuracy": 0.8497409224510193,
869
+ "num_tokens": 73860.0,
870
+ "step": 86
871
+ },
872
+ {
873
+ "entropy": 0.5205814242362976,
874
+ "epoch": 0.33984375,
875
+ "grad_norm": 1.0107587575912476,
876
+ "learning_rate": 7.93369417339209e-05,
877
+ "loss": 0.5680365562438965,
878
+ "mean_token_accuracy": 0.8446969985961914,
879
+ "num_tokens": 74494.0,
880
+ "step": 87
881
+ },
882
+ {
883
+ "entropy": 0.480228990316391,
884
+ "epoch": 0.34375,
885
+ "grad_norm": 0.604826807975769,
886
+ "learning_rate": 7.881105049777901e-05,
887
+ "loss": 0.428594172000885,
888
+ "mean_token_accuracy": 0.8599476218223572,
889
+ "num_tokens": 75328.0,
890
+ "step": 88
891
+ },
892
+ {
893
+ "entropy": 0.5686553120613098,
894
+ "epoch": 0.34765625,
895
+ "grad_norm": 0.5422868728637695,
896
+ "learning_rate": 7.828034377432693e-05,
897
+ "loss": 0.5080078840255737,
898
+ "mean_token_accuracy": 0.8353344798088074,
899
+ "num_tokens": 75984.0,
900
+ "step": 89
901
+ },
902
+ {
903
+ "entropy": 0.41963568329811096,
904
+ "epoch": 0.3515625,
905
+ "grad_norm": 0.3786294460296631,
906
+ "learning_rate": 7.774491026603985e-05,
907
+ "loss": 0.3882997930049896,
908
+ "mean_token_accuracy": 0.8694127798080444,
909
+ "num_tokens": 77201.0,
910
+ "step": 90
911
+ },
912
+ {
913
+ "entropy": 0.8213188648223877,
914
+ "epoch": 0.35546875,
915
+ "grad_norm": 0.5294942855834961,
916
+ "learning_rate": 7.720483946542914e-05,
917
+ "loss": 0.8224100470542908,
918
+ "mean_token_accuracy": 0.76325523853302,
919
+ "num_tokens": 78072.0,
920
+ "step": 91
921
+ },
922
+ {
923
+ "entropy": 0.35614386200904846,
924
+ "epoch": 0.359375,
925
+ "grad_norm": 0.5392538905143738,
926
+ "learning_rate": 7.666022164008457e-05,
927
+ "loss": 0.2930217683315277,
928
+ "mean_token_accuracy": 0.8999999761581421,
929
+ "num_tokens": 79347.0,
930
+ "step": 92
931
+ },
932
+ {
933
+ "entropy": 0.38908302783966064,
934
+ "epoch": 0.36328125,
935
+ "grad_norm": 0.7368007302284241,
936
+ "learning_rate": 7.611114781758692e-05,
937
+ "loss": 0.4357201159000397,
938
+ "mean_token_accuracy": 0.8640483617782593,
939
+ "num_tokens": 80066.0,
940
+ "step": 93
941
+ },
942
+ {
943
+ "entropy": 0.4956449568271637,
944
+ "epoch": 0.3671875,
945
+ "grad_norm": 0.5707206130027771,
946
+ "learning_rate": 7.555770977029367e-05,
947
+ "loss": 0.5065670013427734,
948
+ "mean_token_accuracy": 0.8519313335418701,
949
+ "num_tokens": 80697.0,
950
+ "step": 94
951
+ },
952
+ {
953
+ "entropy": 0.5943759083747864,
954
+ "epoch": 0.37109375,
955
+ "grad_norm": 0.7254245281219482,
956
+ "learning_rate": 7.500000000000001e-05,
957
+ "loss": 0.6552464365959167,
958
+ "mean_token_accuracy": 0.7767584323883057,
959
+ "num_tokens": 81336.0,
960
+ "step": 95
961
+ },
962
+ {
963
+ "entropy": 0.532646894454956,
964
+ "epoch": 0.375,
965
+ "grad_norm": 0.5899369120597839,
966
+ "learning_rate": 7.443811172247821e-05,
967
+ "loss": 0.4484238624572754,
968
+ "mean_token_accuracy": 0.8579465746879578,
969
+ "num_tokens": 82184.0,
970
+ "step": 96
971
+ },
972
+ {
973
+ "entropy": 0.5296929478645325,
974
+ "epoch": 0.37890625,
975
+ "grad_norm": 0.5489293336868286,
976
+ "learning_rate": 7.387213885189746e-05,
977
+ "loss": 0.5374542474746704,
978
+ "mean_token_accuracy": 0.8023715615272522,
979
+ "num_tokens": 82759.0,
980
+ "step": 97
981
+ },
982
+ {
983
+ "entropy": 0.1481165885925293,
984
+ "epoch": 0.3828125,
985
+ "grad_norm": 0.31081852316856384,
986
+ "learning_rate": 7.330217598512695e-05,
987
+ "loss": 0.14701320230960846,
988
+ "mean_token_accuracy": 0.9493827223777771,
989
+ "num_tokens": 83934.0,
990
+ "step": 98
991
+ },
992
+ {
993
+ "entropy": 0.9935259222984314,
994
+ "epoch": 0.38671875,
995
+ "grad_norm": 0.6228557229042053,
996
+ "learning_rate": 7.272831838592503e-05,
997
+ "loss": 1.0415065288543701,
998
+ "mean_token_accuracy": 0.7242603302001953,
999
+ "num_tokens": 84835.0,
1000
+ "step": 99
1001
+ },
1002
+ {
1003
+ "entropy": 0.24420775473117828,
1004
+ "epoch": 0.390625,
1005
+ "grad_norm": 0.38697612285614014,
1006
+ "learning_rate": 7.215066196901676e-05,
1007
+ "loss": 0.2529013454914093,
1008
+ "mean_token_accuracy": 0.9107373952865601,
1009
+ "num_tokens": 86058.0,
1010
+ "step": 100
1011
+ },
1012
+ {
1013
+ "entropy": 0.2862064242362976,
1014
+ "epoch": 0.39453125,
1015
+ "grad_norm": 0.4424213767051697,
1016
+ "learning_rate": 7.156930328406268e-05,
1017
+ "loss": 0.23783738911151886,
1018
+ "mean_token_accuracy": 0.9170854091644287,
1019
+ "num_tokens": 86927.0,
1020
+ "step": 101
1021
+ },
1022
+ {
1023
+ "entropy": 0.2807987332344055,
1024
+ "epoch": 0.3984375,
1025
+ "grad_norm": 0.770887553691864,
1026
+ "learning_rate": 7.098433949952146e-05,
1027
+ "loss": 0.3131881356239319,
1028
+ "mean_token_accuracy": 0.8866396546363831,
1029
+ "num_tokens": 87579.0,
1030
+ "step": 102
1031
+ },
1032
+ {
1033
+ "entropy": 0.41032883524894714,
1034
+ "epoch": 0.40234375,
1035
+ "grad_norm": 0.5959399938583374,
1036
+ "learning_rate": 7.039586838640919e-05,
1037
+ "loss": 0.46824127435684204,
1038
+ "mean_token_accuracy": 0.8435373902320862,
1039
+ "num_tokens": 88376.0,
1040
+ "step": 103
1041
+ },
1042
+ {
1043
+ "entropy": 0.32393795251846313,
1044
+ "epoch": 0.40625,
1045
+ "grad_norm": 0.5406798720359802,
1046
+ "learning_rate": 6.980398830195785e-05,
1047
+ "loss": 0.34825822710990906,
1048
+ "mean_token_accuracy": 0.8803301453590393,
1049
+ "num_tokens": 89642.0,
1050
+ "step": 104
1051
+ },
1052
+ {
1053
+ "entropy": 0.47948575019836426,
1054
+ "epoch": 0.41015625,
1055
+ "grad_norm": 0.5012584924697876,
1056
+ "learning_rate": 6.920879817317589e-05,
1057
+ "loss": 0.5121287107467651,
1058
+ "mean_token_accuracy": 0.8364388942718506,
1059
+ "num_tokens": 90687.0,
1060
+ "step": 105
1061
+ },
1062
+ {
1063
+ "entropy": 0.22555242478847504,
1064
+ "epoch": 0.4140625,
1065
+ "grad_norm": 0.4911995232105255,
1066
+ "learning_rate": 6.861039748031351e-05,
1067
+ "loss": 0.2424127608537674,
1068
+ "mean_token_accuracy": 0.9094339609146118,
1069
+ "num_tokens": 91785.0,
1070
+ "step": 106
1071
+ },
1072
+ {
1073
+ "entropy": 0.6763952970504761,
1074
+ "epoch": 0.41796875,
1075
+ "grad_norm": 0.75534987449646,
1076
+ "learning_rate": 6.800888624023553e-05,
1077
+ "loss": 0.6895910501480103,
1078
+ "mean_token_accuracy": 0.7877984046936035,
1079
+ "num_tokens": 92534.0,
1080
+ "step": 107
1081
+ },
1082
+ {
1083
+ "entropy": 0.2540339231491089,
1084
+ "epoch": 0.421875,
1085
+ "grad_norm": 0.4766096770763397,
1086
+ "learning_rate": 6.740436498970452e-05,
1087
+ "loss": 0.24226245284080505,
1088
+ "mean_token_accuracy": 0.9155405163764954,
1089
+ "num_tokens": 93241.0,
1090
+ "step": 108
1091
+ },
1092
+ {
1093
+ "entropy": 0.3385879397392273,
1094
+ "epoch": 0.42578125,
1095
+ "grad_norm": 0.5595477819442749,
1096
+ "learning_rate": 6.679693476857711e-05,
1097
+ "loss": 0.2845480144023895,
1098
+ "mean_token_accuracy": 0.8961864113807678,
1099
+ "num_tokens": 93793.0,
1100
+ "step": 109
1101
+ },
1102
+ {
1103
+ "entropy": 0.49887916445732117,
1104
+ "epoch": 0.4296875,
1105
+ "grad_norm": 0.5290985703468323,
1106
+ "learning_rate": 6.618669710291606e-05,
1107
+ "loss": 0.5168520212173462,
1108
+ "mean_token_accuracy": 0.8165869116783142,
1109
+ "num_tokens": 94471.0,
1110
+ "step": 110
1111
+ },
1112
+ {
1113
+ "entropy": 0.38629135489463806,
1114
+ "epoch": 0.43359375,
1115
+ "grad_norm": 0.36983832716941833,
1116
+ "learning_rate": 6.557375398802123e-05,
1117
+ "loss": 0.40279698371887207,
1118
+ "mean_token_accuracy": 0.8754246830940247,
1119
+ "num_tokens": 95441.0,
1120
+ "step": 111
1121
+ },
1122
+ {
1123
+ "entropy": 0.5321238040924072,
1124
+ "epoch": 0.4375,
1125
+ "grad_norm": 0.39806121587753296,
1126
+ "learning_rate": 6.495820787138209e-05,
1127
+ "loss": 0.5178214907646179,
1128
+ "mean_token_accuracy": 0.8385502696037292,
1129
+ "num_tokens": 96707.0,
1130
+ "step": 112
1131
+ },
1132
+ {
1133
+ "entropy": 0.3818260133266449,
1134
+ "epoch": 0.44140625,
1135
+ "grad_norm": 0.525242805480957,
1136
+ "learning_rate": 6.434016163555452e-05,
1137
+ "loss": 0.3843124806880951,
1138
+ "mean_token_accuracy": 0.8673341870307922,
1139
+ "num_tokens": 97715.0,
1140
+ "step": 113
1141
+ },
1142
+ {
1143
+ "entropy": 0.28144916892051697,
1144
+ "epoch": 0.4453125,
1145
+ "grad_norm": 0.5517542958259583,
1146
+ "learning_rate": 6.371971858096508e-05,
1147
+ "loss": 0.23217296600341797,
1148
+ "mean_token_accuracy": 0.9144737124443054,
1149
+ "num_tokens": 98726.0,
1150
+ "step": 114
1151
+ },
1152
+ {
1153
+ "entropy": 0.5824229121208191,
1154
+ "epoch": 0.44921875,
1155
+ "grad_norm": 0.5402820706367493,
1156
+ "learning_rate": 6.30969824086453e-05,
1157
+ "loss": 0.5959458947181702,
1158
+ "mean_token_accuracy": 0.8171700835227966,
1159
+ "num_tokens": 99424.0,
1160
+ "step": 115
1161
+ },
1162
+ {
1163
+ "entropy": 0.8030366897583008,
1164
+ "epoch": 0.453125,
1165
+ "grad_norm": 0.5737054347991943,
1166
+ "learning_rate": 6.247205720289907e-05,
1167
+ "loss": 0.8519771099090576,
1168
+ "mean_token_accuracy": 0.7758865356445312,
1169
+ "num_tokens": 100180.0,
1170
+ "step": 116
1171
+ },
1172
+ {
1173
+ "entropy": 0.7312548756599426,
1174
+ "epoch": 0.45703125,
1175
+ "grad_norm": 0.5220651626586914,
1176
+ "learning_rate": 6.184504741390596e-05,
1177
+ "loss": 0.7618618607521057,
1178
+ "mean_token_accuracy": 0.7858064770698547,
1179
+ "num_tokens": 101010.0,
1180
+ "step": 117
1181
+ },
1182
+ {
1183
+ "entropy": 0.7373753190040588,
1184
+ "epoch": 0.4609375,
1185
+ "grad_norm": 0.6606554985046387,
1186
+ "learning_rate": 6.121605784026339e-05,
1187
+ "loss": 0.8617627620697021,
1188
+ "mean_token_accuracy": 0.782608687877655,
1189
+ "num_tokens": 101582.0,
1190
+ "step": 118
1191
+ },
1192
+ {
1193
+ "entropy": 0.41949662566185,
1194
+ "epoch": 0.46484375,
1195
+ "grad_norm": 0.7282864451408386,
1196
+ "learning_rate": 6.058519361147055e-05,
1197
+ "loss": 0.3674086630344391,
1198
+ "mean_token_accuracy": 0.8489583134651184,
1199
+ "num_tokens": 102164.0,
1200
+ "step": 119
1201
+ },
1202
+ {
1203
+ "entropy": 0.5909773707389832,
1204
+ "epoch": 0.46875,
1205
+ "grad_norm": 0.6897526979446411,
1206
+ "learning_rate": 5.995256017035703e-05,
1207
+ "loss": 0.597702145576477,
1208
+ "mean_token_accuracy": 0.8135592937469482,
1209
+ "num_tokens": 102773.0,
1210
+ "step": 120
1211
+ },
1212
+ {
1213
+ "entropy": 0.3142830431461334,
1214
+ "epoch": 0.47265625,
1215
+ "grad_norm": 0.44246742129325867,
1216
+ "learning_rate": 5.9318263255459116e-05,
1217
+ "loss": 0.33385440707206726,
1218
+ "mean_token_accuracy": 0.9006896615028381,
1219
+ "num_tokens": 104003.0,
1220
+ "step": 121
1221
+ },
1222
+ {
1223
+ "entropy": 0.6774213314056396,
1224
+ "epoch": 0.4765625,
1225
+ "grad_norm": 0.5509549379348755,
1226
+ "learning_rate": 5.868240888334653e-05,
1227
+ "loss": 0.7487766742706299,
1228
+ "mean_token_accuracy": 0.7820324301719666,
1229
+ "num_tokens": 104800.0,
1230
+ "step": 122
1231
+ },
1232
+ {
1233
+ "entropy": 0.7054826021194458,
1234
+ "epoch": 0.48046875,
1235
+ "grad_norm": 0.5595342516899109,
1236
+ "learning_rate": 5.804510333090287e-05,
1237
+ "loss": 0.6620463132858276,
1238
+ "mean_token_accuracy": 0.7893333435058594,
1239
+ "num_tokens": 105601.0,
1240
+ "step": 123
1241
+ },
1242
+ {
1243
+ "entropy": 0.551423192024231,
1244
+ "epoch": 0.484375,
1245
+ "grad_norm": 1.1154266595840454,
1246
+ "learning_rate": 5.740645311756245e-05,
1247
+ "loss": 0.4736259877681732,
1248
+ "mean_token_accuracy": 0.8301886916160583,
1249
+ "num_tokens": 106123.0,
1250
+ "step": 124
1251
+ },
1252
+ {
1253
+ "entropy": 0.5324803590774536,
1254
+ "epoch": 0.48828125,
1255
+ "grad_norm": 0.5987504720687866,
1256
+ "learning_rate": 5.6766564987506566e-05,
1257
+ "loss": 0.4106941819190979,
1258
+ "mean_token_accuracy": 0.8658718466758728,
1259
+ "num_tokens": 106937.0,
1260
+ "step": 125
1261
+ },
1262
+ {
1263
+ "entropy": 0.24800963699817657,
1264
+ "epoch": 0.4921875,
1265
+ "grad_norm": 0.56256502866745,
1266
+ "learning_rate": 5.6125545891822274e-05,
1267
+ "loss": 0.24778658151626587,
1268
+ "mean_token_accuracy": 0.8974999785423279,
1269
+ "num_tokens": 107471.0,
1270
+ "step": 126
1271
+ },
1272
+ {
1273
+ "entropy": 0.7553551197052002,
1274
+ "epoch": 0.49609375,
1275
+ "grad_norm": 0.6148009896278381,
1276
+ "learning_rate": 5.548350297062659e-05,
1277
+ "loss": 0.8133091926574707,
1278
+ "mean_token_accuracy": 0.7936508059501648,
1279
+ "num_tokens": 108104.0,
1280
+ "step": 127
1281
+ },
1282
+ {
1283
+ "entropy": 0.4535163938999176,
1284
+ "epoch": 0.5,
1285
+ "grad_norm": 0.5074506402015686,
1286
+ "learning_rate": 5.484054353515896e-05,
1287
+ "loss": 0.47288593649864197,
1288
+ "mean_token_accuracy": 0.8372781276702881,
1289
+ "num_tokens": 108859.0,
1290
+ "step": 128
1291
+ },
1292
+ {
1293
+ "entropy": 0.26084503531455994,
1294
+ "epoch": 0.50390625,
1295
+ "grad_norm": 0.4284311532974243,
1296
+ "learning_rate": 5.419677504984534e-05,
1297
+ "loss": 0.3021049499511719,
1298
+ "mean_token_accuracy": 0.9168975353240967,
1299
+ "num_tokens": 110907.0,
1300
+ "step": 129
1301
+ },
1302
+ {
1303
+ "entropy": 0.6347863674163818,
1304
+ "epoch": 0.5078125,
1305
+ "grad_norm": 0.48329687118530273,
1306
+ "learning_rate": 5.355230511433651e-05,
1307
+ "loss": 0.6871066093444824,
1308
+ "mean_token_accuracy": 0.8103864789009094,
1309
+ "num_tokens": 111809.0,
1310
+ "step": 130
1311
+ },
1312
+ {
1313
+ "entropy": 0.6220738887786865,
1314
+ "epoch": 0.51171875,
1315
+ "grad_norm": 0.4319831430912018,
1316
+ "learning_rate": 5.290724144552379e-05,
1317
+ "loss": 0.5937281250953674,
1318
+ "mean_token_accuracy": 0.8135765194892883,
1319
+ "num_tokens": 112871.0,
1320
+ "step": 131
1321
+ },
1322
+ {
1323
+ "entropy": 0.6094347238540649,
1324
+ "epoch": 0.515625,
1325
+ "grad_norm": 0.42872029542922974,
1326
+ "learning_rate": 5.226169185953532e-05,
1327
+ "loss": 0.6027806401252747,
1328
+ "mean_token_accuracy": 0.8122222423553467,
1329
+ "num_tokens": 113833.0,
1330
+ "step": 132
1331
+ },
1332
+ {
1333
+ "entropy": 0.14849169552326202,
1334
+ "epoch": 0.51953125,
1335
+ "grad_norm": 0.5918900370597839,
1336
+ "learning_rate": 5.1615764253715536e-05,
1337
+ "loss": 0.12953366339206696,
1338
+ "mean_token_accuracy": 0.9523809552192688,
1339
+ "num_tokens": 114386.0,
1340
+ "step": 133
1341
+ },
1342
+ {
1343
+ "entropy": 0.7135059237480164,
1344
+ "epoch": 0.5234375,
1345
+ "grad_norm": 0.48909538984298706,
1346
+ "learning_rate": 5.096956658859122e-05,
1347
+ "loss": 0.7000653743743896,
1348
+ "mean_token_accuracy": 0.7899761199951172,
1349
+ "num_tokens": 115283.0,
1350
+ "step": 134
1351
+ },
1352
+ {
1353
+ "entropy": 0.2778969407081604,
1354
+ "epoch": 0.52734375,
1355
+ "grad_norm": 0.6036175489425659,
1356
+ "learning_rate": 5.0323206869826966e-05,
1357
+ "loss": 0.26437070965766907,
1358
+ "mean_token_accuracy": 0.9032257795333862,
1359
+ "num_tokens": 115898.0,
1360
+ "step": 135
1361
+ },
1362
+ {
1363
+ "entropy": 0.4649325907230377,
1364
+ "epoch": 0.53125,
1365
+ "grad_norm": 0.4481104910373688,
1366
+ "learning_rate": 4.967679313017303e-05,
1367
+ "loss": 0.46719998121261597,
1368
+ "mean_token_accuracy": 0.8412017226219177,
1369
+ "num_tokens": 116657.0,
1370
+ "step": 136
1371
+ },
1372
+ {
1373
+ "entropy": 0.547878623008728,
1374
+ "epoch": 0.53515625,
1375
+ "grad_norm": 0.7016973495483398,
1376
+ "learning_rate": 4.903043341140879e-05,
1377
+ "loss": 0.48092278838157654,
1378
+ "mean_token_accuracy": 0.864628791809082,
1379
+ "num_tokens": 117162.0,
1380
+ "step": 137
1381
+ },
1382
+ {
1383
+ "entropy": 0.5097542405128479,
1384
+ "epoch": 0.5390625,
1385
+ "grad_norm": 0.4204660952091217,
1386
+ "learning_rate": 4.8384235746284476e-05,
1387
+ "loss": 0.5161705613136292,
1388
+ "mean_token_accuracy": 0.8362168669700623,
1389
+ "num_tokens": 118078.0,
1390
+ "step": 138
1391
+ },
1392
+ {
1393
+ "entropy": 0.557927668094635,
1394
+ "epoch": 0.54296875,
1395
+ "grad_norm": 0.9529353976249695,
1396
+ "learning_rate": 4.7738308140464685e-05,
1397
+ "loss": 0.5611956119537354,
1398
+ "mean_token_accuracy": 0.8146551847457886,
1399
+ "num_tokens": 118671.0,
1400
+ "step": 139
1401
+ },
1402
+ {
1403
+ "entropy": 0.2800652086734772,
1404
+ "epoch": 0.546875,
1405
+ "grad_norm": 0.5067075490951538,
1406
+ "learning_rate": 4.709275855447621e-05,
1407
+ "loss": 0.24611259996891022,
1408
+ "mean_token_accuracy": 0.9192463159561157,
1409
+ "num_tokens": 119790.0,
1410
+ "step": 140
1411
+ },
1412
+ {
1413
+ "entropy": 0.5083785057067871,
1414
+ "epoch": 0.55078125,
1415
+ "grad_norm": 0.4677392244338989,
1416
+ "learning_rate": 4.6447694885663514e-05,
1417
+ "loss": 0.5404981374740601,
1418
+ "mean_token_accuracy": 0.8203017711639404,
1419
+ "num_tokens": 120579.0,
1420
+ "step": 141
1421
+ },
1422
+ {
1423
+ "entropy": 0.6280187964439392,
1424
+ "epoch": 0.5546875,
1425
+ "grad_norm": 1.1353791952133179,
1426
+ "learning_rate": 4.5803224950154656e-05,
1427
+ "loss": 0.6394505500793457,
1428
+ "mean_token_accuracy": 0.7982345819473267,
1429
+ "num_tokens": 121428.0,
1430
+ "step": 142
1431
+ },
1432
+ {
1433
+ "entropy": 0.6738426685333252,
1434
+ "epoch": 0.55859375,
1435
+ "grad_norm": 0.5054082870483398,
1436
+ "learning_rate": 4.515945646484105e-05,
1437
+ "loss": 0.6168086528778076,
1438
+ "mean_token_accuracy": 0.80580073595047,
1439
+ "num_tokens": 122302.0,
1440
+ "step": 143
1441
+ },
1442
+ {
1443
+ "entropy": 0.4337348937988281,
1444
+ "epoch": 0.5625,
1445
+ "grad_norm": 0.41570982336997986,
1446
+ "learning_rate": 4.451649702937342e-05,
1447
+ "loss": 0.4383181929588318,
1448
+ "mean_token_accuracy": 0.8503937125205994,
1449
+ "num_tokens": 123143.0,
1450
+ "step": 144
1451
+ },
1452
+ {
1453
+ "entropy": 0.678224503993988,
1454
+ "epoch": 0.56640625,
1455
+ "grad_norm": 0.5669712424278259,
1456
+ "learning_rate": 4.387445410817774e-05,
1457
+ "loss": 0.7309865951538086,
1458
+ "mean_token_accuracy": 0.7887538075447083,
1459
+ "num_tokens": 123869.0,
1460
+ "step": 145
1461
+ },
1462
+ {
1463
+ "entropy": 0.3064025640487671,
1464
+ "epoch": 0.5703125,
1465
+ "grad_norm": 0.6317686438560486,
1466
+ "learning_rate": 4.323343501249346e-05,
1467
+ "loss": 0.29763591289520264,
1468
+ "mean_token_accuracy": 0.8975903391838074,
1469
+ "num_tokens": 124687.0,
1470
+ "step": 146
1471
+ },
1472
+ {
1473
+ "entropy": 0.6311812400817871,
1474
+ "epoch": 0.57421875,
1475
+ "grad_norm": 1.0175809860229492,
1476
+ "learning_rate": 4.259354688243757e-05,
1477
+ "loss": 0.5514286160469055,
1478
+ "mean_token_accuracy": 0.8260869383811951,
1479
+ "num_tokens": 125323.0,
1480
+ "step": 147
1481
+ },
1482
+ {
1483
+ "entropy": 0.3044798970222473,
1484
+ "epoch": 0.578125,
1485
+ "grad_norm": 0.4535091519355774,
1486
+ "learning_rate": 4.195489666909713e-05,
1487
+ "loss": 0.2599211037158966,
1488
+ "mean_token_accuracy": 0.9069182276725769,
1489
+ "num_tokens": 126558.0,
1490
+ "step": 148
1491
+ },
1492
+ {
1493
+ "entropy": 0.601833164691925,
1494
+ "epoch": 0.58203125,
1495
+ "grad_norm": 0.5593596696853638,
1496
+ "learning_rate": 4.131759111665349e-05,
1497
+ "loss": 0.6810619235038757,
1498
+ "mean_token_accuracy": 0.817251443862915,
1499
+ "num_tokens": 127345.0,
1500
+ "step": 149
1501
+ },
1502
+ {
1503
+ "entropy": 0.28089091181755066,
1504
+ "epoch": 0.5859375,
1505
+ "grad_norm": 0.34061604738235474,
1506
+ "learning_rate": 4.06817367445409e-05,
1507
+ "loss": 0.2891358733177185,
1508
+ "mean_token_accuracy": 0.9154518842697144,
1509
+ "num_tokens": 128877.0,
1510
+ "step": 150
1511
+ },
1512
+ {
1513
+ "entropy": 0.24683843553066254,
1514
+ "epoch": 0.58984375,
1515
+ "grad_norm": 0.4543762803077698,
1516
+ "learning_rate": 4.004743982964298e-05,
1517
+ "loss": 0.2402358502149582,
1518
+ "mean_token_accuracy": 0.9221938848495483,
1519
+ "num_tokens": 130148.0,
1520
+ "step": 151
1521
+ },
1522
+ {
1523
+ "entropy": 0.5143784880638123,
1524
+ "epoch": 0.59375,
1525
+ "grad_norm": 0.411024272441864,
1526
+ "learning_rate": 3.941480638852948e-05,
1527
+ "loss": 0.47098883986473083,
1528
+ "mean_token_accuracy": 0.8436781764030457,
1529
+ "num_tokens": 131116.0,
1530
+ "step": 152
1531
+ },
1532
+ {
1533
+ "entropy": 0.34330156445503235,
1534
+ "epoch": 0.59765625,
1535
+ "grad_norm": 0.5047693252563477,
1536
+ "learning_rate": 3.878394215973663e-05,
1537
+ "loss": 0.2646324038505554,
1538
+ "mean_token_accuracy": 0.9056603908538818,
1539
+ "num_tokens": 131891.0,
1540
+ "step": 153
1541
+ },
1542
+ {
1543
+ "entropy": 1.0674253702163696,
1544
+ "epoch": 0.6015625,
1545
+ "grad_norm": 0.8713217973709106,
1546
+ "learning_rate": 3.815495258609404e-05,
1547
+ "loss": 1.192018985748291,
1548
+ "mean_token_accuracy": 0.6854599118232727,
1549
+ "num_tokens": 132710.0,
1550
+ "step": 154
1551
+ },
1552
+ {
1553
+ "entropy": 0.32038262486457825,
1554
+ "epoch": 0.60546875,
1555
+ "grad_norm": 0.7330225706100464,
1556
+ "learning_rate": 3.752794279710094e-05,
1557
+ "loss": 0.28299516439437866,
1558
+ "mean_token_accuracy": 0.9047619104385376,
1559
+ "num_tokens": 133397.0,
1560
+ "step": 155
1561
+ },
1562
+ {
1563
+ "entropy": 0.2789649963378906,
1564
+ "epoch": 0.609375,
1565
+ "grad_norm": 0.5472933053970337,
1566
+ "learning_rate": 3.6903017591354706e-05,
1567
+ "loss": 0.27893009781837463,
1568
+ "mean_token_accuracy": 0.8918032646179199,
1569
+ "num_tokens": 134585.0,
1570
+ "step": 156
1571
+ },
1572
+ {
1573
+ "entropy": 0.2711874544620514,
1574
+ "epoch": 0.61328125,
1575
+ "grad_norm": 0.47479718923568726,
1576
+ "learning_rate": 3.628028141903493e-05,
1577
+ "loss": 0.22833819687366486,
1578
+ "mean_token_accuracy": 0.9119638800621033,
1579
+ "num_tokens": 135206.0,
1580
+ "step": 157
1581
+ },
1582
+ {
1583
+ "entropy": 0.7626615166664124,
1584
+ "epoch": 0.6171875,
1585
+ "grad_norm": 0.6431931257247925,
1586
+ "learning_rate": 3.5659838364445505e-05,
1587
+ "loss": 0.8111104369163513,
1588
+ "mean_token_accuracy": 0.7756654024124146,
1589
+ "num_tokens": 135793.0,
1590
+ "step": 158
1591
+ },
1592
+ {
1593
+ "entropy": 0.728972852230072,
1594
+ "epoch": 0.62109375,
1595
+ "grad_norm": 0.6404712796211243,
1596
+ "learning_rate": 3.5041792128617927e-05,
1597
+ "loss": 0.7591704726219177,
1598
+ "mean_token_accuracy": 0.7579737305641174,
1599
+ "num_tokens": 136413.0,
1600
+ "step": 159
1601
+ },
1602
+ {
1603
+ "entropy": 0.5796365737915039,
1604
+ "epoch": 0.625,
1605
+ "grad_norm": 1.0388445854187012,
1606
+ "learning_rate": 3.442624601197877e-05,
1607
+ "loss": 0.7041440010070801,
1608
+ "mean_token_accuracy": 0.7769516706466675,
1609
+ "num_tokens": 137080.0,
1610
+ "step": 160
1611
+ },
1612
+ {
1613
+ "entropy": 0.4629562199115753,
1614
+ "epoch": 0.62890625,
1615
+ "grad_norm": 0.43962806463241577,
1616
+ "learning_rate": 3.381330289708396e-05,
1617
+ "loss": 0.4552750885486603,
1618
+ "mean_token_accuracy": 0.858475923538208,
1619
+ "num_tokens": 137778.0,
1620
+ "step": 161
1621
+ },
1622
+ {
1623
+ "entropy": 0.18161016702651978,
1624
+ "epoch": 0.6328125,
1625
+ "grad_norm": 0.5548096299171448,
1626
+ "learning_rate": 3.3203065231422904e-05,
1627
+ "loss": 0.2156747579574585,
1628
+ "mean_token_accuracy": 0.9285714030265808,
1629
+ "num_tokens": 138413.0,
1630
+ "step": 162
1631
+ },
1632
+ {
1633
+ "entropy": 0.38109052181243896,
1634
+ "epoch": 0.63671875,
1635
+ "grad_norm": 0.5274392366409302,
1636
+ "learning_rate": 3.2595635010295475e-05,
1637
+ "loss": 0.43086734414100647,
1638
+ "mean_token_accuracy": 0.8585858345031738,
1639
+ "num_tokens": 139292.0,
1640
+ "step": 163
1641
+ },
1642
+ {
1643
+ "entropy": 0.7217973470687866,
1644
+ "epoch": 0.640625,
1645
+ "grad_norm": 0.6370094418525696,
1646
+ "learning_rate": 3.199111375976449e-05,
1647
+ "loss": 0.7083543539047241,
1648
+ "mean_token_accuracy": 0.7699680328369141,
1649
+ "num_tokens": 139986.0,
1650
+ "step": 164
1651
+ },
1652
+ {
1653
+ "entropy": 0.3645884692668915,
1654
+ "epoch": 0.64453125,
1655
+ "grad_norm": 0.4036913514137268,
1656
+ "learning_rate": 3.1389602519686515e-05,
1657
+ "loss": 0.42668434977531433,
1658
+ "mean_token_accuracy": 0.8796296119689941,
1659
+ "num_tokens": 140958.0,
1660
+ "step": 165
1661
+ },
1662
+ {
1663
+ "entropy": 0.8427024483680725,
1664
+ "epoch": 0.6484375,
1665
+ "grad_norm": 0.9207634329795837,
1666
+ "learning_rate": 3.079120182682412e-05,
1667
+ "loss": 0.8934015035629272,
1668
+ "mean_token_accuracy": 0.7403509020805359,
1669
+ "num_tokens": 141643.0,
1670
+ "step": 166
1671
+ },
1672
+ {
1673
+ "entropy": 0.19940444827079773,
1674
+ "epoch": 0.65234375,
1675
+ "grad_norm": 0.3685985505580902,
1676
+ "learning_rate": 3.019601169804216e-05,
1677
+ "loss": 0.16374173760414124,
1678
+ "mean_token_accuracy": 0.942060112953186,
1679
+ "num_tokens": 142675.0,
1680
+ "step": 167
1681
+ },
1682
+ {
1683
+ "entropy": 0.35731184482574463,
1684
+ "epoch": 0.65625,
1685
+ "grad_norm": 0.7806393504142761,
1686
+ "learning_rate": 2.9604131613590824e-05,
1687
+ "loss": 0.38204866647720337,
1688
+ "mean_token_accuracy": 0.8994082808494568,
1689
+ "num_tokens": 143209.0,
1690
+ "step": 168
1691
+ },
1692
+ {
1693
+ "entropy": 0.5667091012001038,
1694
+ "epoch": 0.66015625,
1695
+ "grad_norm": 0.4279286861419678,
1696
+ "learning_rate": 2.901566050047855e-05,
1697
+ "loss": 0.6049252152442932,
1698
+ "mean_token_accuracy": 0.8161616325378418,
1699
+ "num_tokens": 144253.0,
1700
+ "step": 169
1701
+ },
1702
+ {
1703
+ "entropy": 0.4373827874660492,
1704
+ "epoch": 0.6640625,
1705
+ "grad_norm": 0.6473530530929565,
1706
+ "learning_rate": 2.8430696715937337e-05,
1707
+ "loss": 0.4192200005054474,
1708
+ "mean_token_accuracy": 0.8723404407501221,
1709
+ "num_tokens": 144809.0,
1710
+ "step": 170
1711
+ },
1712
+ {
1713
+ "entropy": 0.3385702669620514,
1714
+ "epoch": 0.66796875,
1715
+ "grad_norm": 0.5476916432380676,
1716
+ "learning_rate": 2.7849338030983257e-05,
1717
+ "loss": 0.34807881712913513,
1718
+ "mean_token_accuracy": 0.8873626589775085,
1719
+ "num_tokens": 146044.0,
1720
+ "step": 171
1721
+ },
1722
+ {
1723
+ "entropy": 0.7447948455810547,
1724
+ "epoch": 0.671875,
1725
+ "grad_norm": 0.7132778763771057,
1726
+ "learning_rate": 2.7271681614074973e-05,
1727
+ "loss": 0.7007073163986206,
1728
+ "mean_token_accuracy": 0.7676767706871033,
1729
+ "num_tokens": 146644.0,
1730
+ "step": 172
1731
+ },
1732
+ {
1733
+ "entropy": 0.6110191345214844,
1734
+ "epoch": 0.67578125,
1735
+ "grad_norm": 0.4700603783130646,
1736
+ "learning_rate": 2.6697824014873075e-05,
1737
+ "loss": 0.6517645716667175,
1738
+ "mean_token_accuracy": 0.810023307800293,
1739
+ "num_tokens": 147541.0,
1740
+ "step": 173
1741
+ },
1742
+ {
1743
+ "entropy": 0.41026416420936584,
1744
+ "epoch": 0.6796875,
1745
+ "grad_norm": 0.5389267802238464,
1746
+ "learning_rate": 2.612786114810255e-05,
1747
+ "loss": 0.40221425890922546,
1748
+ "mean_token_accuracy": 0.8730158805847168,
1749
+ "num_tokens": 148410.0,
1750
+ "step": 174
1751
+ },
1752
+ {
1753
+ "entropy": 0.6119949817657471,
1754
+ "epoch": 0.68359375,
1755
+ "grad_norm": 0.5382506847381592,
1756
+ "learning_rate": 2.5561888277521794e-05,
1757
+ "loss": 0.6365665793418884,
1758
+ "mean_token_accuracy": 0.796445906162262,
1759
+ "num_tokens": 149073.0,
1760
+ "step": 175
1761
+ },
1762
+ {
1763
+ "entropy": 0.22540666162967682,
1764
+ "epoch": 0.6875,
1765
+ "grad_norm": 0.5321594476699829,
1766
+ "learning_rate": 2.500000000000001e-05,
1767
+ "loss": 0.21123583614826202,
1768
+ "mean_token_accuracy": 0.9234042763710022,
1769
+ "num_tokens": 149661.0,
1770
+ "step": 176
1771
+ },
1772
+ {
1773
+ "entropy": 0.7230204343795776,
1774
+ "epoch": 0.69140625,
1775
+ "grad_norm": 0.5953553318977356,
1776
+ "learning_rate": 2.4442290229706344e-05,
1777
+ "loss": 0.7069746851921082,
1778
+ "mean_token_accuracy": 0.7690972089767456,
1779
+ "num_tokens": 150305.0,
1780
+ "step": 177
1781
+ },
1782
+ {
1783
+ "entropy": 0.9457334876060486,
1784
+ "epoch": 0.6953125,
1785
+ "grad_norm": 0.5083127617835999,
1786
+ "learning_rate": 2.3888852182413085e-05,
1787
+ "loss": 0.9393180012702942,
1788
+ "mean_token_accuracy": 0.7292377948760986,
1789
+ "num_tokens": 151272.0,
1790
+ "step": 178
1791
+ },
1792
+ {
1793
+ "entropy": 0.38025233149528503,
1794
+ "epoch": 0.69921875,
1795
+ "grad_norm": 0.3276653289794922,
1796
+ "learning_rate": 2.333977835991545e-05,
1797
+ "loss": 0.4032326638698578,
1798
+ "mean_token_accuracy": 0.8661478757858276,
1799
+ "num_tokens": 152685.0,
1800
+ "step": 179
1801
+ },
1802
+ {
1803
+ "entropy": 0.4586828947067261,
1804
+ "epoch": 0.703125,
1805
+ "grad_norm": 0.7229251861572266,
1806
+ "learning_rate": 2.2795160534570864e-05,
1807
+ "loss": 0.47119078040122986,
1808
+ "mean_token_accuracy": 0.8576388955116272,
1809
+ "num_tokens": 153366.0,
1810
+ "step": 180
1811
+ },
1812
+ {
1813
+ "entropy": 0.6506159901618958,
1814
+ "epoch": 0.70703125,
1815
+ "grad_norm": 0.5718235373497009,
1816
+ "learning_rate": 2.225508973396016e-05,
1817
+ "loss": 0.7226014137268066,
1818
+ "mean_token_accuracy": 0.7985212802886963,
1819
+ "num_tokens": 153998.0,
1820
+ "step": 181
1821
+ },
1822
+ {
1823
+ "entropy": 0.14660099148750305,
1824
+ "epoch": 0.7109375,
1825
+ "grad_norm": 0.4577719271183014,
1826
+ "learning_rate": 2.171965622567308e-05,
1827
+ "loss": 0.10501350462436676,
1828
+ "mean_token_accuracy": 0.9537037014961243,
1829
+ "num_tokens": 154592.0,
1830
+ "step": 182
1831
+ },
1832
+ {
1833
+ "entropy": 0.2570628821849823,
1834
+ "epoch": 0.71484375,
1835
+ "grad_norm": 0.5604785680770874,
1836
+ "learning_rate": 2.1188949502220983e-05,
1837
+ "loss": 0.2383246123790741,
1838
+ "mean_token_accuracy": 0.9216151833534241,
1839
+ "num_tokens": 155380.0,
1840
+ "step": 183
1841
+ },
1842
+ {
1843
+ "entropy": 0.22268357872962952,
1844
+ "epoch": 0.71875,
1845
+ "grad_norm": 0.2984280586242676,
1846
+ "learning_rate": 2.066305826607911e-05,
1847
+ "loss": 0.19393853843212128,
1848
+ "mean_token_accuracy": 0.9298532009124756,
1849
+ "num_tokens": 156416.0,
1850
+ "step": 184
1851
+ },
1852
+ {
1853
+ "entropy": 0.903602659702301,
1854
+ "epoch": 0.72265625,
1855
+ "grad_norm": 0.5813080668449402,
1856
+ "learning_rate": 2.0142070414860704e-05,
1857
+ "loss": 0.8702428936958313,
1858
+ "mean_token_accuracy": 0.7342857122421265,
1859
+ "num_tokens": 157174.0,
1860
+ "step": 185
1861
+ },
1862
+ {
1863
+ "entropy": 0.770577609539032,
1864
+ "epoch": 0.7265625,
1865
+ "grad_norm": 0.567892849445343,
1866
+ "learning_rate": 1.9626073026625818e-05,
1867
+ "loss": 0.8371488451957703,
1868
+ "mean_token_accuracy": 0.7652581930160522,
1869
+ "num_tokens": 157862.0,
1870
+ "step": 186
1871
+ },
1872
+ {
1873
+ "entropy": 0.43561500310897827,
1874
+ "epoch": 0.73046875,
1875
+ "grad_norm": 0.7126235961914062,
1876
+ "learning_rate": 1.9115152345327152e-05,
1877
+ "loss": 0.4165498614311218,
1878
+ "mean_token_accuracy": 0.8619247078895569,
1879
+ "num_tokens": 158486.0,
1880
+ "step": 187
1881
+ },
1882
+ {
1883
+ "entropy": 0.5737985372543335,
1884
+ "epoch": 0.734375,
1885
+ "grad_norm": 0.4735853374004364,
1886
+ "learning_rate": 1.8609393766395085e-05,
1887
+ "loss": 0.5757613182067871,
1888
+ "mean_token_accuracy": 0.8246318697929382,
1889
+ "num_tokens": 159309.0,
1890
+ "step": 188
1891
+ },
1892
+ {
1893
+ "entropy": 1.075129747390747,
1894
+ "epoch": 0.73828125,
1895
+ "grad_norm": 0.7095473408699036,
1896
+ "learning_rate": 1.8108881822464696e-05,
1897
+ "loss": 1.1185777187347412,
1898
+ "mean_token_accuracy": 0.6891719698905945,
1899
+ "num_tokens": 160167.0,
1900
+ "step": 189
1901
+ },
1902
+ {
1903
+ "entropy": 0.1636592149734497,
1904
+ "epoch": 0.7421875,
1905
+ "grad_norm": 0.3791387677192688,
1906
+ "learning_rate": 1.7613700169247056e-05,
1907
+ "loss": 0.17648544907569885,
1908
+ "mean_token_accuracy": 0.9349240660667419,
1909
+ "num_tokens": 161021.0,
1910
+ "step": 190
1911
+ },
1912
+ {
1913
+ "entropy": 0.7041101455688477,
1914
+ "epoch": 0.74609375,
1915
+ "grad_norm": 1.0520929098129272,
1916
+ "learning_rate": 1.7123931571546827e-05,
1917
+ "loss": 0.6572645306587219,
1918
+ "mean_token_accuracy": 0.7761732935905457,
1919
+ "num_tokens": 161734.0,
1920
+ "step": 191
1921
+ },
1922
+ {
1923
+ "entropy": 0.7301777601242065,
1924
+ "epoch": 0.75,
1925
+ "grad_norm": 0.5042072534561157,
1926
+ "learning_rate": 1.6639657889429018e-05,
1927
+ "loss": 0.7156104445457458,
1928
+ "mean_token_accuracy": 0.7841726541519165,
1929
+ "num_tokens": 162528.0,
1930
+ "step": 192
1931
+ },
1932
+ {
1933
+ "entropy": 0.7274819016456604,
1934
+ "epoch": 0.75390625,
1935
+ "grad_norm": 0.56668621301651,
1936
+ "learning_rate": 1.6160960064536908e-05,
1937
+ "loss": 0.6514906287193298,
1938
+ "mean_token_accuracy": 0.7954545617103577,
1939
+ "num_tokens": 163270.0,
1940
+ "step": 193
1941
+ },
1942
+ {
1943
+ "entropy": 0.3290141820907593,
1944
+ "epoch": 0.7578125,
1945
+ "grad_norm": 0.6300365328788757,
1946
+ "learning_rate": 1.5687918106563326e-05,
1947
+ "loss": 0.3283378779888153,
1948
+ "mean_token_accuracy": 0.8911917209625244,
1949
+ "num_tokens": 163761.0,
1950
+ "step": 194
1951
+ },
1952
+ {
1953
+ "entropy": 0.6743641495704651,
1954
+ "epoch": 0.76171875,
1955
+ "grad_norm": 1.1143618822097778,
1956
+ "learning_rate": 1.52206110798779e-05,
1957
+ "loss": 0.6101138591766357,
1958
+ "mean_token_accuracy": 0.8235294222831726,
1959
+ "num_tokens": 164198.0,
1960
+ "step": 195
1961
+ },
1962
+ {
1963
+ "entropy": 0.29142895340919495,
1964
+ "epoch": 0.765625,
1965
+ "grad_norm": 0.7908472418785095,
1966
+ "learning_rate": 1.4759117090312197e-05,
1967
+ "loss": 0.2956276834011078,
1968
+ "mean_token_accuracy": 0.902953565120697,
1969
+ "num_tokens": 164800.0,
1970
+ "step": 196
1971
+ },
1972
+ {
1973
+ "entropy": 0.5043075084686279,
1974
+ "epoch": 0.76953125,
1975
+ "grad_norm": 0.5686463117599487,
1976
+ "learning_rate": 1.4303513272105057e-05,
1977
+ "loss": 0.5383475422859192,
1978
+ "mean_token_accuracy": 0.8368055820465088,
1979
+ "num_tokens": 165455.0,
1980
+ "step": 197
1981
+ },
1982
+ {
1983
+ "entropy": 0.26883840560913086,
1984
+ "epoch": 0.7734375,
1985
+ "grad_norm": 0.6015941500663757,
1986
+ "learning_rate": 1.3853875775010355e-05,
1987
+ "loss": 0.2824457287788391,
1988
+ "mean_token_accuracy": 0.9113923907279968,
1989
+ "num_tokens": 166060.0,
1990
+ "step": 198
1991
+ },
1992
+ {
1993
+ "entropy": 0.6975089907646179,
1994
+ "epoch": 0.77734375,
1995
+ "grad_norm": 0.524867594242096,
1996
+ "learning_rate": 1.3410279751569399e-05,
1997
+ "loss": 0.6965957283973694,
1998
+ "mean_token_accuracy": 0.7838577032089233,
1999
+ "num_tokens": 166832.0,
2000
+ "step": 199
2001
+ },
2002
+ {
2003
+ "entropy": 0.5239790678024292,
2004
+ "epoch": 0.78125,
2005
+ "grad_norm": 0.4479009211063385,
2006
+ "learning_rate": 1.297279934454978e-05,
2007
+ "loss": 0.5031904578208923,
2008
+ "mean_token_accuracy": 0.8443843126296997,
2009
+ "num_tokens": 167656.0,
2010
+ "step": 200
2011
+ },
2012
+ {
2013
+ "entropy": 0.4547756612300873,
2014
+ "epoch": 0.78515625,
2015
+ "grad_norm": 0.5946719646453857,
2016
+ "learning_rate": 1.25415076745532e-05,
2017
+ "loss": 0.3938901424407959,
2018
+ "mean_token_accuracy": 0.8551461100578308,
2019
+ "num_tokens": 168600.0,
2020
+ "step": 201
2021
+ },
2022
+ {
2023
+ "entropy": 0.5353092551231384,
2024
+ "epoch": 0.7890625,
2025
+ "grad_norm": 0.537120521068573,
2026
+ "learning_rate": 1.2116476827794104e-05,
2027
+ "loss": 0.5757759213447571,
2028
+ "mean_token_accuracy": 0.8104196786880493,
2029
+ "num_tokens": 169363.0,
2030
+ "step": 202
2031
+ },
2032
+ {
2033
+ "entropy": 0.515591561794281,
2034
+ "epoch": 0.79296875,
2035
+ "grad_norm": 0.5279292464256287,
2036
+ "learning_rate": 1.1697777844051105e-05,
2037
+ "loss": 0.5214709043502808,
2038
+ "mean_token_accuracy": 0.8548752665519714,
2039
+ "num_tokens": 170294.0,
2040
+ "step": 203
2041
+ },
2042
+ {
2043
+ "entropy": 0.5226616859436035,
2044
+ "epoch": 0.796875,
2045
+ "grad_norm": 0.4116542935371399,
2046
+ "learning_rate": 1.1285480704793377e-05,
2047
+ "loss": 0.5136253237724304,
2048
+ "mean_token_accuracy": 0.8394160866737366,
2049
+ "num_tokens": 171039.0,
2050
+ "step": 204
2051
+ },
2052
+ {
2053
+ "entropy": 0.5145900845527649,
2054
+ "epoch": 0.80078125,
2055
+ "grad_norm": 0.48707225918769836,
2056
+ "learning_rate": 1.0879654321484012e-05,
2057
+ "loss": 0.5155456066131592,
2058
+ "mean_token_accuracy": 0.8106796145439148,
2059
+ "num_tokens": 171712.0,
2060
+ "step": 205
2061
+ },
2062
+ {
2063
+ "entropy": 0.25303950905799866,
2064
+ "epoch": 0.8046875,
2065
+ "grad_norm": 0.44467267394065857,
2066
+ "learning_rate": 1.0480366524062042e-05,
2067
+ "loss": 0.23733912408351898,
2068
+ "mean_token_accuracy": 0.9183381199836731,
2069
+ "num_tokens": 172862.0,
2070
+ "step": 206
2071
+ },
2072
+ {
2073
+ "entropy": 0.42745527625083923,
2074
+ "epoch": 0.80859375,
2075
+ "grad_norm": 0.8307137489318848,
2076
+ "learning_rate": 1.008768404960535e-05,
2077
+ "loss": 0.5441422462463379,
2078
+ "mean_token_accuracy": 0.8386076092720032,
2079
+ "num_tokens": 173683.0,
2080
+ "step": 207
2081
+ },
2082
+ {
2083
+ "entropy": 0.5312784314155579,
2084
+ "epoch": 0.8125,
2085
+ "grad_norm": 0.46058389544487,
2086
+ "learning_rate": 9.701672531176286e-06,
2087
+ "loss": 0.5359582304954529,
2088
+ "mean_token_accuracy": 0.829383909702301,
2089
+ "num_tokens": 174586.0,
2090
+ "step": 208
2091
+ },
2092
+ {
2093
+ "entropy": 0.1523474007844925,
2094
+ "epoch": 0.81640625,
2095
+ "grad_norm": 0.4043082594871521,
2096
+ "learning_rate": 9.322396486851626e-06,
2097
+ "loss": 0.10428111255168915,
2098
+ "mean_token_accuracy": 0.9599999785423279,
2099
+ "num_tokens": 175200.0,
2100
+ "step": 209
2101
+ },
2102
+ {
2103
+ "entropy": 0.4558541178703308,
2104
+ "epoch": 0.8203125,
2105
+ "grad_norm": 0.4535713195800781,
2106
+ "learning_rate": 8.949919308939082e-06,
2107
+ "loss": 0.43846797943115234,
2108
+ "mean_token_accuracy": 0.8569604158401489,
2109
+ "num_tokens": 176039.0,
2110
+ "step": 210
2111
+ },
2112
+ {
2113
+ "entropy": 0.30432677268981934,
2114
+ "epoch": 0.82421875,
2115
+ "grad_norm": 0.2788296639919281,
2116
+ "learning_rate": 8.584303253381847e-06,
2117
+ "loss": 0.2993735074996948,
2118
+ "mean_token_accuracy": 0.9015659689903259,
2119
+ "num_tokens": 177482.0,
2120
+ "step": 211
2121
+ },
2122
+ {
2123
+ "entropy": 0.39356720447540283,
2124
+ "epoch": 0.828125,
2125
+ "grad_norm": 0.4688178598880768,
2126
+ "learning_rate": 8.225609429353187e-06,
2127
+ "loss": 0.4206669330596924,
2128
+ "mean_token_accuracy": 0.8713136911392212,
2129
+ "num_tokens": 178793.0,
2130
+ "step": 212
2131
+ },
2132
+ {
2133
+ "entropy": 0.3675970137119293,
2134
+ "epoch": 0.83203125,
2135
+ "grad_norm": 0.43600305914878845,
2136
+ "learning_rate": 7.873897789042523e-06,
2137
+ "loss": 0.35576385259628296,
2138
+ "mean_token_accuracy": 0.8886169195175171,
2139
+ "num_tokens": 179771.0,
2140
+ "step": 213
2141
+ },
2142
+ {
2143
+ "entropy": 0.4180750250816345,
2144
+ "epoch": 0.8359375,
2145
+ "grad_norm": 0.744011402130127,
2146
+ "learning_rate": 7.529227117635135e-06,
2147
+ "loss": 0.32311832904815674,
2148
+ "mean_token_accuracy": 0.8786885142326355,
2149
+ "num_tokens": 180142.0,
2150
+ "step": 214
2151
+ },
2152
+ {
2153
+ "entropy": 0.2821933627128601,
2154
+ "epoch": 0.83984375,
2155
+ "grad_norm": 0.5875326991081238,
2156
+ "learning_rate": 7.191655023486682e-06,
2157
+ "loss": 0.3583034574985504,
2158
+ "mean_token_accuracy": 0.8933333158493042,
2159
+ "num_tokens": 180823.0,
2160
+ "step": 215
2161
+ },
2162
+ {
2163
+ "entropy": 0.16589002311229706,
2164
+ "epoch": 0.84375,
2165
+ "grad_norm": 0.30427423119544983,
2166
+ "learning_rate": 6.861237928494579e-06,
2167
+ "loss": 0.18017536401748657,
2168
+ "mean_token_accuracy": 0.9340927600860596,
2169
+ "num_tokens": 182189.0,
2170
+ "step": 216
2171
+ },
2172
+ {
2173
+ "entropy": 0.15614430606365204,
2174
+ "epoch": 0.84765625,
2175
+ "grad_norm": 0.46884405612945557,
2176
+ "learning_rate": 6.53803105866761e-06,
2177
+ "loss": 0.16123679280281067,
2178
+ "mean_token_accuracy": 0.9314516186714172,
2179
+ "num_tokens": 182797.0,
2180
+ "step": 217
2181
+ },
2182
+ {
2183
+ "entropy": 0.1694234162569046,
2184
+ "epoch": 0.8515625,
2185
+ "grad_norm": 0.44396257400512695,
2186
+ "learning_rate": 6.222088434895462e-06,
2187
+ "loss": 0.13290733098983765,
2188
+ "mean_token_accuracy": 0.9622092843055725,
2189
+ "num_tokens": 183502.0,
2190
+ "step": 218
2191
+ },
2192
+ {
2193
+ "entropy": 0.669171929359436,
2194
+ "epoch": 0.85546875,
2195
+ "grad_norm": 0.5821856260299683,
2196
+ "learning_rate": 5.9134628639196e-06,
2197
+ "loss": 0.7061039209365845,
2198
+ "mean_token_accuracy": 0.7986577153205872,
2199
+ "num_tokens": 184152.0,
2200
+ "step": 219
2201
+ },
2202
+ {
2203
+ "entropy": 0.41617077589035034,
2204
+ "epoch": 0.859375,
2205
+ "grad_norm": 0.3933476209640503,
2206
+ "learning_rate": 5.6122059295072085e-06,
2207
+ "loss": 0.4208422601222992,
2208
+ "mean_token_accuracy": 0.8609022498130798,
2209
+ "num_tokens": 185266.0,
2210
+ "step": 220
2211
+ },
2212
+ {
2213
+ "entropy": 0.6242445707321167,
2214
+ "epoch": 0.86328125,
2215
+ "grad_norm": 0.5706225037574768,
2216
+ "learning_rate": 5.318367983829392e-06,
2217
+ "loss": 0.5934188961982727,
2218
+ "mean_token_accuracy": 0.812220573425293,
2219
+ "num_tokens": 185993.0,
2220
+ "step": 221
2221
+ },
2222
+ {
2223
+ "entropy": 0.12437484413385391,
2224
+ "epoch": 0.8671875,
2225
+ "grad_norm": 0.1605173498392105,
2226
+ "learning_rate": 5.031998139045352e-06,
2227
+ "loss": 0.1107478216290474,
2228
+ "mean_token_accuracy": 0.9593285918235779,
2229
+ "num_tokens": 187979.0,
2230
+ "step": 222
2231
+ },
2232
+ {
2233
+ "entropy": 0.6657881736755371,
2234
+ "epoch": 0.87109375,
2235
+ "grad_norm": 0.7200127840042114,
2236
+ "learning_rate": 4.7531442590937335e-06,
2237
+ "loss": 0.6494526267051697,
2238
+ "mean_token_accuracy": 0.8178438544273376,
2239
+ "num_tokens": 188548.0,
2240
+ "step": 223
2241
+ },
2242
+ {
2243
+ "entropy": 0.667904794216156,
2244
+ "epoch": 0.875,
2245
+ "grad_norm": 0.6903830170631409,
2246
+ "learning_rate": 4.4818529516926726e-06,
2247
+ "loss": 0.7356488704681396,
2248
+ "mean_token_accuracy": 0.7866241931915283,
2249
+ "num_tokens": 189166.0,
2250
+ "step": 224
2251
+ },
2252
+ {
2253
+ "entropy": 0.2197265923023224,
2254
+ "epoch": 0.87890625,
2255
+ "grad_norm": 0.5802422165870667,
2256
+ "learning_rate": 4.218169560549706e-06,
2257
+ "loss": 0.21671603620052338,
2258
+ "mean_token_accuracy": 0.9083969593048096,
2259
+ "num_tokens": 189795.0,
2260
+ "step": 225
2261
+ },
2262
+ {
2263
+ "entropy": 0.08880218118429184,
2264
+ "epoch": 0.8828125,
2265
+ "grad_norm": 0.6485069394111633,
2266
+ "learning_rate": 3.962138157783085e-06,
2267
+ "loss": 0.08027490228414536,
2268
+ "mean_token_accuracy": 0.9836065769195557,
2269
+ "num_tokens": 190054.0,
2270
+ "step": 226
2271
+ },
2272
+ {
2273
+ "entropy": 0.37900209426879883,
2274
+ "epoch": 0.88671875,
2275
+ "grad_norm": 0.6253210306167603,
2276
+ "learning_rate": 3.7138015365554833e-06,
2277
+ "loss": 0.31612879037857056,
2278
+ "mean_token_accuracy": 0.8928571343421936,
2279
+ "num_tokens": 190575.0,
2280
+ "step": 227
2281
+ },
2282
+ {
2283
+ "entropy": 0.29643332958221436,
2284
+ "epoch": 0.890625,
2285
+ "grad_norm": 0.6659347414970398,
2286
+ "learning_rate": 3.4732012039215776e-06,
2287
+ "loss": 0.2829846441745758,
2288
+ "mean_token_accuracy": 0.8974359035491943,
2289
+ "num_tokens": 191166.0,
2290
+ "step": 228
2291
+ },
2292
+ {
2293
+ "entropy": 0.49921393394470215,
2294
+ "epoch": 0.89453125,
2295
+ "grad_norm": 2.109837532043457,
2296
+ "learning_rate": 3.2403773738905187e-06,
2297
+ "loss": 0.5401884913444519,
2298
+ "mean_token_accuracy": 0.8148148059844971,
2299
+ "num_tokens": 191677.0,
2300
+ "step": 229
2301
+ },
2302
+ {
2303
+ "entropy": 0.34459343552589417,
2304
+ "epoch": 0.8984375,
2305
+ "grad_norm": 0.4861948490142822,
2306
+ "learning_rate": 3.0153689607045845e-06,
2307
+ "loss": 0.38284367322921753,
2308
+ "mean_token_accuracy": 0.8670820593833923,
2309
+ "num_tokens": 193333.0,
2310
+ "step": 230
2311
+ },
2312
+ {
2313
+ "entropy": 0.3695055842399597,
2314
+ "epoch": 0.90234375,
2315
+ "grad_norm": 0.6677697896957397,
2316
+ "learning_rate": 2.798213572335001e-06,
2317
+ "loss": 0.3146107494831085,
2318
+ "mean_token_accuracy": 0.8928571343421936,
2319
+ "num_tokens": 193743.0,
2320
+ "step": 231
2321
+ },
2322
+ {
2323
+ "entropy": 0.4683477580547333,
2324
+ "epoch": 0.90625,
2325
+ "grad_norm": 0.408593088388443,
2326
+ "learning_rate": 2.5889475041961765e-06,
2327
+ "loss": 0.4578011631965637,
2328
+ "mean_token_accuracy": 0.855967104434967,
2329
+ "num_tokens": 194774.0,
2330
+ "step": 232
2331
+ },
2332
+ {
2333
+ "entropy": 0.3701515197753906,
2334
+ "epoch": 0.91015625,
2335
+ "grad_norm": 0.7889779210090637,
2336
+ "learning_rate": 2.3876057330792346e-06,
2337
+ "loss": 0.44048717617988586,
2338
+ "mean_token_accuracy": 0.8773946166038513,
2339
+ "num_tokens": 195435.0,
2340
+ "step": 233
2341
+ },
2342
+ {
2343
+ "entropy": 0.27812668681144714,
2344
+ "epoch": 0.9140625,
2345
+ "grad_norm": 0.543383002281189,
2346
+ "learning_rate": 2.1942219113060212e-06,
2347
+ "loss": 0.23630653321743011,
2348
+ "mean_token_accuracy": 0.9056939482688904,
2349
+ "num_tokens": 196110.0,
2350
+ "step": 234
2351
+ },
2352
+ {
2353
+ "entropy": 0.3826678693294525,
2354
+ "epoch": 0.91796875,
2355
+ "grad_norm": 0.7685016393661499,
2356
+ "learning_rate": 2.0088283611044036e-06,
2357
+ "loss": 0.35028892755508423,
2358
+ "mean_token_accuracy": 0.8722222447395325,
2359
+ "num_tokens": 196683.0,
2360
+ "step": 235
2361
+ },
2362
+ {
2363
+ "entropy": 0.47459354996681213,
2364
+ "epoch": 0.921875,
2365
+ "grad_norm": 0.4241848289966583,
2366
+ "learning_rate": 1.8314560692059835e-06,
2367
+ "loss": 0.4534341096878052,
2368
+ "mean_token_accuracy": 0.8470149040222168,
2369
+ "num_tokens": 197813.0,
2370
+ "step": 236
2371
+ },
2372
+ {
2373
+ "entropy": 0.4732860326766968,
2374
+ "epoch": 0.92578125,
2375
+ "grad_norm": 0.6001340746879578,
2376
+ "learning_rate": 1.6621346816668992e-06,
2377
+ "loss": 0.4233834147453308,
2378
+ "mean_token_accuracy": 0.85467129945755,
2379
+ "num_tokens": 198614.0,
2380
+ "step": 237
2381
+ },
2382
+ {
2383
+ "entropy": 0.24252501130104065,
2384
+ "epoch": 0.9296875,
2385
+ "grad_norm": 0.4748985171318054,
2386
+ "learning_rate": 1.5008924989128258e-06,
2387
+ "loss": 0.24960453808307648,
2388
+ "mean_token_accuracy": 0.9158512949943542,
2389
+ "num_tokens": 199522.0,
2390
+ "step": 238
2391
+ },
2392
+ {
2393
+ "entropy": 0.384161114692688,
2394
+ "epoch": 0.93359375,
2395
+ "grad_norm": 0.3358857333660126,
2396
+ "learning_rate": 1.3477564710088098e-06,
2397
+ "loss": 0.4235530197620392,
2398
+ "mean_token_accuracy": 0.8877338767051697,
2399
+ "num_tokens": 201122.0,
2400
+ "step": 239
2401
+ },
2402
+ {
2403
+ "entropy": 0.42876631021499634,
2404
+ "epoch": 0.9375,
2405
+ "grad_norm": 0.5177216529846191,
2406
+ "learning_rate": 1.2027521931548214e-06,
2407
+ "loss": 0.34190917015075684,
2408
+ "mean_token_accuracy": 0.8786610960960388,
2409
+ "num_tokens": 202034.0,
2410
+ "step": 240
2411
+ },
2412
+ {
2413
+ "entropy": 0.04754366725683212,
2414
+ "epoch": 0.94140625,
2415
+ "grad_norm": 0.3525196313858032,
2416
+ "learning_rate": 1.0659039014077944e-06,
2417
+ "loss": 0.030357277020812035,
2418
+ "mean_token_accuracy": 0.9819819927215576,
2419
+ "num_tokens": 202448.0,
2420
+ "step": 241
2421
+ },
2422
+ {
2423
+ "entropy": 0.8971038460731506,
2424
+ "epoch": 0.9453125,
2425
+ "grad_norm": 0.609235405921936,
2426
+ "learning_rate": 9.372344686307655e-07,
2427
+ "loss": 0.8661205768585205,
2428
+ "mean_token_accuracy": 0.7492307424545288,
2429
+ "num_tokens": 203153.0,
2430
+ "step": 242
2431
+ },
2432
+ {
2433
+ "entropy": 0.2041647732257843,
2434
+ "epoch": 0.94921875,
2435
+ "grad_norm": 0.417760968208313,
2436
+ "learning_rate": 8.167654006699443e-07,
2437
+ "loss": 0.20340704917907715,
2438
+ "mean_token_accuracy": 0.9272727370262146,
2439
+ "num_tokens": 204649.0,
2440
+ "step": 243
2441
+ },
2442
+ {
2443
+ "entropy": 0.7868140339851379,
2444
+ "epoch": 0.953125,
2445
+ "grad_norm": 0.5194016098976135,
2446
+ "learning_rate": 7.04516832760177e-07,
2447
+ "loss": 0.7690750360488892,
2448
+ "mean_token_accuracy": 0.7403509020805359,
2449
+ "num_tokens": 205566.0,
2450
+ "step": 244
2451
+ },
2452
+ {
2453
+ "entropy": 0.512119472026825,
2454
+ "epoch": 0.95703125,
2455
+ "grad_norm": 0.4667680859565735,
2456
+ "learning_rate": 6.005075261595494e-07,
2457
+ "loss": 0.5424506664276123,
2458
+ "mean_token_accuracy": 0.8127962350845337,
2459
+ "num_tokens": 206505.0,
2460
+ "step": 245
2461
+ },
2462
+ {
2463
+ "entropy": 0.5503345131874084,
2464
+ "epoch": 0.9609375,
2465
+ "grad_norm": 0.5417609214782715,
2466
+ "learning_rate": 5.047548650136513e-07,
2467
+ "loss": 0.5625803470611572,
2468
+ "mean_token_accuracy": 0.8359020948410034,
2469
+ "num_tokens": 207667.0,
2470
+ "step": 246
2471
+ },
2472
+ {
2473
+ "entropy": 0.15092067420482635,
2474
+ "epoch": 0.96484375,
2475
+ "grad_norm": 0.3749607503414154,
2476
+ "learning_rate": 4.1727485344994486e-07,
2477
+ "loss": 0.12351085990667343,
2478
+ "mean_token_accuracy": 0.9637526869773865,
2479
+ "num_tokens": 208557.0,
2480
+ "step": 247
2481
+ },
2482
+ {
2483
+ "entropy": 0.3035145401954651,
2484
+ "epoch": 0.96875,
2485
+ "grad_norm": 0.6369016766548157,
2486
+ "learning_rate": 3.380821129028489e-07,
2487
+ "loss": 0.30636686086654663,
2488
+ "mean_token_accuracy": 0.8856208920478821,
2489
+ "num_tokens": 209471.0,
2490
+ "step": 248
2491
+ },
2492
+ {
2493
+ "entropy": 0.14925874769687653,
2494
+ "epoch": 0.97265625,
2495
+ "grad_norm": 0.4498298168182373,
2496
+ "learning_rate": 2.671898796699268e-07,
2497
+ "loss": 0.1550212949514389,
2498
+ "mean_token_accuracy": 0.94525545835495,
2499
+ "num_tokens": 210116.0,
2500
+ "step": 249
2501
+ },
2502
+ {
2503
+ "entropy": 0.6894947290420532,
2504
+ "epoch": 0.9765625,
2505
+ "grad_norm": 0.4445592164993286,
2506
+ "learning_rate": 2.0461000269953456e-07,
2507
+ "loss": 0.7216358184814453,
2508
+ "mean_token_accuracy": 0.7822735905647278,
2509
+ "num_tokens": 211210.0,
2510
+ "step": 250
2511
+ },
2512
+ {
2513
+ "entropy": 0.2217535525560379,
2514
+ "epoch": 0.98046875,
2515
+ "grad_norm": 0.6302019953727722,
2516
+ "learning_rate": 1.503529416103988e-07,
2517
+ "loss": 0.14888812601566315,
2518
+ "mean_token_accuracy": 0.949999988079071,
2519
+ "num_tokens": 211709.0,
2520
+ "step": 251
2521
+ },
2522
+ {
2523
+ "entropy": 0.5686500668525696,
2524
+ "epoch": 0.984375,
2525
+ "grad_norm": 0.49771612882614136,
2526
+ "learning_rate": 1.044277649433989e-07,
2527
+ "loss": 0.6255224347114563,
2528
+ "mean_token_accuracy": 0.8060781359672546,
2529
+ "num_tokens": 212451.0,
2530
+ "step": 252
2531
+ },
2532
+ {
2533
+ "entropy": 0.5569570660591125,
2534
+ "epoch": 0.98828125,
2535
+ "grad_norm": 0.46151381731033325,
2536
+ "learning_rate": 6.684214864584038e-08,
2537
+ "loss": 0.541587233543396,
2538
+ "mean_token_accuracy": 0.8238770961761475,
2539
+ "num_tokens": 213344.0,
2540
+ "step": 253
2541
+ },
2542
+ {
2543
+ "entropy": 1.031855583190918,
2544
+ "epoch": 0.9921875,
2545
+ "grad_norm": 0.7833940982818604,
2546
+ "learning_rate": 3.760237478849793e-08,
2547
+ "loss": 1.1019765138626099,
2548
+ "mean_token_accuracy": 0.6640827059745789,
2549
+ "num_tokens": 214137.0,
2550
+ "step": 254
2551
+ },
2552
+ {
2553
+ "entropy": 0.8682965636253357,
2554
+ "epoch": 0.99609375,
2555
+ "grad_norm": 0.9711683988571167,
2556
+ "learning_rate": 1.6713330515627513e-08,
2557
+ "loss": 0.9377847909927368,
2558
+ "mean_token_accuracy": 0.7049180269241333,
2559
+ "num_tokens": 214934.0,
2560
+ "step": 255
2561
+ },
2562
+ {
2563
+ "entropy": 0.7439013123512268,
2564
+ "epoch": 1.0,
2565
+ "grad_norm": 0.5430483222007751,
2566
+ "learning_rate": 4.178507228136397e-09,
2567
+ "loss": 0.7168333530426025,
2568
+ "mean_token_accuracy": 0.7851985692977905,
2569
+ "num_tokens": 215882.0,
2570
+ "step": 256
2571
+ }
2572
+ ],
2573
+ "logging_steps": 1,
2574
+ "max_steps": 256,
2575
+ "num_input_tokens_seen": 0,
2576
+ "num_train_epochs": 1,
2577
+ "save_steps": 500,
2578
+ "stateful_callbacks": {
2579
+ "TrainerControl": {
2580
+ "args": {
2581
+ "should_epoch_stop": false,
2582
+ "should_evaluate": false,
2583
+ "should_log": false,
2584
+ "should_save": true,
2585
+ "should_training_stop": true
2586
+ },
2587
+ "attributes": {}
2588
+ }
2589
+ },
2590
+ "total_flos": 4792026295959552.0,
2591
+ "train_batch_size": 1,
2592
+ "trial_name": null,
2593
+ "trial_params": null
2594
+ }
checkpoint-256/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09ca54e9a3968e8692680833835bb5e217c620d4fb378a0281801ab4f5999b42
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:09ca54e9a3968e8692680833835bb5e217c620d4fb378a0281801ab4f5999b42
3
+ size 5841