Komma-LuisMiSanVe commited on
Commit
975ecd5
·
1 Parent(s): 82dbca0

Add trained model

Browse files
sql-model-merged/.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
sql-model-merged/config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 32013,
8
+ "dtype": "float32",
9
+ "eos_token_id": 32014,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 5504,
15
+ "max_position_embeddings": 16384,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 16,
19
+ "num_hidden_layers": 24,
20
+ "num_key_value_heads": 16,
21
+ "pad_token_id": null,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_parameters": {
25
+ "factor": 4.0,
26
+ "rope_theta": 100000,
27
+ "rope_type": "linear",
28
+ "type": "linear"
29
+ },
30
+ "tie_word_embeddings": false,
31
+ "transformers_version": "5.4.0",
32
+ "use_cache": true,
33
+ "vocab_size": 32256
34
+ }
sql-model-merged/generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 32013,
4
+ "eos_token_id": 32014,
5
+ "transformers_version": "5.4.0"
6
+ }
sql-model/README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: deepseek-ai/deepseek-coder-1.3b-base
3
+ library_name: peft
4
+ model_name: sql-model
5
+ tags:
6
+ - base_model:adapter:deepseek-ai/deepseek-coder-1.3b-base
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for sql-model
16
+
17
+ This model is a fine-tuned version of [deepseek-ai/deepseek-coder-1.3b-base](https://huggingface.co/deepseek-ai/deepseek-coder-1.3b-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.18.1
42
+ - TRL: 1.0.0
43
+ - Transformers: 5.4.0
44
+ - Pytorch: 2.11.0
45
+ - Datasets: 4.8.4
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
+ ```
sql-model/adapter_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "deepseek-ai/deepseek-coder-1.3b-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": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "target_parameters": null,
36
+ "task_type": "CAUSAL_LM",
37
+ "trainable_token_indices": null,
38
+ "use_dora": false,
39
+ "use_qalora": false,
40
+ "use_rslora": false
41
+ }
sql-model/checkpoint-1750/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: deepseek-ai/deepseek-coder-1.3b-base
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:deepseek-ai/deepseek-coder-1.3b-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.18.1
sql-model/checkpoint-1750/adapter_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "deepseek-ai/deepseek-coder-1.3b-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": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "target_parameters": null,
36
+ "task_type": "CAUSAL_LM",
37
+ "trainable_token_indices": null,
38
+ "use_dora": false,
39
+ "use_qalora": false,
40
+ "use_rslora": false
41
+ }
sql-model/checkpoint-1750/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
sql-model/checkpoint-1750/tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": null,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<|begin▁of▁sentence|>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|end▁of▁sentence|>",
7
+ "is_local": false,
8
+ "model_max_length": 16384,
9
+ "pad_token": "<|end▁of▁sentence|>",
10
+ "sp_model_kwargs": {},
11
+ "tokenizer_class": "LlamaTokenizer",
12
+ "unk_token": null,
13
+ "use_default_system_prompt": false
14
+ }
sql-model/checkpoint-1750/trainer_state.json ADDED
@@ -0,0 +1,1784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1750,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.260360875725746,
14
+ "epoch": 0.005714285714285714,
15
+ "grad_norm": 0.14475300908088684,
16
+ "learning_rate": 0.00019897142857142858,
17
+ "loss": 1.8931827545166016,
18
+ "mean_token_accuracy": 0.7422700569033622,
19
+ "num_tokens": 20480.0,
20
+ "step": 10
21
+ },
22
+ {
23
+ "entropy": 0.6686364717781543,
24
+ "epoch": 0.011428571428571429,
25
+ "grad_norm": 0.12105409055948257,
26
+ "learning_rate": 0.00019782857142857142,
27
+ "loss": 0.8410327911376954,
28
+ "mean_token_accuracy": 0.9263698622584343,
29
+ "num_tokens": 40960.0,
30
+ "step": 20
31
+ },
32
+ {
33
+ "entropy": 0.5374040573835372,
34
+ "epoch": 0.017142857142857144,
35
+ "grad_norm": 0.0709354504942894,
36
+ "learning_rate": 0.0001966857142857143,
37
+ "loss": 0.5800150871276856,
38
+ "mean_token_accuracy": 0.9434442237019539,
39
+ "num_tokens": 61440.0,
40
+ "step": 30
41
+ },
42
+ {
43
+ "entropy": 0.673083483427763,
44
+ "epoch": 0.022857142857142857,
45
+ "grad_norm": 0.19102220237255096,
46
+ "learning_rate": 0.00019554285714285717,
47
+ "loss": 0.6174958229064942,
48
+ "mean_token_accuracy": 0.9334637925028801,
49
+ "num_tokens": 81920.0,
50
+ "step": 40
51
+ },
52
+ {
53
+ "entropy": 0.6077337548136711,
54
+ "epoch": 0.02857142857142857,
55
+ "grad_norm": 0.124457947909832,
56
+ "learning_rate": 0.0001944,
57
+ "loss": 0.6033527374267578,
58
+ "mean_token_accuracy": 0.9302348345518112,
59
+ "num_tokens": 102400.0,
60
+ "step": 50
61
+ },
62
+ {
63
+ "entropy": 0.6865496441721917,
64
+ "epoch": 0.03428571428571429,
65
+ "grad_norm": 0.12185850739479065,
66
+ "learning_rate": 0.00019325714285714287,
67
+ "loss": 0.7060577392578125,
68
+ "mean_token_accuracy": 0.914041094481945,
69
+ "num_tokens": 122880.0,
70
+ "step": 60
71
+ },
72
+ {
73
+ "entropy": 0.5015663422644139,
74
+ "epoch": 0.04,
75
+ "grad_norm": 0.12615624070167542,
76
+ "learning_rate": 0.0001921142857142857,
77
+ "loss": 0.5055368900299072,
78
+ "mean_token_accuracy": 0.9372798427939415,
79
+ "num_tokens": 143360.0,
80
+ "step": 70
81
+ },
82
+ {
83
+ "entropy": 0.4910366632044315,
84
+ "epoch": 0.045714285714285714,
85
+ "grad_norm": 0.07611342519521713,
86
+ "learning_rate": 0.00019097142857142857,
87
+ "loss": 0.5325770854949952,
88
+ "mean_token_accuracy": 0.933317020535469,
89
+ "num_tokens": 163840.0,
90
+ "step": 80
91
+ },
92
+ {
93
+ "entropy": 0.6832622230052948,
94
+ "epoch": 0.05142857142857143,
95
+ "grad_norm": 0.053595155477523804,
96
+ "learning_rate": 0.00018982857142857144,
97
+ "loss": 0.6098953247070312,
98
+ "mean_token_accuracy": 0.9255381539463997,
99
+ "num_tokens": 184320.0,
100
+ "step": 90
101
+ },
102
+ {
103
+ "entropy": 0.5981594547629356,
104
+ "epoch": 0.05714285714285714,
105
+ "grad_norm": 0.1217501237988472,
106
+ "learning_rate": 0.00018868571428571428,
107
+ "loss": 0.6175091743469239,
108
+ "mean_token_accuracy": 0.9214774891734123,
109
+ "num_tokens": 204800.0,
110
+ "step": 100
111
+ },
112
+ {
113
+ "entropy": 0.46232525929808616,
114
+ "epoch": 0.06285714285714286,
115
+ "grad_norm": 0.11764337867498398,
116
+ "learning_rate": 0.00018754285714285714,
117
+ "loss": 0.5024982929229737,
118
+ "mean_token_accuracy": 0.9378180012106896,
119
+ "num_tokens": 225280.0,
120
+ "step": 110
121
+ },
122
+ {
123
+ "entropy": 0.6816697306931019,
124
+ "epoch": 0.06857142857142857,
125
+ "grad_norm": 0.11498382687568665,
126
+ "learning_rate": 0.00018640000000000003,
127
+ "loss": 0.6160881996154786,
128
+ "mean_token_accuracy": 0.9226027399301528,
129
+ "num_tokens": 245760.0,
130
+ "step": 120
131
+ },
132
+ {
133
+ "entropy": 0.5926385544240474,
134
+ "epoch": 0.07428571428571429,
135
+ "grad_norm": 0.14184272289276123,
136
+ "learning_rate": 0.00018525714285714287,
137
+ "loss": 0.6105648040771484,
138
+ "mean_token_accuracy": 0.9212328717112541,
139
+ "num_tokens": 266240.0,
140
+ "step": 130
141
+ },
142
+ {
143
+ "entropy": 0.6943187221884728,
144
+ "epoch": 0.08,
145
+ "grad_norm": 0.06698362529277802,
146
+ "learning_rate": 0.00018411428571428573,
147
+ "loss": 0.7239139556884766,
148
+ "mean_token_accuracy": 0.9079256355762482,
149
+ "num_tokens": 286720.0,
150
+ "step": 140
151
+ },
152
+ {
153
+ "entropy": 0.5330000497400761,
154
+ "epoch": 0.08571428571428572,
155
+ "grad_norm": 0.05283268541097641,
156
+ "learning_rate": 0.00018297142857142857,
157
+ "loss": 0.5285147666931153,
158
+ "mean_token_accuracy": 0.9346868827939033,
159
+ "num_tokens": 307200.0,
160
+ "step": 150
161
+ },
162
+ {
163
+ "entropy": 0.6167198076844216,
164
+ "epoch": 0.09142857142857143,
165
+ "grad_norm": 0.11342243105173111,
166
+ "learning_rate": 0.00018182857142857143,
167
+ "loss": 0.5238636493682861,
168
+ "mean_token_accuracy": 0.9310665339231491,
169
+ "num_tokens": 327680.0,
170
+ "step": 160
171
+ },
172
+ {
173
+ "entropy": 0.5902882516384125,
174
+ "epoch": 0.09714285714285714,
175
+ "grad_norm": 0.052674733102321625,
176
+ "learning_rate": 0.0001806857142857143,
177
+ "loss": 0.6207498550415039,
178
+ "mean_token_accuracy": 0.9209882557392121,
179
+ "num_tokens": 348160.0,
180
+ "step": 170
181
+ },
182
+ {
183
+ "entropy": 0.5036320418119431,
184
+ "epoch": 0.10285714285714286,
185
+ "grad_norm": 0.1300937831401825,
186
+ "learning_rate": 0.00017954285714285714,
187
+ "loss": 0.4891793727874756,
188
+ "mean_token_accuracy": 0.9383561670780182,
189
+ "num_tokens": 368640.0,
190
+ "step": 180
191
+ },
192
+ {
193
+ "entropy": 0.5235385537147522,
194
+ "epoch": 0.10857142857142857,
195
+ "grad_norm": 0.15759502351284027,
196
+ "learning_rate": 0.0001784,
197
+ "loss": 0.5480166912078858,
198
+ "mean_token_accuracy": 0.9290606617927551,
199
+ "num_tokens": 389120.0,
200
+ "step": 190
201
+ },
202
+ {
203
+ "entropy": 0.5598056815564633,
204
+ "epoch": 0.11428571428571428,
205
+ "grad_norm": 0.2110883891582489,
206
+ "learning_rate": 0.00017725714285714286,
207
+ "loss": 0.5246779918670654,
208
+ "mean_token_accuracy": 0.9307729959487915,
209
+ "num_tokens": 409600.0,
210
+ "step": 200
211
+ },
212
+ {
213
+ "entropy": 0.5961586087942123,
214
+ "epoch": 0.12,
215
+ "grad_norm": 0.2098916918039322,
216
+ "learning_rate": 0.00017611428571428573,
217
+ "loss": 0.6312565326690673,
218
+ "mean_token_accuracy": 0.9181996077299118,
219
+ "num_tokens": 430080.0,
220
+ "step": 210
221
+ },
222
+ {
223
+ "entropy": 0.6443906672298908,
224
+ "epoch": 0.12571428571428572,
225
+ "grad_norm": 0.05823206156492233,
226
+ "learning_rate": 0.0001749714285714286,
227
+ "loss": 0.5860573768615722,
228
+ "mean_token_accuracy": 0.9248043030500412,
229
+ "num_tokens": 450560.0,
230
+ "step": 220
231
+ },
232
+ {
233
+ "entropy": 0.4558599293231964,
234
+ "epoch": 0.13142857142857142,
235
+ "grad_norm": 0.04420356824994087,
236
+ "learning_rate": 0.00017382857142857143,
237
+ "loss": 0.5038563728332519,
238
+ "mean_token_accuracy": 0.9343444183468819,
239
+ "num_tokens": 471040.0,
240
+ "step": 230
241
+ },
242
+ {
243
+ "entropy": 0.700678950548172,
244
+ "epoch": 0.13714285714285715,
245
+ "grad_norm": 0.056033965200185776,
246
+ "learning_rate": 0.0001726857142857143,
247
+ "loss": 0.6543848514556885,
248
+ "mean_token_accuracy": 0.9165851280093193,
249
+ "num_tokens": 491520.0,
250
+ "step": 240
251
+ },
252
+ {
253
+ "entropy": 0.5037958301603794,
254
+ "epoch": 0.14285714285714285,
255
+ "grad_norm": 0.04548604413866997,
256
+ "learning_rate": 0.00017154285714285716,
257
+ "loss": 0.5128421306610107,
258
+ "mean_token_accuracy": 0.9345401152968407,
259
+ "num_tokens": 512000.0,
260
+ "step": 250
261
+ },
262
+ {
263
+ "entropy": 0.7069774232804775,
264
+ "epoch": 0.14857142857142858,
265
+ "grad_norm": 0.06355439871549606,
266
+ "learning_rate": 0.0001704,
267
+ "loss": 0.6548576354980469,
268
+ "mean_token_accuracy": 0.9170254364609718,
269
+ "num_tokens": 532480.0,
270
+ "step": 260
271
+ },
272
+ {
273
+ "entropy": 0.5105256482958793,
274
+ "epoch": 0.15428571428571428,
275
+ "grad_norm": 0.18286369740962982,
276
+ "learning_rate": 0.00016925714285714286,
277
+ "loss": 0.5638271331787109,
278
+ "mean_token_accuracy": 0.927397258579731,
279
+ "num_tokens": 552960.0,
280
+ "step": 270
281
+ },
282
+ {
283
+ "entropy": 0.5947913646697998,
284
+ "epoch": 0.16,
285
+ "grad_norm": 0.06678909808397293,
286
+ "learning_rate": 0.00016811428571428572,
287
+ "loss": 0.5556015014648438,
288
+ "mean_token_accuracy": 0.9284735813736915,
289
+ "num_tokens": 573440.0,
290
+ "step": 280
291
+ },
292
+ {
293
+ "entropy": 0.4055472381412983,
294
+ "epoch": 0.1657142857142857,
295
+ "grad_norm": 0.060138579457998276,
296
+ "learning_rate": 0.0001669714285714286,
297
+ "loss": 0.4508848190307617,
298
+ "mean_token_accuracy": 0.9411448150873184,
299
+ "num_tokens": 593920.0,
300
+ "step": 290
301
+ },
302
+ {
303
+ "entropy": 0.7649829842150211,
304
+ "epoch": 0.17142857142857143,
305
+ "grad_norm": 0.16261634230613708,
306
+ "learning_rate": 0.00016582857142857145,
307
+ "loss": 0.6465051651000977,
308
+ "mean_token_accuracy": 0.9155088007450104,
309
+ "num_tokens": 614400.0,
310
+ "step": 300
311
+ },
312
+ {
313
+ "entropy": 0.36847573295235636,
314
+ "epoch": 0.17714285714285713,
315
+ "grad_norm": 0.04129418730735779,
316
+ "learning_rate": 0.0001646857142857143,
317
+ "loss": 0.5112833976745605,
318
+ "mean_token_accuracy": 0.9333659455180168,
319
+ "num_tokens": 634880.0,
320
+ "step": 310
321
+ },
322
+ {
323
+ "entropy": 0.7789666198194027,
324
+ "epoch": 0.18285714285714286,
325
+ "grad_norm": 0.2533145546913147,
326
+ "learning_rate": 0.00016354285714285715,
327
+ "loss": 0.63450927734375,
328
+ "mean_token_accuracy": 0.9185420736670494,
329
+ "num_tokens": 655360.0,
330
+ "step": 320
331
+ },
332
+ {
333
+ "entropy": 0.33430018573999404,
334
+ "epoch": 0.18857142857142858,
335
+ "grad_norm": 0.122005395591259,
336
+ "learning_rate": 0.00016240000000000002,
337
+ "loss": 0.4856534957885742,
338
+ "mean_token_accuracy": 0.9402152642607688,
339
+ "num_tokens": 675840.0,
340
+ "step": 330
341
+ },
342
+ {
343
+ "entropy": 0.5829201385378837,
344
+ "epoch": 0.19428571428571428,
345
+ "grad_norm": 0.20030805468559265,
346
+ "learning_rate": 0.00016125714285714285,
347
+ "loss": 0.49710564613342284,
348
+ "mean_token_accuracy": 0.9347358077764512,
349
+ "num_tokens": 696320.0,
350
+ "step": 340
351
+ },
352
+ {
353
+ "entropy": 0.5763799995183945,
354
+ "epoch": 0.2,
355
+ "grad_norm": 0.08205129206180573,
356
+ "learning_rate": 0.00016011428571428572,
357
+ "loss": 0.5814402580261231,
358
+ "mean_token_accuracy": 0.9234344378113747,
359
+ "num_tokens": 716800.0,
360
+ "step": 350
361
+ },
362
+ {
363
+ "entropy": 0.5829779535531998,
364
+ "epoch": 0.2057142857142857,
365
+ "grad_norm": 0.09151940047740936,
366
+ "learning_rate": 0.00015897142857142858,
367
+ "loss": 0.6152735233306885,
368
+ "mean_token_accuracy": 0.9193737730383873,
369
+ "num_tokens": 737280.0,
370
+ "step": 360
371
+ },
372
+ {
373
+ "entropy": 0.5310064390301704,
374
+ "epoch": 0.21142857142857144,
375
+ "grad_norm": 0.07890532165765762,
376
+ "learning_rate": 0.00015782857142857145,
377
+ "loss": 0.5040150642395019,
378
+ "mean_token_accuracy": 0.9362524405121804,
379
+ "num_tokens": 757760.0,
380
+ "step": 370
381
+ },
382
+ {
383
+ "entropy": 0.43088596761226655,
384
+ "epoch": 0.21714285714285714,
385
+ "grad_norm": 0.16556017100811005,
386
+ "learning_rate": 0.0001566857142857143,
387
+ "loss": 0.4871084690093994,
388
+ "mean_token_accuracy": 0.936545978486538,
389
+ "num_tokens": 778240.0,
390
+ "step": 380
391
+ },
392
+ {
393
+ "entropy": 0.5633072890341282,
394
+ "epoch": 0.22285714285714286,
395
+ "grad_norm": 0.04732167348265648,
396
+ "learning_rate": 0.00015554285714285715,
397
+ "loss": 0.46471123695373534,
398
+ "mean_token_accuracy": 0.938209393620491,
399
+ "num_tokens": 798720.0,
400
+ "step": 390
401
+ },
402
+ {
403
+ "entropy": 0.47751612216234207,
404
+ "epoch": 0.22857142857142856,
405
+ "grad_norm": 0.10221615433692932,
406
+ "learning_rate": 0.0001544,
407
+ "loss": 0.5514689922332764,
408
+ "mean_token_accuracy": 0.9290117397904396,
409
+ "num_tokens": 819200.0,
410
+ "step": 400
411
+ },
412
+ {
413
+ "entropy": 0.5929409205913544,
414
+ "epoch": 0.2342857142857143,
415
+ "grad_norm": 0.07100944966077805,
416
+ "learning_rate": 0.00015325714285714285,
417
+ "loss": 0.5279238224029541,
418
+ "mean_token_accuracy": 0.9321428522467613,
419
+ "num_tokens": 839680.0,
420
+ "step": 410
421
+ },
422
+ {
423
+ "entropy": 0.5618587106466293,
424
+ "epoch": 0.24,
425
+ "grad_norm": 0.040722209960222244,
426
+ "learning_rate": 0.00015211428571428571,
427
+ "loss": 0.5124303340911865,
428
+ "mean_token_accuracy": 0.9332681059837341,
429
+ "num_tokens": 860160.0,
430
+ "step": 420
431
+ },
432
+ {
433
+ "entropy": 0.4459361031651497,
434
+ "epoch": 0.24571428571428572,
435
+ "grad_norm": 0.10662642121315002,
436
+ "learning_rate": 0.00015097142857142858,
437
+ "loss": 0.5077432632446289,
438
+ "mean_token_accuracy": 0.9327299326658249,
439
+ "num_tokens": 880640.0,
440
+ "step": 430
441
+ },
442
+ {
443
+ "entropy": 0.738821828365326,
444
+ "epoch": 0.25142857142857145,
445
+ "grad_norm": 0.15264756977558136,
446
+ "learning_rate": 0.00014982857142857144,
447
+ "loss": 0.6622607231140136,
448
+ "mean_token_accuracy": 0.9129158467054367,
449
+ "num_tokens": 901120.0,
450
+ "step": 440
451
+ },
452
+ {
453
+ "entropy": 0.5146319203078746,
454
+ "epoch": 0.2571428571428571,
455
+ "grad_norm": 0.09214670211076736,
456
+ "learning_rate": 0.0001486857142857143,
457
+ "loss": 0.6306316375732421,
458
+ "mean_token_accuracy": 0.9173189774155617,
459
+ "num_tokens": 921600.0,
460
+ "step": 450
461
+ },
462
+ {
463
+ "entropy": 0.7235424101352692,
464
+ "epoch": 0.26285714285714284,
465
+ "grad_norm": 0.09560181945562363,
466
+ "learning_rate": 0.00014754285714285717,
467
+ "loss": 0.6143333435058593,
468
+ "mean_token_accuracy": 0.9204500928521157,
469
+ "num_tokens": 942080.0,
470
+ "step": 460
471
+ },
472
+ {
473
+ "entropy": 0.525194027274847,
474
+ "epoch": 0.26857142857142857,
475
+ "grad_norm": 0.0698908343911171,
476
+ "learning_rate": 0.0001464,
477
+ "loss": 0.5927223205566406,
478
+ "mean_token_accuracy": 0.9236301362514496,
479
+ "num_tokens": 962560.0,
480
+ "step": 470
481
+ },
482
+ {
483
+ "entropy": 0.6539882756769657,
484
+ "epoch": 0.2742857142857143,
485
+ "grad_norm": 0.06869114935398102,
486
+ "learning_rate": 0.00014525714285714287,
487
+ "loss": 0.5622227668762207,
488
+ "mean_token_accuracy": 0.9269569426774978,
489
+ "num_tokens": 983040.0,
490
+ "step": 480
491
+ },
492
+ {
493
+ "entropy": 0.6007681101560592,
494
+ "epoch": 0.28,
495
+ "grad_norm": 0.05957495793700218,
496
+ "learning_rate": 0.0001441142857142857,
497
+ "loss": 0.6351003646850586,
498
+ "mean_token_accuracy": 0.9169765204191208,
499
+ "num_tokens": 1003520.0,
500
+ "step": 490
501
+ },
502
+ {
503
+ "entropy": 0.47484939694404604,
504
+ "epoch": 0.2857142857142857,
505
+ "grad_norm": 0.12594401836395264,
506
+ "learning_rate": 0.00014297142857142857,
507
+ "loss": 0.48124194145202637,
508
+ "mean_token_accuracy": 0.9353718146681785,
509
+ "num_tokens": 1024000.0,
510
+ "step": 500
511
+ },
512
+ {
513
+ "entropy": 0.5398600555956363,
514
+ "epoch": 0.2914285714285714,
515
+ "grad_norm": 0.10446745902299881,
516
+ "learning_rate": 0.00014182857142857144,
517
+ "loss": 0.48729524612426756,
518
+ "mean_token_accuracy": 0.9348336592316627,
519
+ "num_tokens": 1044480.0,
520
+ "step": 510
521
+ },
522
+ {
523
+ "entropy": 0.5471270829439163,
524
+ "epoch": 0.29714285714285715,
525
+ "grad_norm": 0.06563620269298553,
526
+ "learning_rate": 0.00014068571428571427,
527
+ "loss": 0.5080405712127686,
528
+ "mean_token_accuracy": 0.9341976478695869,
529
+ "num_tokens": 1064960.0,
530
+ "step": 520
531
+ },
532
+ {
533
+ "entropy": 0.33239252008497716,
534
+ "epoch": 0.3028571428571429,
535
+ "grad_norm": 0.08698952198028564,
536
+ "learning_rate": 0.00013954285714285717,
537
+ "loss": 0.4493887901306152,
538
+ "mean_token_accuracy": 0.9398238703608512,
539
+ "num_tokens": 1085440.0,
540
+ "step": 530
541
+ },
542
+ {
543
+ "entropy": 0.6027603760361672,
544
+ "epoch": 0.30857142857142855,
545
+ "grad_norm": 0.05392242968082428,
546
+ "learning_rate": 0.0001384,
547
+ "loss": 0.586741590499878,
548
+ "mean_token_accuracy": 0.9232876688241959,
549
+ "num_tokens": 1105920.0,
550
+ "step": 540
551
+ },
552
+ {
553
+ "entropy": 0.5952301643788814,
554
+ "epoch": 0.3142857142857143,
555
+ "grad_norm": 0.18325185775756836,
556
+ "learning_rate": 0.00013725714285714287,
557
+ "loss": 0.5690345287322998,
558
+ "mean_token_accuracy": 0.9233365893363953,
559
+ "num_tokens": 1126400.0,
560
+ "step": 550
561
+ },
562
+ {
563
+ "entropy": 0.5742614075541497,
564
+ "epoch": 0.32,
565
+ "grad_norm": 0.24716411530971527,
566
+ "learning_rate": 0.00013611428571428573,
567
+ "loss": 0.5659992218017578,
568
+ "mean_token_accuracy": 0.9252935364842415,
569
+ "num_tokens": 1146880.0,
570
+ "step": 560
571
+ },
572
+ {
573
+ "entropy": 0.5065363116562367,
574
+ "epoch": 0.32571428571428573,
575
+ "grad_norm": 0.11625125259160995,
576
+ "learning_rate": 0.00013497142857142857,
577
+ "loss": 0.46491494178771975,
578
+ "mean_token_accuracy": 0.9386496990919113,
579
+ "num_tokens": 1167360.0,
580
+ "step": 570
581
+ },
582
+ {
583
+ "entropy": 0.5801173232495784,
584
+ "epoch": 0.3314285714285714,
585
+ "grad_norm": 0.053480129688978195,
586
+ "learning_rate": 0.00013382857142857143,
587
+ "loss": 0.5747738838195801,
588
+ "mean_token_accuracy": 0.925,
589
+ "num_tokens": 1187840.0,
590
+ "step": 580
591
+ },
592
+ {
593
+ "entropy": 0.6268129035830498,
594
+ "epoch": 0.33714285714285713,
595
+ "grad_norm": 0.13001662492752075,
596
+ "learning_rate": 0.0001326857142857143,
597
+ "loss": 0.6112659454345704,
598
+ "mean_token_accuracy": 0.9196183919906616,
599
+ "num_tokens": 1208320.0,
600
+ "step": 590
601
+ },
602
+ {
603
+ "entropy": 0.5466722629964351,
604
+ "epoch": 0.34285714285714286,
605
+ "grad_norm": 0.1628836840391159,
606
+ "learning_rate": 0.00013154285714285713,
607
+ "loss": 0.5239183902740479,
608
+ "mean_token_accuracy": 0.9299412861466407,
609
+ "num_tokens": 1228800.0,
610
+ "step": 600
611
+ },
612
+ {
613
+ "entropy": 0.3720652416348457,
614
+ "epoch": 0.3485714285714286,
615
+ "grad_norm": 0.16002608835697174,
616
+ "learning_rate": 0.0001304,
617
+ "loss": 0.41176614761352537,
618
+ "mean_token_accuracy": 0.9441291555762291,
619
+ "num_tokens": 1249280.0,
620
+ "step": 610
621
+ },
622
+ {
623
+ "entropy": 0.5275939412415027,
624
+ "epoch": 0.35428571428571426,
625
+ "grad_norm": 0.08797982335090637,
626
+ "learning_rate": 0.00012925714285714286,
627
+ "loss": 0.47243666648864746,
628
+ "mean_token_accuracy": 0.937622307240963,
629
+ "num_tokens": 1269760.0,
630
+ "step": 620
631
+ },
632
+ {
633
+ "entropy": 0.43704629465937617,
634
+ "epoch": 0.36,
635
+ "grad_norm": 0.05002142861485481,
636
+ "learning_rate": 0.00012811428571428573,
637
+ "loss": 0.4989802837371826,
638
+ "mean_token_accuracy": 0.9348336562514306,
639
+ "num_tokens": 1290240.0,
640
+ "step": 630
641
+ },
642
+ {
643
+ "entropy": 0.6504201047122479,
644
+ "epoch": 0.3657142857142857,
645
+ "grad_norm": 0.11755041778087616,
646
+ "learning_rate": 0.0001269714285714286,
647
+ "loss": 0.6163222312927246,
648
+ "mean_token_accuracy": 0.9187377691268921,
649
+ "num_tokens": 1310720.0,
650
+ "step": 640
651
+ },
652
+ {
653
+ "entropy": 0.5586043894290924,
654
+ "epoch": 0.37142857142857144,
655
+ "grad_norm": 0.14057014882564545,
656
+ "learning_rate": 0.00012582857142857143,
657
+ "loss": 0.4861945152282715,
658
+ "mean_token_accuracy": 0.9349315032362938,
659
+ "num_tokens": 1331200.0,
660
+ "step": 650
661
+ },
662
+ {
663
+ "entropy": 0.44176297783851626,
664
+ "epoch": 0.37714285714285717,
665
+ "grad_norm": 0.05297749489545822,
666
+ "learning_rate": 0.0001246857142857143,
667
+ "loss": 0.5086590766906738,
668
+ "mean_token_accuracy": 0.9314090013504028,
669
+ "num_tokens": 1351680.0,
670
+ "step": 660
671
+ },
672
+ {
673
+ "entropy": 0.5753153517842293,
674
+ "epoch": 0.38285714285714284,
675
+ "grad_norm": 0.08983558416366577,
676
+ "learning_rate": 0.00012354285714285713,
677
+ "loss": 0.5077627658843994,
678
+ "mean_token_accuracy": 0.9314579233527184,
679
+ "num_tokens": 1372160.0,
680
+ "step": 670
681
+ },
682
+ {
683
+ "entropy": 0.5109598033130169,
684
+ "epoch": 0.38857142857142857,
685
+ "grad_norm": 0.061045870184898376,
686
+ "learning_rate": 0.0001224,
687
+ "loss": 0.5647973537445068,
688
+ "mean_token_accuracy": 0.9246575310826302,
689
+ "num_tokens": 1392640.0,
690
+ "step": 680
691
+ },
692
+ {
693
+ "entropy": 0.5929775595664978,
694
+ "epoch": 0.3942857142857143,
695
+ "grad_norm": 0.1480552852153778,
696
+ "learning_rate": 0.00012125714285714287,
697
+ "loss": 0.5129212856292724,
698
+ "mean_token_accuracy": 0.9318003863096237,
699
+ "num_tokens": 1413120.0,
700
+ "step": 690
701
+ },
702
+ {
703
+ "entropy": 0.5623379878699779,
704
+ "epoch": 0.4,
705
+ "grad_norm": 0.11450239270925522,
706
+ "learning_rate": 0.00012011428571428571,
707
+ "loss": 0.5803545475006103,
708
+ "mean_token_accuracy": 0.9237279817461967,
709
+ "num_tokens": 1433600.0,
710
+ "step": 700
711
+ },
712
+ {
713
+ "entropy": 0.4025018382817507,
714
+ "epoch": 0.4057142857142857,
715
+ "grad_norm": 0.1846701204776764,
716
+ "learning_rate": 0.00011897142857142857,
717
+ "loss": 0.4205235481262207,
718
+ "mean_token_accuracy": 0.9443248510360718,
719
+ "num_tokens": 1454080.0,
720
+ "step": 710
721
+ },
722
+ {
723
+ "entropy": 0.6451694712042808,
724
+ "epoch": 0.4114285714285714,
725
+ "grad_norm": 0.24713803827762604,
726
+ "learning_rate": 0.00011782857142857145,
727
+ "loss": 0.584080696105957,
728
+ "mean_token_accuracy": 0.9242172226309776,
729
+ "num_tokens": 1474560.0,
730
+ "step": 720
731
+ },
732
+ {
733
+ "entropy": 0.49122287705540657,
734
+ "epoch": 0.41714285714285715,
735
+ "grad_norm": 0.06742525100708008,
736
+ "learning_rate": 0.00011668571428571429,
737
+ "loss": 0.5123952865600586,
738
+ "mean_token_accuracy": 0.9291585102677345,
739
+ "num_tokens": 1495040.0,
740
+ "step": 730
741
+ },
742
+ {
743
+ "entropy": 0.5520305454730987,
744
+ "epoch": 0.4228571428571429,
745
+ "grad_norm": 0.06774848699569702,
746
+ "learning_rate": 0.00011554285714285715,
747
+ "loss": 0.5740731716156006,
748
+ "mean_token_accuracy": 0.9251956939697266,
749
+ "num_tokens": 1515520.0,
750
+ "step": 740
751
+ },
752
+ {
753
+ "entropy": 0.6016006499528885,
754
+ "epoch": 0.42857142857142855,
755
+ "grad_norm": 0.10677064955234528,
756
+ "learning_rate": 0.0001144,
757
+ "loss": 0.576433515548706,
758
+ "mean_token_accuracy": 0.9245596766471863,
759
+ "num_tokens": 1536000.0,
760
+ "step": 750
761
+ },
762
+ {
763
+ "entropy": 0.3902605950832367,
764
+ "epoch": 0.4342857142857143,
765
+ "grad_norm": 0.20825354754924774,
766
+ "learning_rate": 0.00011325714285714287,
767
+ "loss": 0.43376636505126953,
768
+ "mean_token_accuracy": 0.9424168273806572,
769
+ "num_tokens": 1556480.0,
770
+ "step": 760
771
+ },
772
+ {
773
+ "entropy": 0.44849342107772827,
774
+ "epoch": 0.44,
775
+ "grad_norm": 0.04826491326093674,
776
+ "learning_rate": 0.00011211428571428573,
777
+ "loss": 0.48691091537475584,
778
+ "mean_token_accuracy": 0.935812133550644,
779
+ "num_tokens": 1576960.0,
780
+ "step": 770
781
+ },
782
+ {
783
+ "entropy": 0.6068522818386555,
784
+ "epoch": 0.44571428571428573,
785
+ "grad_norm": 0.12682656943798065,
786
+ "learning_rate": 0.00011097142857142857,
787
+ "loss": 0.5062217712402344,
788
+ "mean_token_accuracy": 0.9334637969732285,
789
+ "num_tokens": 1597440.0,
790
+ "step": 780
791
+ },
792
+ {
793
+ "entropy": 0.5890683718025684,
794
+ "epoch": 0.4514285714285714,
795
+ "grad_norm": 0.05915551632642746,
796
+ "learning_rate": 0.00010982857142857143,
797
+ "loss": 0.5772375106811524,
798
+ "mean_token_accuracy": 0.922945199906826,
799
+ "num_tokens": 1617920.0,
800
+ "step": 790
801
+ },
802
+ {
803
+ "entropy": 0.44907821491360667,
804
+ "epoch": 0.45714285714285713,
805
+ "grad_norm": 0.05221934989094734,
806
+ "learning_rate": 0.0001086857142857143,
807
+ "loss": 0.39677114486694337,
808
+ "mean_token_accuracy": 0.9475048884749413,
809
+ "num_tokens": 1638400.0,
810
+ "step": 800
811
+ },
812
+ {
813
+ "entropy": 0.3511381965130568,
814
+ "epoch": 0.46285714285714286,
815
+ "grad_norm": 0.037601977586746216,
816
+ "learning_rate": 0.00010754285714285715,
817
+ "loss": 0.49465084075927734,
818
+ "mean_token_accuracy": 0.9351761221885682,
819
+ "num_tokens": 1658880.0,
820
+ "step": 810
821
+ },
822
+ {
823
+ "entropy": 0.5840609729290008,
824
+ "epoch": 0.4685714285714286,
825
+ "grad_norm": 0.062267005443573,
826
+ "learning_rate": 0.00010640000000000001,
827
+ "loss": 0.5255018711090088,
828
+ "mean_token_accuracy": 0.929941289126873,
829
+ "num_tokens": 1679360.0,
830
+ "step": 820
831
+ },
832
+ {
833
+ "entropy": 0.55433234795928,
834
+ "epoch": 0.4742857142857143,
835
+ "grad_norm": 0.07288116216659546,
836
+ "learning_rate": 0.00010525714285714285,
837
+ "loss": 0.5209427356719971,
838
+ "mean_token_accuracy": 0.9328767120838165,
839
+ "num_tokens": 1699840.0,
840
+ "step": 830
841
+ },
842
+ {
843
+ "entropy": 0.5656354635953903,
844
+ "epoch": 0.48,
845
+ "grad_norm": 0.06822408735752106,
846
+ "learning_rate": 0.00010411428571428573,
847
+ "loss": 0.549201250076294,
848
+ "mean_token_accuracy": 0.9275929510593415,
849
+ "num_tokens": 1720320.0,
850
+ "step": 840
851
+ },
852
+ {
853
+ "entropy": 0.48973754718899726,
854
+ "epoch": 0.4857142857142857,
855
+ "grad_norm": 0.05990103632211685,
856
+ "learning_rate": 0.00010297142857142859,
857
+ "loss": 0.49325761795043943,
858
+ "mean_token_accuracy": 0.9340508818626404,
859
+ "num_tokens": 1740800.0,
860
+ "step": 850
861
+ },
862
+ {
863
+ "entropy": 0.47543270140886307,
864
+ "epoch": 0.49142857142857144,
865
+ "grad_norm": 0.17406728863716125,
866
+ "learning_rate": 0.00010182857142857143,
867
+ "loss": 0.4794588565826416,
868
+ "mean_token_accuracy": 0.9373776882886886,
869
+ "num_tokens": 1761280.0,
870
+ "step": 860
871
+ },
872
+ {
873
+ "entropy": 0.5125072635710239,
874
+ "epoch": 0.49714285714285716,
875
+ "grad_norm": 0.09598424285650253,
876
+ "learning_rate": 0.00010068571428571429,
877
+ "loss": 0.48879342079162597,
878
+ "mean_token_accuracy": 0.9328767105937004,
879
+ "num_tokens": 1781760.0,
880
+ "step": 870
881
+ },
882
+ {
883
+ "entropy": 0.5078008212149143,
884
+ "epoch": 0.5028571428571429,
885
+ "grad_norm": 0.04539811238646507,
886
+ "learning_rate": 9.954285714285714e-05,
887
+ "loss": 0.5100128173828125,
888
+ "mean_token_accuracy": 0.933170248568058,
889
+ "num_tokens": 1802240.0,
890
+ "step": 880
891
+ },
892
+ {
893
+ "entropy": 0.5812924958765506,
894
+ "epoch": 0.5085714285714286,
895
+ "grad_norm": 0.08453221619129181,
896
+ "learning_rate": 9.84e-05,
897
+ "loss": 0.5912289619445801,
898
+ "mean_token_accuracy": 0.9213307231664658,
899
+ "num_tokens": 1822720.0,
900
+ "step": 890
901
+ },
902
+ {
903
+ "entropy": 0.6200520746409893,
904
+ "epoch": 0.5142857142857142,
905
+ "grad_norm": 0.06393375247716904,
906
+ "learning_rate": 9.725714285714286e-05,
907
+ "loss": 0.5631557464599609,
908
+ "mean_token_accuracy": 0.92387475669384,
909
+ "num_tokens": 1843200.0,
910
+ "step": 900
911
+ },
912
+ {
913
+ "entropy": 0.5358941219747066,
914
+ "epoch": 0.52,
915
+ "grad_norm": 0.06611394882202148,
916
+ "learning_rate": 9.611428571428572e-05,
917
+ "loss": 0.5037489414215088,
918
+ "mean_token_accuracy": 0.9342954933643342,
919
+ "num_tokens": 1863680.0,
920
+ "step": 910
921
+ },
922
+ {
923
+ "entropy": 0.49648854285478594,
924
+ "epoch": 0.5257142857142857,
925
+ "grad_norm": 0.048722244799137115,
926
+ "learning_rate": 9.497142857142857e-05,
927
+ "loss": 0.5899598121643066,
928
+ "mean_token_accuracy": 0.9235812112689018,
929
+ "num_tokens": 1884160.0,
930
+ "step": 920
931
+ },
932
+ {
933
+ "entropy": 0.5569692045450211,
934
+ "epoch": 0.5314285714285715,
935
+ "grad_norm": 0.059873905032873154,
936
+ "learning_rate": 9.382857142857144e-05,
937
+ "loss": 0.4581919193267822,
938
+ "mean_token_accuracy": 0.9386986270546913,
939
+ "num_tokens": 1904640.0,
940
+ "step": 930
941
+ },
942
+ {
943
+ "entropy": 0.5027755253016949,
944
+ "epoch": 0.5371428571428571,
945
+ "grad_norm": 0.06935913860797882,
946
+ "learning_rate": 9.268571428571429e-05,
947
+ "loss": 0.5418489933013916,
948
+ "mean_token_accuracy": 0.9288649693131447,
949
+ "num_tokens": 1925120.0,
950
+ "step": 940
951
+ },
952
+ {
953
+ "entropy": 0.5224891372025013,
954
+ "epoch": 0.5428571428571428,
955
+ "grad_norm": 0.08146216720342636,
956
+ "learning_rate": 9.154285714285715e-05,
957
+ "loss": 0.4692467212677002,
958
+ "mean_token_accuracy": 0.9363013684749604,
959
+ "num_tokens": 1945600.0,
960
+ "step": 950
961
+ },
962
+ {
963
+ "entropy": 0.3952696807682514,
964
+ "epoch": 0.5485714285714286,
965
+ "grad_norm": 0.04515131562948227,
966
+ "learning_rate": 9.04e-05,
967
+ "loss": 0.4561454296112061,
968
+ "mean_token_accuracy": 0.9393835559487342,
969
+ "num_tokens": 1966080.0,
970
+ "step": 960
971
+ },
972
+ {
973
+ "entropy": 0.585730504244566,
974
+ "epoch": 0.5542857142857143,
975
+ "grad_norm": 0.10511744022369385,
976
+ "learning_rate": 8.925714285714287e-05,
977
+ "loss": 0.49766831398010253,
978
+ "mean_token_accuracy": 0.9336105614900589,
979
+ "num_tokens": 1986560.0,
980
+ "step": 970
981
+ },
982
+ {
983
+ "entropy": 0.44790558367967603,
984
+ "epoch": 0.56,
985
+ "grad_norm": 0.10671456158161163,
986
+ "learning_rate": 8.811428571428572e-05,
987
+ "loss": 0.5533726215362549,
988
+ "mean_token_accuracy": 0.9256360054016113,
989
+ "num_tokens": 2007040.0,
990
+ "step": 980
991
+ },
992
+ {
993
+ "entropy": 0.6043247401714325,
994
+ "epoch": 0.5657142857142857,
995
+ "grad_norm": 0.07618619501590729,
996
+ "learning_rate": 8.697142857142857e-05,
997
+ "loss": 0.504014253616333,
998
+ "mean_token_accuracy": 0.9335616484284401,
999
+ "num_tokens": 2027520.0,
1000
+ "step": 990
1001
+ },
1002
+ {
1003
+ "entropy": 0.505135278403759,
1004
+ "epoch": 0.5714285714285714,
1005
+ "grad_norm": 0.04772692546248436,
1006
+ "learning_rate": 8.582857142857143e-05,
1007
+ "loss": 0.5780378341674804,
1008
+ "mean_token_accuracy": 0.9245107591152191,
1009
+ "num_tokens": 2048000.0,
1010
+ "step": 1000
1011
+ },
1012
+ {
1013
+ "entropy": 0.6646146893501281,
1014
+ "epoch": 0.5771428571428572,
1015
+ "grad_norm": 0.14273883402347565,
1016
+ "learning_rate": 8.46857142857143e-05,
1017
+ "loss": 0.5886980056762695,
1018
+ "mean_token_accuracy": 0.9233855158090591,
1019
+ "num_tokens": 2068480.0,
1020
+ "step": 1010
1021
+ },
1022
+ {
1023
+ "entropy": 0.4395291399210691,
1024
+ "epoch": 0.5828571428571429,
1025
+ "grad_norm": 0.14279323816299438,
1026
+ "learning_rate": 8.354285714285715e-05,
1027
+ "loss": 0.4073338508605957,
1028
+ "mean_token_accuracy": 0.9472602680325508,
1029
+ "num_tokens": 2088960.0,
1030
+ "step": 1020
1031
+ },
1032
+ {
1033
+ "entropy": 0.46593534424901006,
1034
+ "epoch": 0.5885714285714285,
1035
+ "grad_norm": 0.07002478837966919,
1036
+ "learning_rate": 8.24e-05,
1037
+ "loss": 0.5809737205505371,
1038
+ "mean_token_accuracy": 0.9250978484749794,
1039
+ "num_tokens": 2109440.0,
1040
+ "step": 1030
1041
+ },
1042
+ {
1043
+ "entropy": 0.6851501919329166,
1044
+ "epoch": 0.5942857142857143,
1045
+ "grad_norm": 0.09571711719036102,
1046
+ "learning_rate": 8.125714285714286e-05,
1047
+ "loss": 0.5552125453948975,
1048
+ "mean_token_accuracy": 0.9268101781606675,
1049
+ "num_tokens": 2129920.0,
1050
+ "step": 1040
1051
+ },
1052
+ {
1053
+ "entropy": 0.5178290113806725,
1054
+ "epoch": 0.6,
1055
+ "grad_norm": 0.05673440545797348,
1056
+ "learning_rate": 8.011428571428573e-05,
1057
+ "loss": 0.5303431034088135,
1058
+ "mean_token_accuracy": 0.9276418760418892,
1059
+ "num_tokens": 2150400.0,
1060
+ "step": 1050
1061
+ },
1062
+ {
1063
+ "entropy": 0.5137788712978363,
1064
+ "epoch": 0.6057142857142858,
1065
+ "grad_norm": 0.10853283107280731,
1066
+ "learning_rate": 7.897142857142858e-05,
1067
+ "loss": 0.5105819702148438,
1068
+ "mean_token_accuracy": 0.9317025363445282,
1069
+ "num_tokens": 2170880.0,
1070
+ "step": 1060
1071
+ },
1072
+ {
1073
+ "entropy": 0.47450395971536635,
1074
+ "epoch": 0.6114285714285714,
1075
+ "grad_norm": 0.07990778237581253,
1076
+ "learning_rate": 7.782857142857143e-05,
1077
+ "loss": 0.4573202610015869,
1078
+ "mean_token_accuracy": 0.9386007770895958,
1079
+ "num_tokens": 2191360.0,
1080
+ "step": 1070
1081
+ },
1082
+ {
1083
+ "entropy": 0.48751090839505196,
1084
+ "epoch": 0.6171428571428571,
1085
+ "grad_norm": 0.06365620344877243,
1086
+ "learning_rate": 7.668571428571429e-05,
1087
+ "loss": 0.47788248062133787,
1088
+ "mean_token_accuracy": 0.9339530274271965,
1089
+ "num_tokens": 2211840.0,
1090
+ "step": 1080
1091
+ },
1092
+ {
1093
+ "entropy": 0.6432172752916813,
1094
+ "epoch": 0.6228571428571429,
1095
+ "grad_norm": 0.15153902769088745,
1096
+ "learning_rate": 7.554285714285716e-05,
1097
+ "loss": 0.643152379989624,
1098
+ "mean_token_accuracy": 0.9154598772525787,
1099
+ "num_tokens": 2232320.0,
1100
+ "step": 1090
1101
+ },
1102
+ {
1103
+ "entropy": 0.5494025968015194,
1104
+ "epoch": 0.6285714285714286,
1105
+ "grad_norm": 0.05778637155890465,
1106
+ "learning_rate": 7.44e-05,
1107
+ "loss": 0.5356337070465088,
1108
+ "mean_token_accuracy": 0.9269080251455307,
1109
+ "num_tokens": 2252800.0,
1110
+ "step": 1100
1111
+ },
1112
+ {
1113
+ "entropy": 0.4848433412611485,
1114
+ "epoch": 0.6342857142857142,
1115
+ "grad_norm": 0.06926964968442917,
1116
+ "learning_rate": 7.325714285714286e-05,
1117
+ "loss": 0.4998468399047852,
1118
+ "mean_token_accuracy": 0.9333170250058174,
1119
+ "num_tokens": 2273280.0,
1120
+ "step": 1110
1121
+ },
1122
+ {
1123
+ "entropy": 0.48359694480896,
1124
+ "epoch": 0.64,
1125
+ "grad_norm": 0.047927126288414,
1126
+ "learning_rate": 7.211428571428572e-05,
1127
+ "loss": 0.4242386341094971,
1128
+ "mean_token_accuracy": 0.9413894265890121,
1129
+ "num_tokens": 2293760.0,
1130
+ "step": 1120
1131
+ },
1132
+ {
1133
+ "entropy": 0.46179538443684576,
1134
+ "epoch": 0.6457142857142857,
1135
+ "grad_norm": 0.055567119270563126,
1136
+ "learning_rate": 7.097142857142857e-05,
1137
+ "loss": 0.47112126350402833,
1138
+ "mean_token_accuracy": 0.937279836833477,
1139
+ "num_tokens": 2314240.0,
1140
+ "step": 1130
1141
+ },
1142
+ {
1143
+ "entropy": 0.542270090430975,
1144
+ "epoch": 0.6514285714285715,
1145
+ "grad_norm": 0.05670230835676193,
1146
+ "learning_rate": 6.982857142857144e-05,
1147
+ "loss": 0.5318952560424804,
1148
+ "mean_token_accuracy": 0.9284246578812599,
1149
+ "num_tokens": 2334720.0,
1150
+ "step": 1140
1151
+ },
1152
+ {
1153
+ "entropy": 0.5143633857369423,
1154
+ "epoch": 0.6571428571428571,
1155
+ "grad_norm": 0.13285626471042633,
1156
+ "learning_rate": 6.868571428571429e-05,
1157
+ "loss": 0.5228913784027099,
1158
+ "mean_token_accuracy": 0.9306262180209159,
1159
+ "num_tokens": 2355200.0,
1160
+ "step": 1150
1161
+ },
1162
+ {
1163
+ "entropy": 0.5278540596365928,
1164
+ "epoch": 0.6628571428571428,
1165
+ "grad_norm": 0.12014856934547424,
1166
+ "learning_rate": 6.754285714285714e-05,
1167
+ "loss": 0.4942105770111084,
1168
+ "mean_token_accuracy": 0.9336105525493622,
1169
+ "num_tokens": 2375680.0,
1170
+ "step": 1160
1171
+ },
1172
+ {
1173
+ "entropy": 0.47442091852426527,
1174
+ "epoch": 0.6685714285714286,
1175
+ "grad_norm": 0.07225783169269562,
1176
+ "learning_rate": 6.64e-05,
1177
+ "loss": 0.5058286190032959,
1178
+ "mean_token_accuracy": 0.9322896271944046,
1179
+ "num_tokens": 2396160.0,
1180
+ "step": 1170
1181
+ },
1182
+ {
1183
+ "entropy": 0.5688920177519321,
1184
+ "epoch": 0.6742857142857143,
1185
+ "grad_norm": 0.18159577250480652,
1186
+ "learning_rate": 6.525714285714287e-05,
1187
+ "loss": 0.5753805637359619,
1188
+ "mean_token_accuracy": 0.9244618400931358,
1189
+ "num_tokens": 2416640.0,
1190
+ "step": 1180
1191
+ },
1192
+ {
1193
+ "entropy": 0.6023895367980003,
1194
+ "epoch": 0.68,
1195
+ "grad_norm": 0.08553122729063034,
1196
+ "learning_rate": 6.411428571428572e-05,
1197
+ "loss": 0.5713490009307861,
1198
+ "mean_token_accuracy": 0.9245596811175346,
1199
+ "num_tokens": 2437120.0,
1200
+ "step": 1190
1201
+ },
1202
+ {
1203
+ "entropy": 0.5261122666299343,
1204
+ "epoch": 0.6857142857142857,
1205
+ "grad_norm": 0.049268610775470734,
1206
+ "learning_rate": 6.297142857142857e-05,
1207
+ "loss": 0.4773250579833984,
1208
+ "mean_token_accuracy": 0.9357142806053161,
1209
+ "num_tokens": 2457600.0,
1210
+ "step": 1200
1211
+ },
1212
+ {
1213
+ "entropy": 0.4250579118728638,
1214
+ "epoch": 0.6914285714285714,
1215
+ "grad_norm": 0.08859790861606598,
1216
+ "learning_rate": 6.182857142857143e-05,
1217
+ "loss": 0.5190114974975586,
1218
+ "mean_token_accuracy": 0.9327788591384888,
1219
+ "num_tokens": 2478080.0,
1220
+ "step": 1210
1221
+ },
1222
+ {
1223
+ "entropy": 0.5697022847831249,
1224
+ "epoch": 0.6971428571428572,
1225
+ "grad_norm": 0.057728637009859085,
1226
+ "learning_rate": 6.068571428571429e-05,
1227
+ "loss": 0.5468664169311523,
1228
+ "mean_token_accuracy": 0.9258806198835373,
1229
+ "num_tokens": 2498560.0,
1230
+ "step": 1220
1231
+ },
1232
+ {
1233
+ "entropy": 0.6075248032808304,
1234
+ "epoch": 0.7028571428571428,
1235
+ "grad_norm": 0.11526218056678772,
1236
+ "learning_rate": 5.9542857142857146e-05,
1237
+ "loss": 0.5527401447296143,
1238
+ "mean_token_accuracy": 0.9275929555296898,
1239
+ "num_tokens": 2519040.0,
1240
+ "step": 1230
1241
+ },
1242
+ {
1243
+ "entropy": 0.42498912289738655,
1244
+ "epoch": 0.7085714285714285,
1245
+ "grad_norm": 0.03980788588523865,
1246
+ "learning_rate": 5.8399999999999997e-05,
1247
+ "loss": 0.33912794589996337,
1248
+ "mean_token_accuracy": 0.952054788172245,
1249
+ "num_tokens": 2539520.0,
1250
+ "step": 1240
1251
+ },
1252
+ {
1253
+ "entropy": 0.3205617554485798,
1254
+ "epoch": 0.7142857142857143,
1255
+ "grad_norm": 0.18020202219486237,
1256
+ "learning_rate": 5.725714285714287e-05,
1257
+ "loss": 0.46316843032836913,
1258
+ "mean_token_accuracy": 0.9384540095925331,
1259
+ "num_tokens": 2560000.0,
1260
+ "step": 1250
1261
+ },
1262
+ {
1263
+ "entropy": 0.5134926207363606,
1264
+ "epoch": 0.72,
1265
+ "grad_norm": 0.05606986954808235,
1266
+ "learning_rate": 5.611428571428572e-05,
1267
+ "loss": 0.493113374710083,
1268
+ "mean_token_accuracy": 0.9350782737135888,
1269
+ "num_tokens": 2580480.0,
1270
+ "step": 1260
1271
+ },
1272
+ {
1273
+ "entropy": 0.5948906727135181,
1274
+ "epoch": 0.7257142857142858,
1275
+ "grad_norm": 0.0776003748178482,
1276
+ "learning_rate": 5.4971428571428576e-05,
1277
+ "loss": 0.5038031101226806,
1278
+ "mean_token_accuracy": 0.9321917742490768,
1279
+ "num_tokens": 2600960.0,
1280
+ "step": 1270
1281
+ },
1282
+ {
1283
+ "entropy": 0.49316187873482703,
1284
+ "epoch": 0.7314285714285714,
1285
+ "grad_norm": 0.045350395143032074,
1286
+ "learning_rate": 5.3828571428571426e-05,
1287
+ "loss": 0.5338226795196533,
1288
+ "mean_token_accuracy": 0.9277397200465203,
1289
+ "num_tokens": 2621440.0,
1290
+ "step": 1280
1291
+ },
1292
+ {
1293
+ "entropy": 0.5127949021756649,
1294
+ "epoch": 0.7371428571428571,
1295
+ "grad_norm": 0.11139972507953644,
1296
+ "learning_rate": 5.2685714285714284e-05,
1297
+ "loss": 0.5134667873382568,
1298
+ "mean_token_accuracy": 0.9301369816064835,
1299
+ "num_tokens": 2641920.0,
1300
+ "step": 1290
1301
+ },
1302
+ {
1303
+ "entropy": 0.5037195473909378,
1304
+ "epoch": 0.7428571428571429,
1305
+ "grad_norm": 0.07528945058584213,
1306
+ "learning_rate": 5.154285714285715e-05,
1307
+ "loss": 0.4140820026397705,
1308
+ "mean_token_accuracy": 0.9437377616763115,
1309
+ "num_tokens": 2662400.0,
1310
+ "step": 1300
1311
+ },
1312
+ {
1313
+ "entropy": 0.4342464208602905,
1314
+ "epoch": 0.7485714285714286,
1315
+ "grad_norm": 0.04880405217409134,
1316
+ "learning_rate": 5.0400000000000005e-05,
1317
+ "loss": 0.44888153076171877,
1318
+ "mean_token_accuracy": 0.9398727953433991,
1319
+ "num_tokens": 2682880.0,
1320
+ "step": 1310
1321
+ },
1322
+ {
1323
+ "entropy": 0.4520566128194332,
1324
+ "epoch": 0.7542857142857143,
1325
+ "grad_norm": 0.06463604420423508,
1326
+ "learning_rate": 4.9257142857142856e-05,
1327
+ "loss": 0.4620377540588379,
1328
+ "mean_token_accuracy": 0.9389921724796295,
1329
+ "num_tokens": 2703360.0,
1330
+ "step": 1320
1331
+ },
1332
+ {
1333
+ "entropy": 0.5098449736833572,
1334
+ "epoch": 0.76,
1335
+ "grad_norm": 0.08104566484689713,
1336
+ "learning_rate": 4.811428571428572e-05,
1337
+ "loss": 0.5255457878112793,
1338
+ "mean_token_accuracy": 0.9294031277298928,
1339
+ "num_tokens": 2723840.0,
1340
+ "step": 1330
1341
+ },
1342
+ {
1343
+ "entropy": 0.5557918883860111,
1344
+ "epoch": 0.7657142857142857,
1345
+ "grad_norm": 0.17115789651870728,
1346
+ "learning_rate": 4.697142857142857e-05,
1347
+ "loss": 0.5438389301300048,
1348
+ "mean_token_accuracy": 0.9260763168334961,
1349
+ "num_tokens": 2744320.0,
1350
+ "step": 1340
1351
+ },
1352
+ {
1353
+ "entropy": 0.4861530035734177,
1354
+ "epoch": 0.7714285714285715,
1355
+ "grad_norm": 0.11599256098270416,
1356
+ "learning_rate": 4.5828571428571435e-05,
1357
+ "loss": 0.4168668270111084,
1358
+ "mean_token_accuracy": 0.9445205450057983,
1359
+ "num_tokens": 2764800.0,
1360
+ "step": 1350
1361
+ },
1362
+ {
1363
+ "entropy": 0.4026035204529762,
1364
+ "epoch": 0.7771428571428571,
1365
+ "grad_norm": 0.12264294922351837,
1366
+ "learning_rate": 4.4685714285714286e-05,
1367
+ "loss": 0.44530544281005857,
1368
+ "mean_token_accuracy": 0.9406555786728859,
1369
+ "num_tokens": 2785280.0,
1370
+ "step": 1360
1371
+ },
1372
+ {
1373
+ "entropy": 0.4574496321380138,
1374
+ "epoch": 0.7828571428571428,
1375
+ "grad_norm": 0.061350978910923004,
1376
+ "learning_rate": 4.354285714285714e-05,
1377
+ "loss": 0.4872305393218994,
1378
+ "mean_token_accuracy": 0.9332681015133858,
1379
+ "num_tokens": 2805760.0,
1380
+ "step": 1370
1381
+ },
1382
+ {
1383
+ "entropy": 0.5247848644852638,
1384
+ "epoch": 0.7885714285714286,
1385
+ "grad_norm": 0.16169291734695435,
1386
+ "learning_rate": 4.24e-05,
1387
+ "loss": 0.6098764419555665,
1388
+ "mean_token_accuracy": 0.918003910779953,
1389
+ "num_tokens": 2826240.0,
1390
+ "step": 1380
1391
+ },
1392
+ {
1393
+ "entropy": 0.6509688436985016,
1394
+ "epoch": 0.7942857142857143,
1395
+ "grad_norm": 0.08834604918956757,
1396
+ "learning_rate": 4.125714285714286e-05,
1397
+ "loss": 0.44071273803710936,
1398
+ "mean_token_accuracy": 0.9414872780442238,
1399
+ "num_tokens": 2846720.0,
1400
+ "step": 1390
1401
+ },
1402
+ {
1403
+ "entropy": 0.4596972182393074,
1404
+ "epoch": 0.8,
1405
+ "grad_norm": 0.11084280163049698,
1406
+ "learning_rate": 4.0114285714285715e-05,
1407
+ "loss": 0.5611968994140625,
1408
+ "mean_token_accuracy": 0.9244618371129036,
1409
+ "num_tokens": 2867200.0,
1410
+ "step": 1400
1411
+ },
1412
+ {
1413
+ "entropy": 0.4872237786650658,
1414
+ "epoch": 0.8057142857142857,
1415
+ "grad_norm": 0.06508481502532959,
1416
+ "learning_rate": 3.897142857142857e-05,
1417
+ "loss": 0.48762712478637693,
1418
+ "mean_token_accuracy": 0.934931506216526,
1419
+ "num_tokens": 2887680.0,
1420
+ "step": 1410
1421
+ },
1422
+ {
1423
+ "entropy": 0.5000090979039669,
1424
+ "epoch": 0.8114285714285714,
1425
+ "grad_norm": 0.09130967408418655,
1426
+ "learning_rate": 3.782857142857143e-05,
1427
+ "loss": 0.4005345344543457,
1428
+ "mean_token_accuracy": 0.9463307186961174,
1429
+ "num_tokens": 2908160.0,
1430
+ "step": 1420
1431
+ },
1432
+ {
1433
+ "entropy": 0.47738232761621474,
1434
+ "epoch": 0.8171428571428572,
1435
+ "grad_norm": 0.044347282499074936,
1436
+ "learning_rate": 3.668571428571429e-05,
1437
+ "loss": 0.48606581687927247,
1438
+ "mean_token_accuracy": 0.9353718161582947,
1439
+ "num_tokens": 2928640.0,
1440
+ "step": 1430
1441
+ },
1442
+ {
1443
+ "entropy": 0.42782202512025835,
1444
+ "epoch": 0.8228571428571428,
1445
+ "grad_norm": 0.07000281661748886,
1446
+ "learning_rate": 3.5542857142857145e-05,
1447
+ "loss": 0.4319033145904541,
1448
+ "mean_token_accuracy": 0.9425146728754044,
1449
+ "num_tokens": 2949120.0,
1450
+ "step": 1440
1451
+ },
1452
+ {
1453
+ "entropy": 0.42102750316262244,
1454
+ "epoch": 0.8285714285714286,
1455
+ "grad_norm": 0.051525264978408813,
1456
+ "learning_rate": 3.4399999999999996e-05,
1457
+ "loss": 0.5133680820465087,
1458
+ "mean_token_accuracy": 0.9324363932013512,
1459
+ "num_tokens": 2969600.0,
1460
+ "step": 1450
1461
+ },
1462
+ {
1463
+ "entropy": 0.49969290792942045,
1464
+ "epoch": 0.8342857142857143,
1465
+ "grad_norm": 0.09799740463495255,
1466
+ "learning_rate": 3.325714285714286e-05,
1467
+ "loss": 0.35628225803375246,
1468
+ "mean_token_accuracy": 0.9507338494062424,
1469
+ "num_tokens": 2990080.0,
1470
+ "step": 1460
1471
+ },
1472
+ {
1473
+ "entropy": 0.45728029012680055,
1474
+ "epoch": 0.84,
1475
+ "grad_norm": 0.09343012422323227,
1476
+ "learning_rate": 3.211428571428571e-05,
1477
+ "loss": 0.49259514808654786,
1478
+ "mean_token_accuracy": 0.9346379593014718,
1479
+ "num_tokens": 3010560.0,
1480
+ "step": 1470
1481
+ },
1482
+ {
1483
+ "entropy": 0.43957103714346885,
1484
+ "epoch": 0.8457142857142858,
1485
+ "grad_norm": 0.08746747672557831,
1486
+ "learning_rate": 3.0971428571428575e-05,
1487
+ "loss": 0.4531531810760498,
1488
+ "mean_token_accuracy": 0.9389432400465012,
1489
+ "num_tokens": 3031040.0,
1490
+ "step": 1480
1491
+ },
1492
+ {
1493
+ "entropy": 0.4378614515066147,
1494
+ "epoch": 0.8514285714285714,
1495
+ "grad_norm": 0.08076383918523788,
1496
+ "learning_rate": 2.982857142857143e-05,
1497
+ "loss": 0.38294827938079834,
1498
+ "mean_token_accuracy": 0.9463307201862335,
1499
+ "num_tokens": 3051520.0,
1500
+ "step": 1490
1501
+ },
1502
+ {
1503
+ "entropy": 0.404469034075737,
1504
+ "epoch": 0.8571428571428571,
1505
+ "grad_norm": 0.07423587143421173,
1506
+ "learning_rate": 2.8685714285714286e-05,
1507
+ "loss": 0.3835278511047363,
1508
+ "mean_token_accuracy": 0.9466731920838356,
1509
+ "num_tokens": 3072000.0,
1510
+ "step": 1500
1511
+ },
1512
+ {
1513
+ "entropy": 0.4296922437846661,
1514
+ "epoch": 0.8628571428571429,
1515
+ "grad_norm": 0.0661383792757988,
1516
+ "learning_rate": 2.7542857142857144e-05,
1517
+ "loss": 0.4782656192779541,
1518
+ "mean_token_accuracy": 0.9355185866355896,
1519
+ "num_tokens": 3092480.0,
1520
+ "step": 1510
1521
+ },
1522
+ {
1523
+ "entropy": 0.5012158110737801,
1524
+ "epoch": 0.8685714285714285,
1525
+ "grad_norm": 0.061526812613010406,
1526
+ "learning_rate": 2.64e-05,
1527
+ "loss": 0.498062801361084,
1528
+ "mean_token_accuracy": 0.9329256370663643,
1529
+ "num_tokens": 3112960.0,
1530
+ "step": 1520
1531
+ },
1532
+ {
1533
+ "entropy": 0.5610668167471886,
1534
+ "epoch": 0.8742857142857143,
1535
+ "grad_norm": 0.06692764163017273,
1536
+ "learning_rate": 2.5257142857142855e-05,
1537
+ "loss": 0.5882072925567627,
1538
+ "mean_token_accuracy": 0.9202544033527374,
1539
+ "num_tokens": 3133440.0,
1540
+ "step": 1530
1541
+ },
1542
+ {
1543
+ "entropy": 0.5811519846320152,
1544
+ "epoch": 0.88,
1545
+ "grad_norm": 0.07140078395605087,
1546
+ "learning_rate": 2.4114285714285713e-05,
1547
+ "loss": 0.5379503250122071,
1548
+ "mean_token_accuracy": 0.9279354155063629,
1549
+ "num_tokens": 3153920.0,
1550
+ "step": 1540
1551
+ },
1552
+ {
1553
+ "entropy": 0.5530194289982319,
1554
+ "epoch": 0.8857142857142857,
1555
+ "grad_norm": 0.06519081443548203,
1556
+ "learning_rate": 2.297142857142857e-05,
1557
+ "loss": 0.46042847633361816,
1558
+ "mean_token_accuracy": 0.9379647731781006,
1559
+ "num_tokens": 3174400.0,
1560
+ "step": 1550
1561
+ },
1562
+ {
1563
+ "entropy": 0.48414005115628245,
1564
+ "epoch": 0.8914285714285715,
1565
+ "grad_norm": 0.1207524910569191,
1566
+ "learning_rate": 2.1828571428571428e-05,
1567
+ "loss": 0.5741530895233155,
1568
+ "mean_token_accuracy": 0.9217710316181182,
1569
+ "num_tokens": 3194880.0,
1570
+ "step": 1560
1571
+ },
1572
+ {
1573
+ "entropy": 0.5202787101268769,
1574
+ "epoch": 0.8971428571428571,
1575
+ "grad_norm": 0.14086130261421204,
1576
+ "learning_rate": 2.0685714285714285e-05,
1577
+ "loss": 0.4223160743713379,
1578
+ "mean_token_accuracy": 0.9427103668451309,
1579
+ "num_tokens": 3215360.0,
1580
+ "step": 1570
1581
+ },
1582
+ {
1583
+ "entropy": 0.46667657494544984,
1584
+ "epoch": 0.9028571428571428,
1585
+ "grad_norm": 0.08360854536294937,
1586
+ "learning_rate": 1.9542857142857143e-05,
1587
+ "loss": 0.5375402450561524,
1588
+ "mean_token_accuracy": 0.9278864920139313,
1589
+ "num_tokens": 3235840.0,
1590
+ "step": 1580
1591
+ },
1592
+ {
1593
+ "entropy": 0.5302047237753869,
1594
+ "epoch": 0.9085714285714286,
1595
+ "grad_norm": 0.1263239085674286,
1596
+ "learning_rate": 1.84e-05,
1597
+ "loss": 0.5738934993743896,
1598
+ "mean_token_accuracy": 0.9234833672642708,
1599
+ "num_tokens": 3256320.0,
1600
+ "step": 1590
1601
+ },
1602
+ {
1603
+ "entropy": 0.5907163083553314,
1604
+ "epoch": 0.9142857142857143,
1605
+ "grad_norm": 0.1855882853269577,
1606
+ "learning_rate": 1.7257142857142857e-05,
1607
+ "loss": 0.5114128112792968,
1608
+ "mean_token_accuracy": 0.9324853181838989,
1609
+ "num_tokens": 3276800.0,
1610
+ "step": 1600
1611
+ },
1612
+ {
1613
+ "entropy": 0.5579292640089989,
1614
+ "epoch": 0.92,
1615
+ "grad_norm": 0.07140802592039108,
1616
+ "learning_rate": 1.6114285714285715e-05,
1617
+ "loss": 0.5325123786926269,
1618
+ "mean_token_accuracy": 0.927788645029068,
1619
+ "num_tokens": 3297280.0,
1620
+ "step": 1610
1621
+ },
1622
+ {
1623
+ "entropy": 0.5179159216582775,
1624
+ "epoch": 0.9257142857142857,
1625
+ "grad_norm": 0.16600361466407776,
1626
+ "learning_rate": 1.4971428571428572e-05,
1627
+ "loss": 0.6152241230010986,
1628
+ "mean_token_accuracy": 0.9193737730383873,
1629
+ "num_tokens": 3317760.0,
1630
+ "step": 1620
1631
+ },
1632
+ {
1633
+ "entropy": 0.5268598526716233,
1634
+ "epoch": 0.9314285714285714,
1635
+ "grad_norm": 0.09788428992033005,
1636
+ "learning_rate": 1.382857142857143e-05,
1637
+ "loss": 0.4881411075592041,
1638
+ "mean_token_accuracy": 0.9339041069149971,
1639
+ "num_tokens": 3338240.0,
1640
+ "step": 1630
1641
+ },
1642
+ {
1643
+ "entropy": 0.5437945984303951,
1644
+ "epoch": 0.9371428571428572,
1645
+ "grad_norm": 0.10436356067657471,
1646
+ "learning_rate": 1.2685714285714287e-05,
1647
+ "loss": 0.4268455982208252,
1648
+ "mean_token_accuracy": 0.9410469651222229,
1649
+ "num_tokens": 3358720.0,
1650
+ "step": 1640
1651
+ },
1652
+ {
1653
+ "entropy": 0.5317239560186863,
1654
+ "epoch": 0.9428571428571428,
1655
+ "grad_norm": 0.05967115983366966,
1656
+ "learning_rate": 1.1542857142857143e-05,
1657
+ "loss": 0.5399470329284668,
1658
+ "mean_token_accuracy": 0.9254892319440842,
1659
+ "num_tokens": 3379200.0,
1660
+ "step": 1650
1661
+ },
1662
+ {
1663
+ "entropy": 0.4992189362645149,
1664
+ "epoch": 0.9485714285714286,
1665
+ "grad_norm": 0.13386836647987366,
1666
+ "learning_rate": 1.04e-05,
1667
+ "loss": 0.5015877723693848,
1668
+ "mean_token_accuracy": 0.934491191804409,
1669
+ "num_tokens": 3399680.0,
1670
+ "step": 1660
1671
+ },
1672
+ {
1673
+ "entropy": 0.5123340539634228,
1674
+ "epoch": 0.9542857142857143,
1675
+ "grad_norm": 0.05497074872255325,
1676
+ "learning_rate": 9.257142857142858e-06,
1677
+ "loss": 0.5586126327514649,
1678
+ "mean_token_accuracy": 0.9271526366472245,
1679
+ "num_tokens": 3420160.0,
1680
+ "step": 1670
1681
+ },
1682
+ {
1683
+ "entropy": 0.5163224466145039,
1684
+ "epoch": 0.96,
1685
+ "grad_norm": 0.0693693533539772,
1686
+ "learning_rate": 8.114285714285715e-06,
1687
+ "loss": 0.4154366493225098,
1688
+ "mean_token_accuracy": 0.9436399176716804,
1689
+ "num_tokens": 3440640.0,
1690
+ "step": 1680
1691
+ },
1692
+ {
1693
+ "entropy": 0.49698133692145346,
1694
+ "epoch": 0.9657142857142857,
1695
+ "grad_norm": 0.08076659590005875,
1696
+ "learning_rate": 6.971428571428572e-06,
1697
+ "loss": 0.5139700412750244,
1698
+ "mean_token_accuracy": 0.9308219149708747,
1699
+ "num_tokens": 3461120.0,
1700
+ "step": 1690
1701
+ },
1702
+ {
1703
+ "entropy": 0.49391010627150533,
1704
+ "epoch": 0.9714285714285714,
1705
+ "grad_norm": 0.09655225276947021,
1706
+ "learning_rate": 5.828571428571429e-06,
1707
+ "loss": 0.5655792713165283,
1708
+ "mean_token_accuracy": 0.9232387498021126,
1709
+ "num_tokens": 3481600.0,
1710
+ "step": 1700
1711
+ },
1712
+ {
1713
+ "entropy": 0.49822288006544113,
1714
+ "epoch": 0.9771428571428571,
1715
+ "grad_norm": 0.07442907243967056,
1716
+ "learning_rate": 4.685714285714286e-06,
1717
+ "loss": 0.49275979995727537,
1718
+ "mean_token_accuracy": 0.9336105659604073,
1719
+ "num_tokens": 3502080.0,
1720
+ "step": 1710
1721
+ },
1722
+ {
1723
+ "entropy": 0.508363638818264,
1724
+ "epoch": 0.9828571428571429,
1725
+ "grad_norm": 0.10111571848392487,
1726
+ "learning_rate": 3.542857142857143e-06,
1727
+ "loss": 0.4838888168334961,
1728
+ "mean_token_accuracy": 0.9345401152968407,
1729
+ "num_tokens": 3522560.0,
1730
+ "step": 1720
1731
+ },
1732
+ {
1733
+ "entropy": 0.5120342709124088,
1734
+ "epoch": 0.9885714285714285,
1735
+ "grad_norm": 0.1176028847694397,
1736
+ "learning_rate": 2.4000000000000003e-06,
1737
+ "loss": 0.4899916172027588,
1738
+ "mean_token_accuracy": 0.936203519999981,
1739
+ "num_tokens": 3543040.0,
1740
+ "step": 1730
1741
+ },
1742
+ {
1743
+ "entropy": 0.513513358682394,
1744
+ "epoch": 0.9942857142857143,
1745
+ "grad_norm": 0.14512506127357483,
1746
+ "learning_rate": 1.2571428571428573e-06,
1747
+ "loss": 0.5239700317382813,
1748
+ "mean_token_accuracy": 0.9305772989988327,
1749
+ "num_tokens": 3563520.0,
1750
+ "step": 1740
1751
+ },
1752
+ {
1753
+ "entropy": 0.5018158197402954,
1754
+ "epoch": 1.0,
1755
+ "grad_norm": 0.14404776692390442,
1756
+ "learning_rate": 1.142857142857143e-07,
1757
+ "loss": 0.5281579971313477,
1758
+ "mean_token_accuracy": 0.9306751415133476,
1759
+ "num_tokens": 3584000.0,
1760
+ "step": 1750
1761
+ }
1762
+ ],
1763
+ "logging_steps": 10,
1764
+ "max_steps": 1750,
1765
+ "num_input_tokens_seen": 0,
1766
+ "num_train_epochs": 1,
1767
+ "save_steps": 500,
1768
+ "stateful_callbacks": {
1769
+ "TrainerControl": {
1770
+ "args": {
1771
+ "should_epoch_stop": false,
1772
+ "should_evaluate": false,
1773
+ "should_log": false,
1774
+ "should_save": true,
1775
+ "should_training_stop": true
1776
+ },
1777
+ "attributes": {}
1778
+ }
1779
+ },
1780
+ "total_flos": 2.7601617813504e+16,
1781
+ "train_batch_size": 1,
1782
+ "trial_name": null,
1783
+ "trial_params": null
1784
+ }
sql-model/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
sql-model/tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": null,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<|begin▁of▁sentence|>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|end▁of▁sentence|>",
7
+ "is_local": false,
8
+ "model_max_length": 16384,
9
+ "pad_token": "<|end▁of▁sentence|>",
10
+ "sp_model_kwargs": {},
11
+ "tokenizer_class": "LlamaTokenizer",
12
+ "unk_token": null,
13
+ "use_default_system_prompt": false
14
+ }