GilbertAkham commited on
Commit
bb27bc8
·
verified ·
1 Parent(s): 6f9455a

Upload LoRA adapter for multitask text generation

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
.ipynb_checkpoints/adapter_config-checkpoint.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen1.5-1.8B-Chat",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 8,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "up_proj",
29
+ "k_proj",
30
+ "down_proj",
31
+ "o_proj",
32
+ "q_proj",
33
+ "gate_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen1.5-1.8B-Chat
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:Qwen/Qwen1.5-1.8B-Chat
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.17.1
adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "Qwen/Qwen1.5-1.8B-Chat",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.1,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 8,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "up_proj",
29
+ "k_proj",
30
+ "down_proj",
31
+ "o_proj",
32
+ "q_proj",
33
+ "gate_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2cb69f960dd557df9e3add198163eff66fdd84ea9126468788ee92f2227c0fd
3
+ size 30026872
added_tokens.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "<|endoftext|>": 151643,
3
+ "<|im_end|>": 151645,
4
+ "<|im_start|>": 151644
5
+ }
chat_template.jinja ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system
2
+ You are a helpful assistant.<|im_end|>
3
+ ' }}{% endif %}{{'<|im_start|>' + message['role'] + '
4
+ ' + message['content'] + '<|im_end|>' + '
5
+ '}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant
6
+ ' }}{% endif %}
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d213310c1c7d081361f0337b49ac89ff72d6c69c7e91aa2829e7d6eb9628e47
3
+ size 16485827
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59fd62cc2ff6347d62b07e61ea3a7b13b9ecc8473cd85badcd11b0e6e8f26ce8
3
+ size 14645
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:079e0e0ec8f2921a9bae691215c4eba44b0cda93f6f284269579a17bd94d7463
3
+ size 1465
special_tokens_map.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>"
5
+ ],
6
+ "eos_token": {
7
+ "content": "<|im_end|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false
12
+ },
13
+ "pad_token": {
14
+ "content": "<|endoftext|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false
19
+ }
20
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcfe42da0a4497e8b2b172c1f9f4ec423a46dc12907f4349c55025f670422ba9
3
+ size 11418266
tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "151643": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "151644": {
13
+ "content": "<|im_start|>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "151645": {
21
+ "content": "<|im_end|>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ }
28
+ },
29
+ "additional_special_tokens": [
30
+ "<|im_start|>",
31
+ "<|im_end|>"
32
+ ],
33
+ "bos_token": null,
34
+ "clean_up_tokenization_spaces": false,
35
+ "eos_token": "<|im_end|>",
36
+ "errors": "replace",
37
+ "extra_special_tokens": {},
38
+ "model_max_length": 32768,
39
+ "pad_token": "<|endoftext|>",
40
+ "split_special_tokens": false,
41
+ "tokenizer_class": "Qwen2Tokenizer",
42
+ "unk_token": null
43
+ }
trainer_state.json ADDED
@@ -0,0 +1,1834 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.6,
6
+ "eval_steps": 500,
7
+ "global_step": 9000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 2.334267578125,
14
+ "epoch": 0.0033333333333333335,
15
+ "grad_norm": 1.3027938604354858,
16
+ "learning_rate": 1.088888888888889e-05,
17
+ "loss": 3.2727,
18
+ "mean_token_accuracy": 0.37681460797786714,
19
+ "num_tokens": 152562.0,
20
+ "step": 50
21
+ },
22
+ {
23
+ "entropy": 2.6866015625,
24
+ "epoch": 0.006666666666666667,
25
+ "grad_norm": 1.0882155895233154,
26
+ "learning_rate": 2.2000000000000003e-05,
27
+ "loss": 2.9865,
28
+ "mean_token_accuracy": 0.4045091135799885,
29
+ "num_tokens": 305571.0,
30
+ "step": 100
31
+ },
32
+ {
33
+ "entropy": 2.694482421875,
34
+ "epoch": 0.01,
35
+ "grad_norm": 1.6767909526824951,
36
+ "learning_rate": 3.311111111111112e-05,
37
+ "loss": 2.8299,
38
+ "mean_token_accuracy": 0.4228819414973259,
39
+ "num_tokens": 458725.0,
40
+ "step": 150
41
+ },
42
+ {
43
+ "entropy": 2.666123046875,
44
+ "epoch": 0.013333333333333334,
45
+ "grad_norm": 1.948503017425537,
46
+ "learning_rate": 4.422222222222222e-05,
47
+ "loss": 2.7832,
48
+ "mean_token_accuracy": 0.4269903081655502,
49
+ "num_tokens": 611785.0,
50
+ "step": 200
51
+ },
52
+ {
53
+ "entropy": 2.7209375,
54
+ "epoch": 0.016666666666666666,
55
+ "grad_norm": 2.4782638549804688,
56
+ "learning_rate": 5.5333333333333334e-05,
57
+ "loss": 2.8287,
58
+ "mean_token_accuracy": 0.4207923886179924,
59
+ "num_tokens": 765026.0,
60
+ "step": 250
61
+ },
62
+ {
63
+ "entropy": 2.707451171875,
64
+ "epoch": 0.02,
65
+ "grad_norm": 2.3473691940307617,
66
+ "learning_rate": 6.644444444444444e-05,
67
+ "loss": 2.8256,
68
+ "mean_token_accuracy": 0.4248832304775715,
69
+ "num_tokens": 918026.0,
70
+ "step": 300
71
+ },
72
+ {
73
+ "entropy": 2.75130859375,
74
+ "epoch": 0.023333333333333334,
75
+ "grad_norm": 2.264916181564331,
76
+ "learning_rate": 7.755555555555556e-05,
77
+ "loss": 2.8603,
78
+ "mean_token_accuracy": 0.4202099771797657,
79
+ "num_tokens": 1071079.0,
80
+ "step": 350
81
+ },
82
+ {
83
+ "entropy": 2.7161962890625,
84
+ "epoch": 0.02666666666666667,
85
+ "grad_norm": 2.1681137084960938,
86
+ "learning_rate": 8.866666666666668e-05,
87
+ "loss": 2.8218,
88
+ "mean_token_accuracy": 0.4233370026946068,
89
+ "num_tokens": 1224719.0,
90
+ "step": 400
91
+ },
92
+ {
93
+ "entropy": 2.776904296875,
94
+ "epoch": 0.03,
95
+ "grad_norm": 2.9401867389678955,
96
+ "learning_rate": 9.977777777777779e-05,
97
+ "loss": 2.8903,
98
+ "mean_token_accuracy": 0.41743100568652153,
99
+ "num_tokens": 1377973.0,
100
+ "step": 450
101
+ },
102
+ {
103
+ "entropy": 2.729775390625,
104
+ "epoch": 0.03333333333333333,
105
+ "grad_norm": 2.047966480255127,
106
+ "learning_rate": 9.999720165100497e-05,
107
+ "loss": 2.8441,
108
+ "mean_token_accuracy": 0.4197780056297779,
109
+ "num_tokens": 1531040.0,
110
+ "step": 500
111
+ },
112
+ {
113
+ "entropy": 2.7143359375,
114
+ "epoch": 0.03666666666666667,
115
+ "grad_norm": 2.409952402114868,
116
+ "learning_rate": 9.998857733027178e-05,
117
+ "loss": 2.8122,
118
+ "mean_token_accuracy": 0.42437282159924505,
119
+ "num_tokens": 1684441.0,
120
+ "step": 550
121
+ },
122
+ {
123
+ "entropy": 2.703564453125,
124
+ "epoch": 0.04,
125
+ "grad_norm": 2.303372383117676,
126
+ "learning_rate": 9.997412687745474e-05,
127
+ "loss": 2.8048,
128
+ "mean_token_accuracy": 0.42454416677355766,
129
+ "num_tokens": 1838012.0,
130
+ "step": 600
131
+ },
132
+ {
133
+ "entropy": 2.697548828125,
134
+ "epoch": 0.043333333333333335,
135
+ "grad_norm": 1.6631819009780884,
136
+ "learning_rate": 9.995385197674353e-05,
137
+ "loss": 2.7978,
138
+ "mean_token_accuracy": 0.4260334567725658,
139
+ "num_tokens": 1991026.0,
140
+ "step": 650
141
+ },
142
+ {
143
+ "entropy": 2.737724609375,
144
+ "epoch": 0.04666666666666667,
145
+ "grad_norm": 1.8547998666763306,
146
+ "learning_rate": 9.992775499116298e-05,
147
+ "loss": 2.8385,
148
+ "mean_token_accuracy": 0.4228105416893959,
149
+ "num_tokens": 2143574.0,
150
+ "step": 700
151
+ },
152
+ {
153
+ "entropy": 2.723037109375,
154
+ "epoch": 0.05,
155
+ "grad_norm": 2.5471417903900146,
156
+ "learning_rate": 9.989583896229766e-05,
157
+ "loss": 2.8284,
158
+ "mean_token_accuracy": 0.42690352082252503,
159
+ "num_tokens": 2296869.0,
160
+ "step": 750
161
+ },
162
+ {
163
+ "entropy": 2.73912109375,
164
+ "epoch": 0.05333333333333334,
165
+ "grad_norm": 1.8039970397949219,
166
+ "learning_rate": 9.985810760993735e-05,
167
+ "loss": 2.8501,
168
+ "mean_token_accuracy": 0.4239633755385876,
169
+ "num_tokens": 2448287.0,
170
+ "step": 800
171
+ },
172
+ {
173
+ "entropy": 2.725390625,
174
+ "epoch": 0.056666666666666664,
175
+ "grad_norm": 4.132200717926025,
176
+ "learning_rate": 9.981456533164355e-05,
177
+ "loss": 2.8181,
178
+ "mean_token_accuracy": 0.42553551197052003,
179
+ "num_tokens": 2602725.0,
180
+ "step": 850
181
+ },
182
+ {
183
+ "entropy": 2.693154296875,
184
+ "epoch": 0.06,
185
+ "grad_norm": 1.8514758348464966,
186
+ "learning_rate": 9.97652172022369e-05,
187
+ "loss": 2.7929,
188
+ "mean_token_accuracy": 0.4280212070047855,
189
+ "num_tokens": 2756488.0,
190
+ "step": 900
191
+ },
192
+ {
193
+ "entropy": 2.6425732421875,
194
+ "epoch": 0.06333333333333334,
195
+ "grad_norm": 2.878779172897339,
196
+ "learning_rate": 9.971006897320579e-05,
197
+ "loss": 2.7221,
198
+ "mean_token_accuracy": 0.44406644865870476,
199
+ "num_tokens": 2911514.0,
200
+ "step": 950
201
+ },
202
+ {
203
+ "entropy": 2.66560546875,
204
+ "epoch": 0.06666666666666667,
205
+ "grad_norm": 3.8290674686431885,
206
+ "learning_rate": 9.964912707203586e-05,
207
+ "loss": 2.7872,
208
+ "mean_token_accuracy": 0.43023131355643274,
209
+ "num_tokens": 3064010.0,
210
+ "step": 1000
211
+ },
212
+ {
213
+ "entropy": 2.68474609375,
214
+ "epoch": 0.07,
215
+ "grad_norm": 2.2297792434692383,
216
+ "learning_rate": 9.958239860146112e-05,
217
+ "loss": 2.7963,
218
+ "mean_token_accuracy": 0.4303510873019695,
219
+ "num_tokens": 3216525.0,
220
+ "step": 1050
221
+ },
222
+ {
223
+ "entropy": 2.6753564453125,
224
+ "epoch": 0.07333333333333333,
225
+ "grad_norm": 2.2983882427215576,
226
+ "learning_rate": 9.950989133863593e-05,
227
+ "loss": 2.7701,
228
+ "mean_token_accuracy": 0.4338577099144459,
229
+ "num_tokens": 3370033.0,
230
+ "step": 1100
231
+ },
232
+ {
233
+ "entropy": 2.759462890625,
234
+ "epoch": 0.07666666666666666,
235
+ "grad_norm": 1.61794114112854,
236
+ "learning_rate": 9.943161373422868e-05,
237
+ "loss": 2.8555,
238
+ "mean_token_accuracy": 0.4244931024312973,
239
+ "num_tokens": 3523171.0,
240
+ "step": 1150
241
+ },
242
+ {
243
+ "entropy": 2.46953857421875,
244
+ "epoch": 0.08,
245
+ "grad_norm": 1.5758808851242065,
246
+ "learning_rate": 9.934757491143687e-05,
247
+ "loss": 2.5736,
248
+ "mean_token_accuracy": 0.47368608459830286,
249
+ "num_tokens": 3677091.0,
250
+ "step": 1200
251
+ },
252
+ {
253
+ "entropy": 2.226496276855469,
254
+ "epoch": 0.08333333333333333,
255
+ "grad_norm": 4.1404852867126465,
256
+ "learning_rate": 9.925778466492372e-05,
257
+ "loss": 2.3526,
258
+ "mean_token_accuracy": 0.5196963116526604,
259
+ "num_tokens": 3836663.0,
260
+ "step": 1250
261
+ },
262
+ {
263
+ "entropy": 2.764296875,
264
+ "epoch": 0.08666666666666667,
265
+ "grad_norm": 1.473595380783081,
266
+ "learning_rate": 9.916225345967676e-05,
267
+ "loss": 2.8245,
268
+ "mean_token_accuracy": 0.424507200717926,
269
+ "num_tokens": 3989426.0,
270
+ "step": 1300
271
+ },
272
+ {
273
+ "entropy": 2.717734375,
274
+ "epoch": 0.09,
275
+ "grad_norm": 3.0632381439208984,
276
+ "learning_rate": 9.906099242978796e-05,
277
+ "loss": 2.8139,
278
+ "mean_token_accuracy": 0.42621336653828623,
279
+ "num_tokens": 4142400.0,
280
+ "step": 1350
281
+ },
282
+ {
283
+ "entropy": 2.75982421875,
284
+ "epoch": 0.09333333333333334,
285
+ "grad_norm": 1.513647437095642,
286
+ "learning_rate": 9.895401337715624e-05,
287
+ "loss": 2.8607,
288
+ "mean_token_accuracy": 0.4194491642713547,
289
+ "num_tokens": 4295903.0,
290
+ "step": 1400
291
+ },
292
+ {
293
+ "entropy": 2.6927099609375,
294
+ "epoch": 0.09666666666666666,
295
+ "grad_norm": 1.5781805515289307,
296
+ "learning_rate": 9.884132877011183e-05,
297
+ "loss": 2.7784,
298
+ "mean_token_accuracy": 0.43057438001036646,
299
+ "num_tokens": 4450117.0,
300
+ "step": 1450
301
+ },
302
+ {
303
+ "entropy": 2.7134375,
304
+ "epoch": 0.1,
305
+ "grad_norm": 1.941235065460205,
306
+ "learning_rate": 9.872295174196317e-05,
307
+ "loss": 2.7922,
308
+ "mean_token_accuracy": 0.4271659015119076,
309
+ "num_tokens": 4603551.0,
310
+ "step": 1500
311
+ },
312
+ {
313
+ "entropy": 2.708359375,
314
+ "epoch": 0.10333333333333333,
315
+ "grad_norm": 3.3001255989074707,
316
+ "learning_rate": 9.859889608946621e-05,
317
+ "loss": 2.7784,
318
+ "mean_token_accuracy": 0.4277858440577984,
319
+ "num_tokens": 4757625.0,
320
+ "step": 1550
321
+ },
322
+ {
323
+ "entropy": 2.7323974609375,
324
+ "epoch": 0.10666666666666667,
325
+ "grad_norm": 1.6675961017608643,
326
+ "learning_rate": 9.846917627121644e-05,
327
+ "loss": 2.8315,
328
+ "mean_token_accuracy": 0.42472330912947653,
329
+ "num_tokens": 4911005.0,
330
+ "step": 1600
331
+ },
332
+ {
333
+ "entropy": 2.755791015625,
334
+ "epoch": 0.11,
335
+ "grad_norm": 1.9695419073104858,
336
+ "learning_rate": 9.833380740596366e-05,
337
+ "loss": 2.8338,
338
+ "mean_token_accuracy": 0.4245320174098015,
339
+ "num_tokens": 5063471.0,
340
+ "step": 1650
341
+ },
342
+ {
343
+ "entropy": 2.762841796875,
344
+ "epoch": 0.11333333333333333,
345
+ "grad_norm": 1.7147846221923828,
346
+ "learning_rate": 9.819280527084997e-05,
347
+ "loss": 2.8418,
348
+ "mean_token_accuracy": 0.42281755566596985,
349
+ "num_tokens": 5216120.0,
350
+ "step": 1700
351
+ },
352
+ {
353
+ "entropy": 2.780341796875,
354
+ "epoch": 0.11666666666666667,
355
+ "grad_norm": 2.6947574615478516,
356
+ "learning_rate": 9.8046186299571e-05,
357
+ "loss": 2.8742,
358
+ "mean_token_accuracy": 0.42031392723321914,
359
+ "num_tokens": 5371264.0,
360
+ "step": 1750
361
+ },
362
+ {
363
+ "entropy": 2.785537109375,
364
+ "epoch": 0.12,
365
+ "grad_norm": 1.9052940607070923,
366
+ "learning_rate": 9.78939675804605e-05,
367
+ "loss": 2.8828,
368
+ "mean_token_accuracy": 0.4183352366089821,
369
+ "num_tokens": 5523867.0,
370
+ "step": 1800
371
+ },
372
+ {
373
+ "entropy": 2.760068359375,
374
+ "epoch": 0.12333333333333334,
375
+ "grad_norm": 1.9224604368209839,
376
+ "learning_rate": 9.773616685449871e-05,
377
+ "loss": 2.8583,
378
+ "mean_token_accuracy": 0.4213790901005268,
379
+ "num_tokens": 5677161.0,
380
+ "step": 1850
381
+ },
382
+ {
383
+ "entropy": 2.723115234375,
384
+ "epoch": 0.12666666666666668,
385
+ "grad_norm": 6.709502696990967,
386
+ "learning_rate": 9.757280251324468e-05,
387
+ "loss": 2.7988,
388
+ "mean_token_accuracy": 0.42887720301747323,
389
+ "num_tokens": 5830674.0,
390
+ "step": 1900
391
+ },
392
+ {
393
+ "entropy": 2.7593603515625,
394
+ "epoch": 0.13,
395
+ "grad_norm": 1.7702646255493164,
396
+ "learning_rate": 9.740389359669278e-05,
397
+ "loss": 2.8448,
398
+ "mean_token_accuracy": 0.42266563907265664,
399
+ "num_tokens": 5983575.0,
400
+ "step": 1950
401
+ },
402
+ {
403
+ "entropy": 2.7628125,
404
+ "epoch": 0.13333333333333333,
405
+ "grad_norm": 2.2006354331970215,
406
+ "learning_rate": 9.722945979105351e-05,
407
+ "loss": 2.8523,
408
+ "mean_token_accuracy": 0.4193016523122787,
409
+ "num_tokens": 6137274.0,
410
+ "step": 2000
411
+ },
412
+ {
413
+ "entropy": 2.709619140625,
414
+ "epoch": 0.13666666666666666,
415
+ "grad_norm": 2.978189468383789,
416
+ "learning_rate": 9.704952142645925e-05,
417
+ "loss": 2.7821,
418
+ "mean_token_accuracy": 0.4332714307308197,
419
+ "num_tokens": 6290403.0,
420
+ "step": 2050
421
+ },
422
+ {
423
+ "entropy": 2.786767578125,
424
+ "epoch": 0.14,
425
+ "grad_norm": 1.835463047027588,
426
+ "learning_rate": 9.686409947459458e-05,
427
+ "loss": 2.8772,
428
+ "mean_token_accuracy": 0.41907066956162453,
429
+ "num_tokens": 6443472.0,
430
+ "step": 2100
431
+ },
432
+ {
433
+ "entropy": 2.765498046875,
434
+ "epoch": 0.14333333333333334,
435
+ "grad_norm": 1.9685204029083252,
436
+ "learning_rate": 9.667321554625225e-05,
437
+ "loss": 2.8375,
438
+ "mean_token_accuracy": 0.4219497123360634,
439
+ "num_tokens": 6597285.0,
440
+ "step": 2150
441
+ },
442
+ {
443
+ "entropy": 2.788427734375,
444
+ "epoch": 0.14666666666666667,
445
+ "grad_norm": 1.5145137310028076,
446
+ "learning_rate": 9.647689188881431e-05,
447
+ "loss": 2.8716,
448
+ "mean_token_accuracy": 0.41897833287715913,
449
+ "num_tokens": 6750742.0,
450
+ "step": 2200
451
+ },
452
+ {
453
+ "entropy": 2.642529296875,
454
+ "epoch": 0.15,
455
+ "grad_norm": 1.770254373550415,
456
+ "learning_rate": 9.62751513836593e-05,
457
+ "loss": 2.7125,
458
+ "mean_token_accuracy": 0.43980305790901186,
459
+ "num_tokens": 6903600.0,
460
+ "step": 2250
461
+ },
462
+ {
463
+ "entropy": 2.7381689453125,
464
+ "epoch": 0.15333333333333332,
465
+ "grad_norm": 1.5834028720855713,
466
+ "learning_rate": 9.606801754349536e-05,
467
+ "loss": 2.8267,
468
+ "mean_token_accuracy": 0.42276035860180855,
469
+ "num_tokens": 7056618.0,
470
+ "step": 2300
471
+ },
472
+ {
473
+ "entropy": 2.6690234375,
474
+ "epoch": 0.15666666666666668,
475
+ "grad_norm": 2.3597967624664307,
476
+ "learning_rate": 9.58555145096199e-05,
477
+ "loss": 2.7116,
478
+ "mean_token_accuracy": 0.44172772198915483,
479
+ "num_tokens": 7211139.0,
480
+ "step": 2350
481
+ },
482
+ {
483
+ "entropy": 2.768017578125,
484
+ "epoch": 0.16,
485
+ "grad_norm": 1.9302066564559937,
486
+ "learning_rate": 9.563766704910587e-05,
487
+ "loss": 2.8864,
488
+ "mean_token_accuracy": 0.41909650415182115,
489
+ "num_tokens": 7364151.0,
490
+ "step": 2400
491
+ },
492
+ {
493
+ "entropy": 2.780185546875,
494
+ "epoch": 0.16333333333333333,
495
+ "grad_norm": 1.3915791511535645,
496
+ "learning_rate": 9.541450055191532e-05,
497
+ "loss": 2.8651,
498
+ "mean_token_accuracy": 0.42147023320198057,
499
+ "num_tokens": 7517656.0,
500
+ "step": 2450
501
+ },
502
+ {
503
+ "entropy": 2.5751953125,
504
+ "epoch": 0.16666666666666666,
505
+ "grad_norm": 1.6701171398162842,
506
+ "learning_rate": 9.518604102794009e-05,
507
+ "loss": 2.64,
508
+ "mean_token_accuracy": 0.4603299044072628,
509
+ "num_tokens": 7673602.0,
510
+ "step": 2500
511
+ },
512
+ {
513
+ "entropy": 2.818955078125,
514
+ "epoch": 0.17,
515
+ "grad_norm": 1.7646194696426392,
516
+ "learning_rate": 9.495231510397038e-05,
517
+ "loss": 2.8998,
518
+ "mean_token_accuracy": 0.4178720970451832,
519
+ "num_tokens": 7826563.0,
520
+ "step": 2550
521
+ },
522
+ {
523
+ "entropy": 2.7537109375,
524
+ "epoch": 0.17333333333333334,
525
+ "grad_norm": 1.6351436376571655,
526
+ "learning_rate": 9.471335002059149e-05,
527
+ "loss": 2.8501,
528
+ "mean_token_accuracy": 0.42110710859298706,
529
+ "num_tokens": 7980653.0,
530
+ "step": 2600
531
+ },
532
+ {
533
+ "entropy": 2.817265625,
534
+ "epoch": 0.17666666666666667,
535
+ "grad_norm": 1.7285945415496826,
536
+ "learning_rate": 9.446917362900891e-05,
537
+ "loss": 2.9076,
538
+ "mean_token_accuracy": 0.4160151961445808,
539
+ "num_tokens": 8133185.0,
540
+ "step": 2650
541
+ },
542
+ {
543
+ "entropy": 2.7827685546875,
544
+ "epoch": 0.18,
545
+ "grad_norm": 1.4033441543579102,
546
+ "learning_rate": 9.42198143878023e-05,
547
+ "loss": 2.8586,
548
+ "mean_token_accuracy": 0.42112465128302573,
549
+ "num_tokens": 8285809.0,
550
+ "step": 2700
551
+ },
552
+ {
553
+ "entropy": 2.774326171875,
554
+ "epoch": 0.18333333333333332,
555
+ "grad_norm": 1.9107087850570679,
556
+ "learning_rate": 9.39653013596086e-05,
557
+ "loss": 2.8601,
558
+ "mean_token_accuracy": 0.42484147623181345,
559
+ "num_tokens": 8437014.0,
560
+ "step": 2750
561
+ },
562
+ {
563
+ "entropy": 2.7293310546875,
564
+ "epoch": 0.18666666666666668,
565
+ "grad_norm": 1.7647576332092285,
566
+ "learning_rate": 9.37056642077349e-05,
567
+ "loss": 2.8109,
568
+ "mean_token_accuracy": 0.42852689415216444,
569
+ "num_tokens": 8590841.0,
570
+ "step": 2800
571
+ },
572
+ {
573
+ "entropy": 2.784404296875,
574
+ "epoch": 0.19,
575
+ "grad_norm": 1.812900424003601,
576
+ "learning_rate": 9.344093319270112e-05,
577
+ "loss": 2.8602,
578
+ "mean_token_accuracy": 0.4225932811200619,
579
+ "num_tokens": 8744061.0,
580
+ "step": 2850
581
+ },
582
+ {
583
+ "entropy": 2.75974609375,
584
+ "epoch": 0.19333333333333333,
585
+ "grad_norm": 1.953025460243225,
586
+ "learning_rate": 9.317113916871322e-05,
587
+ "loss": 2.8448,
588
+ "mean_token_accuracy": 0.42387092173099516,
589
+ "num_tokens": 8898279.0,
590
+ "step": 2900
591
+ },
592
+ {
593
+ "entropy": 2.763447265625,
594
+ "epoch": 0.19666666666666666,
595
+ "grad_norm": 3.064847707748413,
596
+ "learning_rate": 9.289631358006715e-05,
597
+ "loss": 2.8537,
598
+ "mean_token_accuracy": 0.42707418724894525,
599
+ "num_tokens": 9054284.0,
600
+ "step": 2950
601
+ },
602
+ {
603
+ "entropy": 2.806103515625,
604
+ "epoch": 0.2,
605
+ "grad_norm": 1.4979510307312012,
606
+ "learning_rate": 9.261648845748401e-05,
607
+ "loss": 2.8828,
608
+ "mean_token_accuracy": 0.4184405809640884,
609
+ "num_tokens": 9207157.0,
610
+ "step": 3000
611
+ },
612
+ {
613
+ "entropy": 2.6966796875,
614
+ "epoch": 0.20333333333333334,
615
+ "grad_norm": 1.7699885368347168,
616
+ "learning_rate": 9.233169641437694e-05,
617
+ "loss": 2.7583,
618
+ "mean_token_accuracy": 0.4364832893013954,
619
+ "num_tokens": 9361357.0,
620
+ "step": 3050
621
+ },
622
+ {
623
+ "entropy": 2.7894384765625,
624
+ "epoch": 0.20666666666666667,
625
+ "grad_norm": 1.7575098276138306,
626
+ "learning_rate": 9.204197064305001e-05,
627
+ "loss": 2.8602,
628
+ "mean_token_accuracy": 0.42046931490302086,
629
+ "num_tokens": 9513949.0,
630
+ "step": 3100
631
+ },
632
+ {
633
+ "entropy": 2.7716552734375,
634
+ "epoch": 0.21,
635
+ "grad_norm": 1.4345855712890625,
636
+ "learning_rate": 9.174734491082976e-05,
637
+ "loss": 2.8573,
638
+ "mean_token_accuracy": 0.42368178591132166,
639
+ "num_tokens": 9667494.0,
640
+ "step": 3150
641
+ },
642
+ {
643
+ "entropy": 2.760703125,
644
+ "epoch": 0.21333333333333335,
645
+ "grad_norm": 1.9951531887054443,
646
+ "learning_rate": 9.14478535561295e-05,
647
+ "loss": 2.8315,
648
+ "mean_token_accuracy": 0.4247917515039444,
649
+ "num_tokens": 9820692.0,
650
+ "step": 3200
651
+ },
652
+ {
653
+ "entropy": 2.781962890625,
654
+ "epoch": 0.21666666666666667,
655
+ "grad_norm": 2.224896192550659,
656
+ "learning_rate": 9.114353148444735e-05,
657
+ "loss": 2.8542,
658
+ "mean_token_accuracy": 0.42145723387598993,
659
+ "num_tokens": 9973866.0,
660
+ "step": 3250
661
+ },
662
+ {
663
+ "entropy": 2.78275390625,
664
+ "epoch": 0.22,
665
+ "grad_norm": 1.8612408638000488,
666
+ "learning_rate": 9.08344141642979e-05,
667
+ "loss": 2.8495,
668
+ "mean_token_accuracy": 0.4234173122048378,
669
+ "num_tokens": 10127001.0,
670
+ "step": 3300
671
+ },
672
+ {
673
+ "entropy": 2.79578125,
674
+ "epoch": 0.22333333333333333,
675
+ "grad_norm": 1.4872896671295166,
676
+ "learning_rate": 9.052053762307848e-05,
677
+ "loss": 2.871,
678
+ "mean_token_accuracy": 0.41822456374764444,
679
+ "num_tokens": 10279434.0,
680
+ "step": 3350
681
+ },
682
+ {
683
+ "entropy": 2.8016796875,
684
+ "epoch": 0.22666666666666666,
685
+ "grad_norm": 1.5314096212387085,
686
+ "learning_rate": 9.020193844287012e-05,
687
+ "loss": 2.881,
688
+ "mean_token_accuracy": 0.41675362810492517,
689
+ "num_tokens": 10432221.0,
690
+ "step": 3400
691
+ },
692
+ {
693
+ "entropy": 2.8003515625,
694
+ "epoch": 0.23,
695
+ "grad_norm": 1.9040875434875488,
696
+ "learning_rate": 8.987865375617402e-05,
697
+ "loss": 2.8765,
698
+ "mean_token_accuracy": 0.42052937611937524,
699
+ "num_tokens": 10585539.0,
700
+ "step": 3450
701
+ },
702
+ {
703
+ "entropy": 2.783642578125,
704
+ "epoch": 0.23333333333333334,
705
+ "grad_norm": 3.2793874740600586,
706
+ "learning_rate": 8.955072124158362e-05,
707
+ "loss": 2.8473,
708
+ "mean_token_accuracy": 0.42251690953969956,
709
+ "num_tokens": 10740811.0,
710
+ "step": 3500
711
+ },
712
+ {
713
+ "entropy": 2.758759765625,
714
+ "epoch": 0.23666666666666666,
715
+ "grad_norm": 1.7231287956237793,
716
+ "learning_rate": 8.921817911939343e-05,
717
+ "loss": 2.8492,
718
+ "mean_token_accuracy": 0.42849296987056734,
719
+ "num_tokens": 10894631.0,
720
+ "step": 3550
721
+ },
722
+ {
723
+ "entropy": 2.785625,
724
+ "epoch": 0.24,
725
+ "grad_norm": 1.48932683467865,
726
+ "learning_rate": 8.888106614714424e-05,
727
+ "loss": 2.8575,
728
+ "mean_token_accuracy": 0.4251786956191063,
729
+ "num_tokens": 11048023.0,
730
+ "step": 3600
731
+ },
732
+ {
733
+ "entropy": 2.729296875,
734
+ "epoch": 0.24333333333333335,
735
+ "grad_norm": 3.8472039699554443,
736
+ "learning_rate": 8.853942161510616e-05,
737
+ "loss": 2.7997,
738
+ "mean_token_accuracy": 0.4357279340922833,
739
+ "num_tokens": 11202143.0,
740
+ "step": 3650
741
+ },
742
+ {
743
+ "entropy": 2.7321875,
744
+ "epoch": 0.24666666666666667,
745
+ "grad_norm": 1.7587218284606934,
746
+ "learning_rate": 8.819328534169922e-05,
747
+ "loss": 2.8042,
748
+ "mean_token_accuracy": 0.42584114834666253,
749
+ "num_tokens": 11356394.0,
750
+ "step": 3700
751
+ },
752
+ {
753
+ "entropy": 2.8251953125,
754
+ "epoch": 0.25,
755
+ "grad_norm": 2.1818931102752686,
756
+ "learning_rate": 8.78426976688526e-05,
757
+ "loss": 2.8964,
758
+ "mean_token_accuracy": 0.4179812644422054,
759
+ "num_tokens": 11509121.0,
760
+ "step": 3750
761
+ },
762
+ {
763
+ "entropy": 2.789833984375,
764
+ "epoch": 0.25333333333333335,
765
+ "grad_norm": 2.112947463989258,
766
+ "learning_rate": 8.748769945730288e-05,
767
+ "loss": 2.8656,
768
+ "mean_token_accuracy": 0.4251732324063778,
769
+ "num_tokens": 11662329.0,
770
+ "step": 3800
771
+ },
772
+ {
773
+ "entropy": 2.792666015625,
774
+ "epoch": 0.25666666666666665,
775
+ "grad_norm": 1.513971209526062,
776
+ "learning_rate": 8.712833208183166e-05,
777
+ "loss": 2.8566,
778
+ "mean_token_accuracy": 0.42212075248360637,
779
+ "num_tokens": 11815604.0,
780
+ "step": 3850
781
+ },
782
+ {
783
+ "entropy": 2.785654296875,
784
+ "epoch": 0.26,
785
+ "grad_norm": 3.849529981613159,
786
+ "learning_rate": 8.676463742644341e-05,
787
+ "loss": 2.8656,
788
+ "mean_token_accuracy": 0.422549641430378,
789
+ "num_tokens": 11968459.0,
790
+ "step": 3900
791
+ },
792
+ {
793
+ "entropy": 2.757626953125,
794
+ "epoch": 0.2633333333333333,
795
+ "grad_norm": 2.1418285369873047,
796
+ "learning_rate": 8.639665787948391e-05,
797
+ "loss": 2.8146,
798
+ "mean_token_accuracy": 0.4283721697330475,
799
+ "num_tokens": 12122211.0,
800
+ "step": 3950
801
+ },
802
+ {
803
+ "entropy": 2.795537109375,
804
+ "epoch": 0.26666666666666666,
805
+ "grad_norm": 1.8683708906173706,
806
+ "learning_rate": 8.602443632869988e-05,
807
+ "loss": 2.8787,
808
+ "mean_token_accuracy": 0.41945122107863425,
809
+ "num_tokens": 12275938.0,
810
+ "step": 4000
811
+ },
812
+ {
813
+ "entropy": 2.8119921875,
814
+ "epoch": 0.27,
815
+ "grad_norm": 1.687473177909851,
816
+ "learning_rate": 8.564801615624053e-05,
817
+ "loss": 2.8852,
818
+ "mean_token_accuracy": 0.4206313456594944,
819
+ "num_tokens": 12429202.0,
820
+ "step": 4050
821
+ },
822
+ {
823
+ "entropy": 2.773330078125,
824
+ "epoch": 0.2733333333333333,
825
+ "grad_norm": 1.4739123582839966,
826
+ "learning_rate": 8.526744123360133e-05,
827
+ "loss": 2.8549,
828
+ "mean_token_accuracy": 0.42225955575704577,
829
+ "num_tokens": 12582688.0,
830
+ "step": 4100
831
+ },
832
+ {
833
+ "entropy": 2.7910546875,
834
+ "epoch": 0.27666666666666667,
835
+ "grad_norm": 1.9559763669967651,
836
+ "learning_rate": 8.488275591651081e-05,
837
+ "loss": 2.8615,
838
+ "mean_token_accuracy": 0.4222630296647549,
839
+ "num_tokens": 12736626.0,
840
+ "step": 4150
841
+ },
842
+ {
843
+ "entropy": 2.821591796875,
844
+ "epoch": 0.28,
845
+ "grad_norm": 1.7581783533096313,
846
+ "learning_rate": 8.449400503976103e-05,
847
+ "loss": 2.8913,
848
+ "mean_token_accuracy": 0.4204542309045792,
849
+ "num_tokens": 12888872.0,
850
+ "step": 4200
851
+ },
852
+ {
853
+ "entropy": 2.800439453125,
854
+ "epoch": 0.2833333333333333,
855
+ "grad_norm": 1.909140944480896,
856
+ "learning_rate": 8.410123391198197e-05,
857
+ "loss": 2.8761,
858
+ "mean_token_accuracy": 0.4198679532110691,
859
+ "num_tokens": 13041769.0,
860
+ "step": 4250
861
+ },
862
+ {
863
+ "entropy": 2.785537109375,
864
+ "epoch": 0.2866666666666667,
865
+ "grad_norm": 2.516155481338501,
866
+ "learning_rate": 8.3704488310361e-05,
867
+ "loss": 2.8549,
868
+ "mean_token_accuracy": 0.4194681803882122,
869
+ "num_tokens": 153377.0,
870
+ "step": 4300
871
+ },
872
+ {
873
+ "entropy": 2.823359375,
874
+ "epoch": 0.29,
875
+ "grad_norm": 1.5486787557601929,
876
+ "learning_rate": 8.330381447530747e-05,
877
+ "loss": 2.9057,
878
+ "mean_token_accuracy": 0.41606380403041837,
879
+ "num_tokens": 306041.0,
880
+ "step": 4350
881
+ },
882
+ {
883
+ "entropy": 2.7942578125,
884
+ "epoch": 0.29333333333333333,
885
+ "grad_norm": 1.7242319583892822,
886
+ "learning_rate": 8.289925910506346e-05,
887
+ "loss": 2.8545,
888
+ "mean_token_accuracy": 0.42336358562111853,
889
+ "num_tokens": 459047.0,
890
+ "step": 4400
891
+ },
892
+ {
893
+ "entropy": 2.813759765625,
894
+ "epoch": 0.2966666666666667,
895
+ "grad_norm": 4.094738960266113,
896
+ "learning_rate": 8.249086935026114e-05,
897
+ "loss": 2.8827,
898
+ "mean_token_accuracy": 0.4195826704800129,
899
+ "num_tokens": 612962.0,
900
+ "step": 4450
901
+ },
902
+ {
903
+ "entropy": 2.77751953125,
904
+ "epoch": 0.3,
905
+ "grad_norm": 1.7947832345962524,
906
+ "learning_rate": 8.207869280842738e-05,
907
+ "loss": 2.8503,
908
+ "mean_token_accuracy": 0.4240879508852959,
909
+ "num_tokens": 767235.0,
910
+ "step": 4500
911
+ },
912
+ {
913
+ "entropy": 2.79923828125,
914
+ "epoch": 0.30333333333333334,
915
+ "grad_norm": 2.434159517288208,
916
+ "learning_rate": 8.166277751843632e-05,
917
+ "loss": 2.8675,
918
+ "mean_token_accuracy": 0.4212272399663925,
919
+ "num_tokens": 154786.0,
920
+ "step": 4550
921
+ },
922
+ {
923
+ "entropy": 2.763828125,
924
+ "epoch": 0.30666666666666664,
925
+ "grad_norm": 3.8289670944213867,
926
+ "learning_rate": 8.124317195491044e-05,
927
+ "loss": 2.8254,
928
+ "mean_token_accuracy": 0.4252131301164627,
929
+ "num_tokens": 308538.0,
930
+ "step": 4600
931
+ },
932
+ {
933
+ "entropy": 2.7729248046875,
934
+ "epoch": 0.31,
935
+ "grad_norm": 2.0406832695007324,
936
+ "learning_rate": 8.081992502257095e-05,
937
+ "loss": 2.8387,
938
+ "mean_token_accuracy": 0.42438063144683835,
939
+ "num_tokens": 461672.0,
940
+ "step": 4650
941
+ },
942
+ {
943
+ "entropy": 2.8070703125,
944
+ "epoch": 0.31333333333333335,
945
+ "grad_norm": 1.755568265914917,
946
+ "learning_rate": 8.039308605053788e-05,
947
+ "loss": 2.8856,
948
+ "mean_token_accuracy": 0.4205561250448227,
949
+ "num_tokens": 615569.0,
950
+ "step": 4700
951
+ },
952
+ {
953
+ "entropy": 2.77701171875,
954
+ "epoch": 0.31666666666666665,
955
+ "grad_norm": 1.8182449340820312,
956
+ "learning_rate": 7.996270478658084e-05,
957
+ "loss": 2.8534,
958
+ "mean_token_accuracy": 0.4222332505881786,
959
+ "num_tokens": 768145.0,
960
+ "step": 4750
961
+ },
962
+ {
963
+ "entropy": 2.821943359375,
964
+ "epoch": 0.32,
965
+ "grad_norm": 2.8805055618286133,
966
+ "learning_rate": 7.952883139132104e-05,
967
+ "loss": 2.8929,
968
+ "mean_token_accuracy": 0.4197997708618641,
969
+ "num_tokens": 921607.0,
970
+ "step": 4800
971
+ },
972
+ {
973
+ "entropy": 2.7778515625,
974
+ "epoch": 0.3233333333333333,
975
+ "grad_norm": 1.652905821800232,
976
+ "learning_rate": 7.909151643238497e-05,
977
+ "loss": 2.8585,
978
+ "mean_token_accuracy": 0.41916815549135206,
979
+ "num_tokens": 1075100.0,
980
+ "step": 4850
981
+ },
982
+ {
983
+ "entropy": 2.784873046875,
984
+ "epoch": 0.32666666666666666,
985
+ "grad_norm": 2.501504421234131,
986
+ "learning_rate": 7.865081087851088e-05,
987
+ "loss": 2.8601,
988
+ "mean_token_accuracy": 0.42385279685258864,
989
+ "num_tokens": 1229298.0,
990
+ "step": 4900
991
+ },
992
+ {
993
+ "entropy": 2.826240234375,
994
+ "epoch": 0.33,
995
+ "grad_norm": 2.0058343410491943,
996
+ "learning_rate": 7.820676609360838e-05,
997
+ "loss": 2.9167,
998
+ "mean_token_accuracy": 0.4164962163567543,
999
+ "num_tokens": 1382332.0,
1000
+ "step": 4950
1001
+ },
1002
+ {
1003
+ "entropy": 2.8257421875,
1004
+ "epoch": 0.3333333333333333,
1005
+ "grad_norm": 2.2245631217956543,
1006
+ "learning_rate": 7.775943383077195e-05,
1007
+ "loss": 2.8978,
1008
+ "mean_token_accuracy": 0.41643302455544473,
1009
+ "num_tokens": 1535929.0,
1010
+ "step": 5000
1011
+ },
1012
+ {
1013
+ "entropy": 2.791455078125,
1014
+ "epoch": 0.33666666666666667,
1015
+ "grad_norm": 4.734055519104004,
1016
+ "learning_rate": 7.730886622624934e-05,
1017
+ "loss": 2.8511,
1018
+ "mean_token_accuracy": 0.42518281653523443,
1019
+ "num_tokens": 1689131.0,
1020
+ "step": 5050
1021
+ },
1022
+ {
1023
+ "entropy": 2.818017578125,
1024
+ "epoch": 0.34,
1025
+ "grad_norm": 1.875542402267456,
1026
+ "learning_rate": 7.685511579336488e-05,
1027
+ "loss": 2.8885,
1028
+ "mean_token_accuracy": 0.41853062853217127,
1029
+ "num_tokens": 1842796.0,
1030
+ "step": 5100
1031
+ },
1032
+ {
1033
+ "entropy": 2.827646484375,
1034
+ "epoch": 0.3433333333333333,
1035
+ "grad_norm": 4.402409076690674,
1036
+ "learning_rate": 7.639823541639927e-05,
1037
+ "loss": 2.905,
1038
+ "mean_token_accuracy": 0.4157783268392086,
1039
+ "num_tokens": 1995968.0,
1040
+ "step": 5150
1041
+ },
1042
+ {
1043
+ "entropy": 2.84697265625,
1044
+ "epoch": 0.3466666666666667,
1045
+ "grad_norm": 2.0653014183044434,
1046
+ "learning_rate": 7.593827834442592e-05,
1047
+ "loss": 2.9107,
1048
+ "mean_token_accuracy": 0.41715434193611145,
1049
+ "num_tokens": 2150177.0,
1050
+ "step": 5200
1051
+ },
1052
+ {
1053
+ "entropy": 2.760859375,
1054
+ "epoch": 0.35,
1055
+ "grad_norm": 2.4690027236938477,
1056
+ "learning_rate": 7.547529818510475e-05,
1057
+ "loss": 2.8484,
1058
+ "mean_token_accuracy": 0.42122889682650566,
1059
+ "num_tokens": 2303767.0,
1060
+ "step": 5250
1061
+ },
1062
+ {
1063
+ "entropy": 2.799462890625,
1064
+ "epoch": 0.35333333333333333,
1065
+ "grad_norm": 1.8778904676437378,
1066
+ "learning_rate": 7.50093488984343e-05,
1067
+ "loss": 2.8664,
1068
+ "mean_token_accuracy": 0.4221074862778187,
1069
+ "num_tokens": 2456365.0,
1070
+ "step": 5300
1071
+ },
1072
+ {
1073
+ "entropy": 2.812568359375,
1074
+ "epoch": 0.3566666666666667,
1075
+ "grad_norm": 2.1682090759277344,
1076
+ "learning_rate": 7.454048479046277e-05,
1077
+ "loss": 2.8881,
1078
+ "mean_token_accuracy": 0.4154551622271538,
1079
+ "num_tokens": 2609470.0,
1080
+ "step": 5350
1081
+ },
1082
+ {
1083
+ "entropy": 2.8146337890625,
1084
+ "epoch": 0.36,
1085
+ "grad_norm": 2.3601555824279785,
1086
+ "learning_rate": 7.406876050695859e-05,
1087
+ "loss": 2.8836,
1088
+ "mean_token_accuracy": 0.4197733694314957,
1089
+ "num_tokens": 2763581.0,
1090
+ "step": 5400
1091
+ },
1092
+ {
1093
+ "entropy": 2.773623046875,
1094
+ "epoch": 0.36333333333333334,
1095
+ "grad_norm": 1.702940583229065,
1096
+ "learning_rate": 7.359423102704161e-05,
1097
+ "loss": 2.8451,
1098
+ "mean_token_accuracy": 0.42223391726613047,
1099
+ "num_tokens": 2916751.0,
1100
+ "step": 5450
1101
+ },
1102
+ {
1103
+ "entropy": 2.83443359375,
1104
+ "epoch": 0.36666666666666664,
1105
+ "grad_norm": 2.1349689960479736,
1106
+ "learning_rate": 7.311695165677523e-05,
1107
+ "loss": 2.9013,
1108
+ "mean_token_accuracy": 0.41880217954516413,
1109
+ "num_tokens": 3070227.0,
1110
+ "step": 5500
1111
+ },
1112
+ {
1113
+ "entropy": 2.82658203125,
1114
+ "epoch": 0.37,
1115
+ "grad_norm": 4.791004657745361,
1116
+ "learning_rate": 7.263697802272056e-05,
1117
+ "loss": 2.9068,
1118
+ "mean_token_accuracy": 0.41114905059337614,
1119
+ "num_tokens": 3223643.0,
1120
+ "step": 5550
1121
+ },
1122
+ {
1123
+ "entropy": 2.801572265625,
1124
+ "epoch": 0.37333333333333335,
1125
+ "grad_norm": 3.701864719390869,
1126
+ "learning_rate": 7.215436606545323e-05,
1127
+ "loss": 2.8767,
1128
+ "mean_token_accuracy": 0.4190987147390842,
1129
+ "num_tokens": 3377864.0,
1130
+ "step": 5600
1131
+ },
1132
+ {
1133
+ "entropy": 2.75138671875,
1134
+ "epoch": 0.37666666666666665,
1135
+ "grad_norm": 1.8020061254501343,
1136
+ "learning_rate": 7.16691720330434e-05,
1137
+ "loss": 2.8241,
1138
+ "mean_token_accuracy": 0.4296322312951088,
1139
+ "num_tokens": 3531566.0,
1140
+ "step": 5650
1141
+ },
1142
+ {
1143
+ "entropy": 2.8160107421875,
1144
+ "epoch": 0.38,
1145
+ "grad_norm": 2.0307564735412598,
1146
+ "learning_rate": 7.118145247450033e-05,
1147
+ "loss": 2.8915,
1148
+ "mean_token_accuracy": 0.42226585134863853,
1149
+ "num_tokens": 3685105.0,
1150
+ "step": 5700
1151
+ },
1152
+ {
1153
+ "entropy": 2.8155859375,
1154
+ "epoch": 0.38333333333333336,
1155
+ "grad_norm": 2.144331693649292,
1156
+ "learning_rate": 7.06912642331814e-05,
1157
+ "loss": 2.8781,
1158
+ "mean_token_accuracy": 0.418236046731472,
1159
+ "num_tokens": 3838999.0,
1160
+ "step": 5750
1161
+ },
1162
+ {
1163
+ "entropy": 2.80875,
1164
+ "epoch": 0.38666666666666666,
1165
+ "grad_norm": 2.043344497680664,
1166
+ "learning_rate": 7.01986644401672e-05,
1167
+ "loss": 2.8866,
1168
+ "mean_token_accuracy": 0.4175939907133579,
1169
+ "num_tokens": 3992733.0,
1170
+ "step": 5800
1171
+ },
1172
+ {
1173
+ "entropy": 2.81671875,
1174
+ "epoch": 0.39,
1175
+ "grad_norm": 1.998583436012268,
1176
+ "learning_rate": 6.970371050760291e-05,
1177
+ "loss": 2.8791,
1178
+ "mean_token_accuracy": 0.4197034777700901,
1179
+ "num_tokens": 4146003.0,
1180
+ "step": 5850
1181
+ },
1182
+ {
1183
+ "entropy": 2.8267578125,
1184
+ "epoch": 0.3933333333333333,
1185
+ "grad_norm": 2.0911405086517334,
1186
+ "learning_rate": 6.920646012200693e-05,
1187
+ "loss": 2.9084,
1188
+ "mean_token_accuracy": 0.41816318228840826,
1189
+ "num_tokens": 4298968.0,
1190
+ "step": 5900
1191
+ },
1192
+ {
1193
+ "entropy": 2.79427734375,
1194
+ "epoch": 0.39666666666666667,
1195
+ "grad_norm": 3.2191355228424072,
1196
+ "learning_rate": 6.870697123754762e-05,
1197
+ "loss": 2.8667,
1198
+ "mean_token_accuracy": 0.4213761845231056,
1199
+ "num_tokens": 4452607.0,
1200
+ "step": 5950
1201
+ },
1202
+ {
1203
+ "entropy": 2.8197265625,
1204
+ "epoch": 0.4,
1205
+ "grad_norm": 2.1716251373291016,
1206
+ "learning_rate": 6.820530206928869e-05,
1207
+ "loss": 2.8931,
1208
+ "mean_token_accuracy": 0.41745673775672915,
1209
+ "num_tokens": 4606820.0,
1210
+ "step": 6000
1211
+ },
1212
+ {
1213
+ "entropy": 2.85451171875,
1214
+ "epoch": 0.4033333333333333,
1215
+ "grad_norm": 1.6433621644973755,
1216
+ "learning_rate": 6.770151108640437e-05,
1217
+ "loss": 2.9328,
1218
+ "mean_token_accuracy": 0.41258298978209496,
1219
+ "num_tokens": 4759613.0,
1220
+ "step": 6050
1221
+ },
1222
+ {
1223
+ "entropy": 2.8144921875,
1224
+ "epoch": 0.4066666666666667,
1225
+ "grad_norm": 3.3031110763549805,
1226
+ "learning_rate": 6.719565700536478e-05,
1227
+ "loss": 2.8946,
1228
+ "mean_token_accuracy": 0.41846631169319154,
1229
+ "num_tokens": 4912212.0,
1230
+ "step": 6100
1231
+ },
1232
+ {
1233
+ "entropy": 2.829951171875,
1234
+ "epoch": 0.41,
1235
+ "grad_norm": 2.026379108428955,
1236
+ "learning_rate": 6.66877987830927e-05,
1237
+ "loss": 2.9061,
1238
+ "mean_token_accuracy": 0.4161474916338921,
1239
+ "num_tokens": 5065446.0,
1240
+ "step": 6150
1241
+ },
1242
+ {
1243
+ "entropy": 2.817451171875,
1244
+ "epoch": 0.41333333333333333,
1245
+ "grad_norm": 2.2108099460601807,
1246
+ "learning_rate": 6.617799561009204e-05,
1247
+ "loss": 2.8878,
1248
+ "mean_token_accuracy": 0.41852827087044714,
1249
+ "num_tokens": 5218508.0,
1250
+ "step": 6200
1251
+ },
1252
+ {
1253
+ "entropy": 2.808818359375,
1254
+ "epoch": 0.4166666666666667,
1255
+ "grad_norm": 1.766530990600586,
1256
+ "learning_rate": 6.56663069035493e-05,
1257
+ "loss": 2.8823,
1258
+ "mean_token_accuracy": 0.41536651641130445,
1259
+ "num_tokens": 5372588.0,
1260
+ "step": 6250
1261
+ },
1262
+ {
1263
+ "entropy": 2.85748046875,
1264
+ "epoch": 0.42,
1265
+ "grad_norm": 2.2330243587493896,
1266
+ "learning_rate": 6.515279230040856e-05,
1267
+ "loss": 2.924,
1268
+ "mean_token_accuracy": 0.4154829254746437,
1269
+ "num_tokens": 5525866.0,
1270
+ "step": 6300
1271
+ },
1272
+ {
1273
+ "entropy": 2.813984375,
1274
+ "epoch": 0.42333333333333334,
1275
+ "grad_norm": 2.162248373031616,
1276
+ "learning_rate": 6.46375116504208e-05,
1277
+ "loss": 2.8969,
1278
+ "mean_token_accuracy": 0.41659231394529345,
1279
+ "num_tokens": 5677992.0,
1280
+ "step": 6350
1281
+ },
1282
+ {
1283
+ "entropy": 2.856396484375,
1284
+ "epoch": 0.4266666666666667,
1285
+ "grad_norm": 1.88718843460083,
1286
+ "learning_rate": 6.412052500916845e-05,
1287
+ "loss": 2.9383,
1288
+ "mean_token_accuracy": 0.41758054718375204,
1289
+ "num_tokens": 5831619.0,
1290
+ "step": 6400
1291
+ },
1292
+ {
1293
+ "entropy": 2.83671875,
1294
+ "epoch": 0.43,
1295
+ "grad_norm": 1.756526231765747,
1296
+ "learning_rate": 6.360189263106599e-05,
1297
+ "loss": 2.9082,
1298
+ "mean_token_accuracy": 0.41605663910508156,
1299
+ "num_tokens": 5984820.0,
1300
+ "step": 6450
1301
+ },
1302
+ {
1303
+ "entropy": 2.8180078125,
1304
+ "epoch": 0.43333333333333335,
1305
+ "grad_norm": 1.8252670764923096,
1306
+ "learning_rate": 6.308167496233734e-05,
1307
+ "loss": 2.8944,
1308
+ "mean_token_accuracy": 0.4179633270204067,
1309
+ "num_tokens": 6138386.0,
1310
+ "step": 6500
1311
+ },
1312
+ {
1313
+ "entropy": 2.811591796875,
1314
+ "epoch": 0.43666666666666665,
1315
+ "grad_norm": 4.292020320892334,
1316
+ "learning_rate": 6.255993263397083e-05,
1317
+ "loss": 2.8723,
1318
+ "mean_token_accuracy": 0.4214246068894863,
1319
+ "num_tokens": 6291806.0,
1320
+ "step": 6550
1321
+ },
1322
+ {
1323
+ "entropy": 2.8257421875,
1324
+ "epoch": 0.44,
1325
+ "grad_norm": 3.311739921569824,
1326
+ "learning_rate": 6.20367264546528e-05,
1327
+ "loss": 2.896,
1328
+ "mean_token_accuracy": 0.41951198875904083,
1329
+ "num_tokens": 6443998.0,
1330
+ "step": 6600
1331
+ },
1332
+ {
1333
+ "entropy": 2.8002734375,
1334
+ "epoch": 0.44333333333333336,
1335
+ "grad_norm": 1.8693840503692627,
1336
+ "learning_rate": 6.151211740368034e-05,
1337
+ "loss": 2.8698,
1338
+ "mean_token_accuracy": 0.4244578213989735,
1339
+ "num_tokens": 6597406.0,
1340
+ "step": 6650
1341
+ },
1342
+ {
1343
+ "entropy": 2.8307421875,
1344
+ "epoch": 0.44666666666666666,
1345
+ "grad_norm": 1.949150800704956,
1346
+ "learning_rate": 6.098616662385419e-05,
1347
+ "loss": 2.9105,
1348
+ "mean_token_accuracy": 0.4161803536117077,
1349
+ "num_tokens": 6750694.0,
1350
+ "step": 6700
1351
+ },
1352
+ {
1353
+ "entropy": 2.8480859375,
1354
+ "epoch": 0.45,
1355
+ "grad_norm": 1.7648441791534424,
1356
+ "learning_rate": 6.0458935414352635e-05,
1357
+ "loss": 2.925,
1358
+ "mean_token_accuracy": 0.41687978282570837,
1359
+ "num_tokens": 6903563.0,
1360
+ "step": 6750
1361
+ },
1362
+ {
1363
+ "entropy": 2.8136328125,
1364
+ "epoch": 0.4533333333333333,
1365
+ "grad_norm": 2.3119606971740723,
1366
+ "learning_rate": 5.993048522358704e-05,
1367
+ "loss": 2.881,
1368
+ "mean_token_accuracy": 0.418667249083519,
1369
+ "num_tokens": 7057216.0,
1370
+ "step": 6800
1371
+ },
1372
+ {
1373
+ "entropy": 2.8003369140625,
1374
+ "epoch": 0.45666666666666667,
1375
+ "grad_norm": 1.8502593040466309,
1376
+ "learning_rate": 5.94008776420402e-05,
1377
+ "loss": 2.8811,
1378
+ "mean_token_accuracy": 0.4245522205531597,
1379
+ "num_tokens": 7211517.0,
1380
+ "step": 6850
1381
+ },
1382
+ {
1383
+ "entropy": 2.8467724609375,
1384
+ "epoch": 0.46,
1385
+ "grad_norm": 3.208087682723999,
1386
+ "learning_rate": 5.887017439508796e-05,
1387
+ "loss": 2.9237,
1388
+ "mean_token_accuracy": 0.4179289835691452,
1389
+ "num_tokens": 7364204.0,
1390
+ "step": 6900
1391
+ },
1392
+ {
1393
+ "entropy": 2.7983544921875,
1394
+ "epoch": 0.4633333333333333,
1395
+ "grad_norm": 1.8808454275131226,
1396
+ "learning_rate": 5.833843733580512e-05,
1397
+ "loss": 2.8733,
1398
+ "mean_token_accuracy": 0.4250455841422081,
1399
+ "num_tokens": 7519008.0,
1400
+ "step": 6950
1401
+ },
1402
+ {
1403
+ "entropy": 2.781240234375,
1404
+ "epoch": 0.4666666666666667,
1405
+ "grad_norm": 3.435323476791382,
1406
+ "learning_rate": 5.78057284377566e-05,
1407
+ "loss": 2.837,
1408
+ "mean_token_accuracy": 0.4327175974845886,
1409
+ "num_tokens": 7671413.0,
1410
+ "step": 7000
1411
+ },
1412
+ {
1413
+ "entropy": 2.8481982421875,
1414
+ "epoch": 0.47,
1415
+ "grad_norm": 3.0656440258026123,
1416
+ "learning_rate": 5.7272109787774354e-05,
1417
+ "loss": 2.925,
1418
+ "mean_token_accuracy": 0.4172740423679352,
1419
+ "num_tokens": 7824483.0,
1420
+ "step": 7050
1421
+ },
1422
+ {
1423
+ "entropy": 2.809375,
1424
+ "epoch": 0.47333333333333333,
1425
+ "grad_norm": 2.2237229347229004,
1426
+ "learning_rate": 5.6737643578721344e-05,
1427
+ "loss": 2.9068,
1428
+ "mean_token_accuracy": 0.42137662798166275,
1429
+ "num_tokens": 7978009.0,
1430
+ "step": 7100
1431
+ },
1432
+ {
1433
+ "entropy": 2.84494140625,
1434
+ "epoch": 0.4766666666666667,
1435
+ "grad_norm": 1.875733733177185,
1436
+ "learning_rate": 5.620239210224284e-05,
1437
+ "loss": 2.923,
1438
+ "mean_token_accuracy": 0.41358689829707146,
1439
+ "num_tokens": 8130507.0,
1440
+ "step": 7150
1441
+ },
1442
+ {
1443
+ "entropy": 2.826162109375,
1444
+ "epoch": 0.48,
1445
+ "grad_norm": 1.910385251045227,
1446
+ "learning_rate": 5.566641774150652e-05,
1447
+ "loss": 2.8868,
1448
+ "mean_token_accuracy": 0.41940944388508794,
1449
+ "num_tokens": 8285593.0,
1450
+ "step": 7200
1451
+ },
1452
+ {
1453
+ "entropy": 2.7760546875,
1454
+ "epoch": 0.48333333333333334,
1455
+ "grad_norm": 2.746701955795288,
1456
+ "learning_rate": 5.512978296393162e-05,
1457
+ "loss": 2.8537,
1458
+ "mean_token_accuracy": 0.42209434166550636,
1459
+ "num_tokens": 8440418.0,
1460
+ "step": 7250
1461
+ },
1462
+ {
1463
+ "entropy": 2.8288330078125,
1464
+ "epoch": 0.4866666666666667,
1465
+ "grad_norm": 2.236929178237915,
1466
+ "learning_rate": 5.459255031390855e-05,
1467
+ "loss": 2.908,
1468
+ "mean_token_accuracy": 0.41973535150289537,
1469
+ "num_tokens": 8593754.0,
1470
+ "step": 7300
1471
+ },
1472
+ {
1473
+ "entropy": 2.8191015625,
1474
+ "epoch": 0.49,
1475
+ "grad_norm": 1.9573389291763306,
1476
+ "learning_rate": 5.4054782405509285e-05,
1477
+ "loss": 2.8843,
1478
+ "mean_token_accuracy": 0.4191365033388138,
1479
+ "num_tokens": 8746877.0,
1480
+ "step": 7350
1481
+ },
1482
+ {
1483
+ "entropy": 2.8084716796875,
1484
+ "epoch": 0.49333333333333335,
1485
+ "grad_norm": 2.003927230834961,
1486
+ "learning_rate": 5.351654191518975e-05,
1487
+ "loss": 2.8658,
1488
+ "mean_token_accuracy": 0.4223553538322449,
1489
+ "num_tokens": 8900625.0,
1490
+ "step": 7400
1491
+ },
1492
+ {
1493
+ "entropy": 2.816279296875,
1494
+ "epoch": 0.49666666666666665,
1495
+ "grad_norm": 2.671165943145752,
1496
+ "learning_rate": 5.2977891574484994e-05,
1497
+ "loss": 2.8967,
1498
+ "mean_token_accuracy": 0.42066063448786734,
1499
+ "num_tokens": 9054117.0,
1500
+ "step": 7450
1501
+ },
1502
+ {
1503
+ "entropy": 2.8142578125,
1504
+ "epoch": 0.5,
1505
+ "grad_norm": 2.034046173095703,
1506
+ "learning_rate": 5.243889416269775e-05,
1507
+ "loss": 2.8817,
1508
+ "mean_token_accuracy": 0.4220552511513233,
1509
+ "num_tokens": 9208425.0,
1510
+ "step": 7500
1511
+ },
1512
+ {
1513
+ "entropy": 2.809599609375,
1514
+ "epoch": 0.5033333333333333,
1515
+ "grad_norm": 2.3132572174072266,
1516
+ "learning_rate": 5.189961249958174e-05,
1517
+ "loss": 2.8701,
1518
+ "mean_token_accuracy": 0.4232664656639099,
1519
+ "num_tokens": 9360752.0,
1520
+ "step": 7550
1521
+ },
1522
+ {
1523
+ "entropy": 2.840048828125,
1524
+ "epoch": 0.5066666666666667,
1525
+ "grad_norm": 1.736668348312378,
1526
+ "learning_rate": 5.136010943801989e-05,
1527
+ "loss": 2.9123,
1528
+ "mean_token_accuracy": 0.41717381954193117,
1529
+ "num_tokens": 9514216.0,
1530
+ "step": 7600
1531
+ },
1532
+ {
1533
+ "entropy": 2.48101318359375,
1534
+ "epoch": 0.51,
1535
+ "grad_norm": 3.323343276977539,
1536
+ "learning_rate": 5.082044785669897e-05,
1537
+ "loss": 2.5754,
1538
+ "mean_token_accuracy": 0.4657186330854893,
1539
+ "num_tokens": 9663481.0,
1540
+ "step": 7650
1541
+ },
1542
+ {
1543
+ "entropy": 2.82603515625,
1544
+ "epoch": 0.5133333333333333,
1545
+ "grad_norm": 1.8825453519821167,
1546
+ "learning_rate": 5.028069065278113e-05,
1547
+ "loss": 2.9191,
1548
+ "mean_token_accuracy": 0.41583023115992546,
1549
+ "num_tokens": 9817354.0,
1550
+ "step": 7700
1551
+ },
1552
+ {
1553
+ "entropy": 2.7997119140625,
1554
+ "epoch": 0.5166666666666667,
1555
+ "grad_norm": 2.3555996417999268,
1556
+ "learning_rate": 4.974090073457322e-05,
1557
+ "loss": 2.8665,
1558
+ "mean_token_accuracy": 0.42255289942026136,
1559
+ "num_tokens": 9970062.0,
1560
+ "step": 7750
1561
+ },
1562
+ {
1563
+ "entropy": 2.8235595703125,
1564
+ "epoch": 0.52,
1565
+ "grad_norm": 1.8130338191986084,
1566
+ "learning_rate": 4.9201141014194996e-05,
1567
+ "loss": 2.896,
1568
+ "mean_token_accuracy": 0.42268228754401205,
1569
+ "num_tokens": 10123837.0,
1570
+ "step": 7800
1571
+ },
1572
+ {
1573
+ "entropy": 2.817529296875,
1574
+ "epoch": 0.5233333333333333,
1575
+ "grad_norm": 2.095828056335449,
1576
+ "learning_rate": 4.8661474400246585e-05,
1577
+ "loss": 2.9045,
1578
+ "mean_token_accuracy": 0.41662930354475974,
1579
+ "num_tokens": 10277512.0,
1580
+ "step": 7850
1581
+ },
1582
+ {
1583
+ "entropy": 2.8176708984375,
1584
+ "epoch": 0.5266666666666666,
1585
+ "grad_norm": 1.8423707485198975,
1586
+ "learning_rate": 4.8121963790476716e-05,
1587
+ "loss": 2.8869,
1588
+ "mean_token_accuracy": 0.42100236147642134,
1589
+ "num_tokens": 10431366.0,
1590
+ "step": 7900
1591
+ },
1592
+ {
1593
+ "entropy": 2.8667431640625,
1594
+ "epoch": 0.53,
1595
+ "grad_norm": 2.3884952068328857,
1596
+ "learning_rate": 4.7582672064451866e-05,
1597
+ "loss": 2.9367,
1598
+ "mean_token_accuracy": 0.4157477006316185,
1599
+ "num_tokens": 10585691.0,
1600
+ "step": 7950
1601
+ },
1602
+ {
1603
+ "entropy": 2.79511962890625,
1604
+ "epoch": 0.5333333333333333,
1605
+ "grad_norm": 1.7394376993179321,
1606
+ "learning_rate": 4.7043662076227837e-05,
1607
+ "loss": 2.8729,
1608
+ "mean_token_accuracy": 0.4245470950007439,
1609
+ "num_tokens": 10739212.0,
1610
+ "step": 8000
1611
+ },
1612
+ {
1613
+ "entropy": 2.829560546875,
1614
+ "epoch": 0.5366666666666666,
1615
+ "grad_norm": 2.127032518386841,
1616
+ "learning_rate": 4.6504996647024025e-05,
1617
+ "loss": 2.8951,
1618
+ "mean_token_accuracy": 0.42388937398791315,
1619
+ "num_tokens": 153859.0,
1620
+ "step": 8050
1621
+ },
1622
+ {
1623
+ "entropy": 2.77587890625,
1624
+ "epoch": 0.54,
1625
+ "grad_norm": 2.321132183074951,
1626
+ "learning_rate": 4.5966738557901814e-05,
1627
+ "loss": 2.8512,
1628
+ "mean_token_accuracy": 0.4274318239092827,
1629
+ "num_tokens": 309366.0,
1630
+ "step": 8100
1631
+ },
1632
+ {
1633
+ "entropy": 2.764208984375,
1634
+ "epoch": 0.5433333333333333,
1635
+ "grad_norm": 2.4429869651794434,
1636
+ "learning_rate": 4.5428950542447345e-05,
1637
+ "loss": 2.8058,
1638
+ "mean_token_accuracy": 0.4337243731319904,
1639
+ "num_tokens": 463626.0,
1640
+ "step": 8150
1641
+ },
1642
+ {
1643
+ "entropy": 2.7914794921875,
1644
+ "epoch": 0.5466666666666666,
1645
+ "grad_norm": 4.270115852355957,
1646
+ "learning_rate": 4.4891695279460004e-05,
1647
+ "loss": 2.869,
1648
+ "mean_token_accuracy": 0.42352987870574,
1649
+ "num_tokens": 616986.0,
1650
+ "step": 8200
1651
+ },
1652
+ {
1653
+ "entropy": 2.797431640625,
1654
+ "epoch": 0.55,
1655
+ "grad_norm": 2.1567375659942627,
1656
+ "learning_rate": 4.435503538564731e-05,
1657
+ "loss": 2.8792,
1658
+ "mean_token_accuracy": 0.4260627207159996,
1659
+ "num_tokens": 771002.0,
1660
+ "step": 8250
1661
+ },
1662
+ {
1663
+ "entropy": 2.7621337890625,
1664
+ "epoch": 0.5533333333333333,
1665
+ "grad_norm": 2.77287220954895,
1666
+ "learning_rate": 4.381903340832691e-05,
1667
+ "loss": 2.8205,
1668
+ "mean_token_accuracy": 0.4338701346516609,
1669
+ "num_tokens": 924016.0,
1670
+ "step": 8300
1671
+ },
1672
+ {
1673
+ "entropy": 2.77218994140625,
1674
+ "epoch": 0.5566666666666666,
1675
+ "grad_norm": 1.9578077793121338,
1676
+ "learning_rate": 4.3283751818136784e-05,
1677
+ "loss": 2.8478,
1678
+ "mean_token_accuracy": 0.43257290989160535,
1679
+ "num_tokens": 1078531.0,
1680
+ "step": 8350
1681
+ },
1682
+ {
1683
+ "entropy": 2.808828125,
1684
+ "epoch": 0.56,
1685
+ "grad_norm": 2.0971014499664307,
1686
+ "learning_rate": 4.2749253001754285e-05,
1687
+ "loss": 2.8765,
1688
+ "mean_token_accuracy": 0.42437156111001967,
1689
+ "num_tokens": 1232268.0,
1690
+ "step": 8400
1691
+ },
1692
+ {
1693
+ "entropy": 2.7492041015625,
1694
+ "epoch": 0.5633333333333334,
1695
+ "grad_norm": 2.3967738151550293,
1696
+ "learning_rate": 4.221559925462511e-05,
1697
+ "loss": 2.8168,
1698
+ "mean_token_accuracy": 0.42899366572499276,
1699
+ "num_tokens": 1385942.0,
1700
+ "step": 8450
1701
+ },
1702
+ {
1703
+ "entropy": 2.83958984375,
1704
+ "epoch": 0.5666666666666667,
1705
+ "grad_norm": 2.1957943439483643,
1706
+ "learning_rate": 4.1682852773702685e-05,
1707
+ "loss": 2.9044,
1708
+ "mean_token_accuracy": 0.4212977772951126,
1709
+ "num_tokens": 1539407.0,
1710
+ "step": 8500
1711
+ },
1712
+ {
1713
+ "entropy": 0.7671748352050781,
1714
+ "epoch": 0.57,
1715
+ "grad_norm": 0.13969223201274872,
1716
+ "learning_rate": 4.115107565019929e-05,
1717
+ "loss": 0.7416,
1718
+ "mean_token_accuracy": 0.8513110767304898,
1719
+ "num_tokens": 1701093.0,
1720
+ "step": 8550
1721
+ },
1722
+ {
1723
+ "entropy": 2.7412037658691406,
1724
+ "epoch": 0.5733333333333334,
1725
+ "grad_norm": 5.486576557159424,
1726
+ "learning_rate": 4.062032986234927e-05,
1727
+ "loss": 2.8417,
1728
+ "mean_token_accuracy": 0.43368106707930565,
1729
+ "num_tokens": 1854202.0,
1730
+ "step": 8600
1731
+ },
1732
+ {
1733
+ "entropy": 2.7865234375,
1734
+ "epoch": 0.5766666666666667,
1735
+ "grad_norm": 2.4430174827575684,
1736
+ "learning_rate": 4.009067726818556e-05,
1737
+ "loss": 2.8568,
1738
+ "mean_token_accuracy": 0.4283077374100685,
1739
+ "num_tokens": 2007690.0,
1740
+ "step": 8650
1741
+ },
1742
+ {
1743
+ "entropy": 2.7960693359375,
1744
+ "epoch": 0.58,
1745
+ "grad_norm": 2.344949960708618,
1746
+ "learning_rate": 3.956217959833017e-05,
1747
+ "loss": 2.8723,
1748
+ "mean_token_accuracy": 0.4265533179044724,
1749
+ "num_tokens": 2161569.0,
1750
+ "step": 8700
1751
+ },
1752
+ {
1753
+ "entropy": 2.8105517578125,
1754
+ "epoch": 0.5833333333333334,
1755
+ "grad_norm": 3.076979398727417,
1756
+ "learning_rate": 3.903489844879954e-05,
1757
+ "loss": 2.8757,
1758
+ "mean_token_accuracy": 0.4224506489932537,
1759
+ "num_tokens": 2315122.0,
1760
+ "step": 8750
1761
+ },
1762
+ {
1763
+ "entropy": 2.742822265625,
1764
+ "epoch": 0.5866666666666667,
1765
+ "grad_norm": 2.2918591499328613,
1766
+ "learning_rate": 3.850889527382554e-05,
1767
+ "loss": 2.8181,
1768
+ "mean_token_accuracy": 0.4310347574949265,
1769
+ "num_tokens": 2469721.0,
1770
+ "step": 8800
1771
+ },
1772
+ {
1773
+ "entropy": 2.8107080078125,
1774
+ "epoch": 0.59,
1775
+ "grad_norm": 2.8631539344787598,
1776
+ "learning_rate": 3.798423137869305e-05,
1777
+ "loss": 2.8869,
1778
+ "mean_token_accuracy": 0.42250056251883505,
1779
+ "num_tokens": 2623034.0,
1780
+ "step": 8850
1781
+ },
1782
+ {
1783
+ "entropy": 2.7711279296875,
1784
+ "epoch": 0.5933333333333334,
1785
+ "grad_norm": 1.8896321058273315,
1786
+ "learning_rate": 3.7460967912594845e-05,
1787
+ "loss": 2.838,
1788
+ "mean_token_accuracy": 0.4327010078728199,
1789
+ "num_tokens": 2777019.0,
1790
+ "step": 8900
1791
+ },
1792
+ {
1793
+ "entropy": 2.8324755859375,
1794
+ "epoch": 0.5966666666666667,
1795
+ "grad_norm": 1.771895408630371,
1796
+ "learning_rate": 3.693916586150479e-05,
1797
+ "loss": 2.8983,
1798
+ "mean_token_accuracy": 0.4137404492497444,
1799
+ "num_tokens": 2930691.0,
1800
+ "step": 8950
1801
+ },
1802
+ {
1803
+ "entropy": 2.810810546875,
1804
+ "epoch": 0.6,
1805
+ "grad_norm": 2.086306095123291,
1806
+ "learning_rate": 3.641888604106978e-05,
1807
+ "loss": 2.8762,
1808
+ "mean_token_accuracy": 0.4264249439537525,
1809
+ "num_tokens": 3084012.0,
1810
+ "step": 9000
1811
+ }
1812
+ ],
1813
+ "logging_steps": 50,
1814
+ "max_steps": 15000,
1815
+ "num_input_tokens_seen": 0,
1816
+ "num_train_epochs": 9223372036854775807,
1817
+ "save_steps": 250,
1818
+ "stateful_callbacks": {
1819
+ "TrainerControl": {
1820
+ "args": {
1821
+ "should_epoch_stop": false,
1822
+ "should_evaluate": false,
1823
+ "should_log": false,
1824
+ "should_save": true,
1825
+ "should_training_stop": false
1826
+ },
1827
+ "attributes": {}
1828
+ }
1829
+ },
1830
+ "total_flos": 6.78220668076032e+17,
1831
+ "train_batch_size": 2,
1832
+ "trial_name": null,
1833
+ "trial_params": null
1834
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fd10e5ed551017049c6cc19a2e941d32458df143b0746120dca9e19d5a7d10d
3
+ size 6225
vocab.json ADDED
The diff for this file is too large to render. See raw diff