stefanocarrera commited on
Commit
0a52a0c
·
verified ·
1 Parent(s): f2a3aaa

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ checkpoint-150/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-164/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
3
+ library_name: peft
4
+ model_name: adapters
5
+ tags:
6
+ - base_model:adapter:meta-llama/Meta-Llama-3.1-8B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for adapters
16
+
17
+ This model is a fine-tuned version of [meta-llama/Meta-Llama-3.1-8B-Instruct](https://huggingface.co/meta-llama/Meta-Llama-3.1-8B-Instruct).
18
+ It has been trained using [TRL](https://github.com/huggingface/trl).
19
+
20
+ ## Quick start
21
+
22
+ ```python
23
+ from transformers import pipeline
24
+
25
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
26
+ generator = pipeline("text-generation", model="None", device="cuda")
27
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
28
+ print(output["generated_text"])
29
+ ```
30
+
31
+ ## Training procedure
32
+
33
+
34
+
35
+
36
+ This model was trained with SFT.
37
+
38
+ ### Framework versions
39
+
40
+ - PEFT 0.18.1
41
+ - TRL: 0.27.2
42
+ - Transformers: 5.0.0
43
+ - Pytorch: 2.7.1+cu118
44
+ - Datasets: 4.5.0
45
+ - Tokenizers: 0.22.2
46
+
47
+ ## Citations
48
+
49
+
50
+
51
+ Cite TRL as:
52
+
53
+ ```bibtex
54
+ @misc{vonwerra2022trl,
55
+ title = {{TRL: Transformer Reinforcement Learning}},
56
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
57
+ year = 2020,
58
+ journal = {GitHub repository},
59
+ publisher = {GitHub},
60
+ howpublished = {\url{https://github.com/huggingface/trl}}
61
+ }
62
+ ```
adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "meta-llama/Meta-Llama-3.1-8B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0,
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
+ "gate_proj",
33
+ "k_proj",
34
+ "up_proj",
35
+ "o_proj",
36
+ "down_proj",
37
+ "v_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1cfd52fdf227b7e674c9a251aff7c304abf9a7a8919fce7857b076b93ca8e43
3
+ size 83946192
chat_template.jinja ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- set date_string = "26 Jul 2024" %}
10
+ {%- endif %}
11
+ {%- if not tools is defined %}
12
+ {%- set tools = none %}
13
+ {%- endif %}
14
+
15
+ {#- This block extracts the system message, so we can slot it into the right place. #}
16
+ {%- if messages[0]['role'] == 'system' %}
17
+ {%- set system_message = messages[0]['content']|trim %}
18
+ {%- set messages = messages[1:] %}
19
+ {%- else %}
20
+ {%- set system_message = "" %}
21
+ {%- endif %}
22
+
23
+ {#- System message + builtin tools #}
24
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
25
+ {%- if builtin_tools is defined or tools is not none %}
26
+ {{- "Environment: ipython\n" }}
27
+ {%- endif %}
28
+ {%- if builtin_tools is defined %}
29
+ {{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
30
+ {%- endif %}
31
+ {{- "Cutting Knowledge Date: December 2023\n" }}
32
+ {{- "Today Date: " + date_string + "\n\n" }}
33
+ {%- if tools is not none and not tools_in_user_message %}
34
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
35
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
36
+ {{- "Do not use variables.\n\n" }}
37
+ {%- for t in tools %}
38
+ {{- t | tojson(indent=4) }}
39
+ {{- "\n\n" }}
40
+ {%- endfor %}
41
+ {%- endif %}
42
+ {{- system_message }}
43
+ {{- "<|eot_id|>" }}
44
+
45
+ {#- Custom tools are passed in a user message with some extra guidance #}
46
+ {%- if tools_in_user_message and not tools is none %}
47
+ {#- Extract the first user message so we can plug it in here #}
48
+ {%- if messages | length != 0 %}
49
+ {%- set first_user_message = messages[0]['content']|trim %}
50
+ {%- set messages = messages[1:] %}
51
+ {%- else %}
52
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
53
+ {%- endif %}
54
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
55
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
56
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
57
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
58
+ {{- "Do not use variables.\n\n" }}
59
+ {%- for t in tools %}
60
+ {{- t | tojson(indent=4) }}
61
+ {{- "\n\n" }}
62
+ {%- endfor %}
63
+ {{- first_user_message + "<|eot_id|>"}}
64
+ {%- endif %}
65
+
66
+ {%- for message in messages %}
67
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
68
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
69
+ {%- elif 'tool_calls' in message %}
70
+ {%- if not message.tool_calls|length == 1 %}
71
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
72
+ {%- endif %}
73
+ {%- set tool_call = message.tool_calls[0].function %}
74
+ {%- if builtin_tools is defined and tool_call.name in builtin_tools %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
76
+ {{- "<|python_tag|>" + tool_call.name + ".call(" }}
77
+ {%- for arg_name, arg_val in tool_call.arguments | items %}
78
+ {{- arg_name + '="' + arg_val + '"' }}
79
+ {%- if not loop.last %}
80
+ {{- ", " }}
81
+ {%- endif %}
82
+ {%- endfor %}
83
+ {{- ")" }}
84
+ {%- else %}
85
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
86
+ {{- '{"name": "' + tool_call.name + '", ' }}
87
+ {{- '"parameters": ' }}
88
+ {{- tool_call.arguments | tojson }}
89
+ {{- "}" }}
90
+ {%- endif %}
91
+ {%- if builtin_tools is defined %}
92
+ {#- This means we're in ipython mode #}
93
+ {{- "<|eom_id|>" }}
94
+ {%- else %}
95
+ {{- "<|eot_id|>" }}
96
+ {%- endif %}
97
+ {%- elif message.role == "tool" or message.role == "ipython" %}
98
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
99
+ {%- if message.content is mapping or message.content is iterable %}
100
+ {{- message.content | tojson }}
101
+ {%- else %}
102
+ {{- message.content }}
103
+ {%- endif %}
104
+ {{- "<|eot_id|>" }}
105
+ {%- endif %}
106
+ {%- endfor %}
107
+ {%- if add_generation_prompt %}
108
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
109
+ {%- endif %}
checkpoint-150/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:meta-llama/Meta-Llama-3.1-8B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
checkpoint-150/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "meta-llama/Meta-Llama-3.1-8B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0,
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
+ "gate_proj",
33
+ "k_proj",
34
+ "up_proj",
35
+ "o_proj",
36
+ "down_proj",
37
+ "v_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-150/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e14cd85efc6181de7bf67dfba627ecc3a8e85902faa37a8e88f8f7ad6ddaf4c4
3
+ size 83946192
checkpoint-150/chat_template.jinja ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- set date_string = "26 Jul 2024" %}
10
+ {%- endif %}
11
+ {%- if not tools is defined %}
12
+ {%- set tools = none %}
13
+ {%- endif %}
14
+
15
+ {#- This block extracts the system message, so we can slot it into the right place. #}
16
+ {%- if messages[0]['role'] == 'system' %}
17
+ {%- set system_message = messages[0]['content']|trim %}
18
+ {%- set messages = messages[1:] %}
19
+ {%- else %}
20
+ {%- set system_message = "" %}
21
+ {%- endif %}
22
+
23
+ {#- System message + builtin tools #}
24
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
25
+ {%- if builtin_tools is defined or tools is not none %}
26
+ {{- "Environment: ipython\n" }}
27
+ {%- endif %}
28
+ {%- if builtin_tools is defined %}
29
+ {{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
30
+ {%- endif %}
31
+ {{- "Cutting Knowledge Date: December 2023\n" }}
32
+ {{- "Today Date: " + date_string + "\n\n" }}
33
+ {%- if tools is not none and not tools_in_user_message %}
34
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
35
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
36
+ {{- "Do not use variables.\n\n" }}
37
+ {%- for t in tools %}
38
+ {{- t | tojson(indent=4) }}
39
+ {{- "\n\n" }}
40
+ {%- endfor %}
41
+ {%- endif %}
42
+ {{- system_message }}
43
+ {{- "<|eot_id|>" }}
44
+
45
+ {#- Custom tools are passed in a user message with some extra guidance #}
46
+ {%- if tools_in_user_message and not tools is none %}
47
+ {#- Extract the first user message so we can plug it in here #}
48
+ {%- if messages | length != 0 %}
49
+ {%- set first_user_message = messages[0]['content']|trim %}
50
+ {%- set messages = messages[1:] %}
51
+ {%- else %}
52
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
53
+ {%- endif %}
54
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
55
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
56
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
57
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
58
+ {{- "Do not use variables.\n\n" }}
59
+ {%- for t in tools %}
60
+ {{- t | tojson(indent=4) }}
61
+ {{- "\n\n" }}
62
+ {%- endfor %}
63
+ {{- first_user_message + "<|eot_id|>"}}
64
+ {%- endif %}
65
+
66
+ {%- for message in messages %}
67
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
68
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
69
+ {%- elif 'tool_calls' in message %}
70
+ {%- if not message.tool_calls|length == 1 %}
71
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
72
+ {%- endif %}
73
+ {%- set tool_call = message.tool_calls[0].function %}
74
+ {%- if builtin_tools is defined and tool_call.name in builtin_tools %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
76
+ {{- "<|python_tag|>" + tool_call.name + ".call(" }}
77
+ {%- for arg_name, arg_val in tool_call.arguments | items %}
78
+ {{- arg_name + '="' + arg_val + '"' }}
79
+ {%- if not loop.last %}
80
+ {{- ", " }}
81
+ {%- endif %}
82
+ {%- endfor %}
83
+ {{- ")" }}
84
+ {%- else %}
85
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
86
+ {{- '{"name": "' + tool_call.name + '", ' }}
87
+ {{- '"parameters": ' }}
88
+ {{- tool_call.arguments | tojson }}
89
+ {{- "}" }}
90
+ {%- endif %}
91
+ {%- if builtin_tools is defined %}
92
+ {#- This means we're in ipython mode #}
93
+ {{- "<|eom_id|>" }}
94
+ {%- else %}
95
+ {{- "<|eot_id|>" }}
96
+ {%- endif %}
97
+ {%- elif message.role == "tool" or message.role == "ipython" %}
98
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
99
+ {%- if message.content is mapping or message.content is iterable %}
100
+ {{- message.content | tojson }}
101
+ {%- else %}
102
+ {{- message.content }}
103
+ {%- endif %}
104
+ {{- "<|eot_id|>" }}
105
+ {%- endif %}
106
+ {%- endfor %}
107
+ {%- if add_generation_prompt %}
108
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
109
+ {%- endif %}
checkpoint-150/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2971f43ea71fcc46b772be99c7c59c284402d1ee484c1b80d229b38c50998252
3
+ size 85728997
checkpoint-150/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:718a0f3db00824213036a2c0441849791319b7d9cf189065873bb26a7020738e
3
+ size 14645
checkpoint-150/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:969e38d9df417d5c2e205dc9478ec3ed9bbd0fb36ac227be3ef304a3ef428a63
3
+ size 1465
checkpoint-150/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-150/tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|begin_of_text|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|eot_id|>",
6
+ "is_local": false,
7
+ "model_input_names": [
8
+ "input_ids",
9
+ "attention_mask"
10
+ ],
11
+ "model_max_length": 131072,
12
+ "pad_token": "<|eot_id|>",
13
+ "tokenizer_class": "TokenizersBackend"
14
+ }
checkpoint-150/trainer_state.json ADDED
@@ -0,0 +1,1567 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.8330781010719757,
6
+ "eval_steps": 50,
7
+ "global_step": 150,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.32083135563880205,
14
+ "epoch": 0.01225114854517611,
15
+ "grad_norm": 0.134765625,
16
+ "learning_rate": 0.0002,
17
+ "loss": 0.019214527681469917,
18
+ "mean_token_accuracy": 0.9918519593775272,
19
+ "num_tokens": 6092.0,
20
+ "step": 1
21
+ },
22
+ {
23
+ "entropy": 0.3576695416122675,
24
+ "epoch": 0.02450229709035222,
25
+ "grad_norm": 0.50390625,
26
+ "learning_rate": 0.00019878048780487805,
27
+ "loss": 0.03324645012617111,
28
+ "mean_token_accuracy": 0.988272774964571,
29
+ "num_tokens": 11535.0,
30
+ "step": 2
31
+ },
32
+ {
33
+ "entropy": 0.33352363388985395,
34
+ "epoch": 0.036753445635528334,
35
+ "grad_norm": 0.0272216796875,
36
+ "learning_rate": 0.0001975609756097561,
37
+ "loss": 0.0017091021873056889,
38
+ "mean_token_accuracy": 1.0,
39
+ "num_tokens": 16432.0,
40
+ "step": 3
41
+ },
42
+ {
43
+ "entropy": 0.35098350048065186,
44
+ "epoch": 0.04900459418070444,
45
+ "grad_norm": 0.06640625,
46
+ "learning_rate": 0.00019634146341463416,
47
+ "loss": 0.00414489908143878,
48
+ "mean_token_accuracy": 0.9985632188618183,
49
+ "num_tokens": 20507.0,
50
+ "step": 4
51
+ },
52
+ {
53
+ "entropy": 0.3005372080951929,
54
+ "epoch": 0.06125574272588055,
55
+ "grad_norm": 0.01416015625,
56
+ "learning_rate": 0.0001951219512195122,
57
+ "loss": 0.0008560216519981623,
58
+ "mean_token_accuracy": 1.0,
59
+ "num_tokens": 26122.0,
60
+ "step": 5
61
+ },
62
+ {
63
+ "entropy": 0.3177621979266405,
64
+ "epoch": 0.07350689127105667,
65
+ "grad_norm": 0.008544921875,
66
+ "learning_rate": 0.00019390243902439025,
67
+ "loss": 0.0005585744511336088,
68
+ "mean_token_accuracy": 1.0,
69
+ "num_tokens": 30847.0,
70
+ "step": 6
71
+ },
72
+ {
73
+ "entropy": 0.27754624653607607,
74
+ "epoch": 0.08575803981623277,
75
+ "grad_norm": 0.019775390625,
76
+ "learning_rate": 0.0001926829268292683,
77
+ "loss": 0.0012820134870707989,
78
+ "mean_token_accuracy": 0.9998413696885109,
79
+ "num_tokens": 36541.0,
80
+ "step": 7
81
+ },
82
+ {
83
+ "entropy": 0.30307829193770885,
84
+ "epoch": 0.09800918836140889,
85
+ "grad_norm": 0.004364013671875,
86
+ "learning_rate": 0.00019146341463414633,
87
+ "loss": 0.0003136860905215144,
88
+ "mean_token_accuracy": 1.0,
89
+ "num_tokens": 41001.0,
90
+ "step": 8
91
+ },
92
+ {
93
+ "entropy": 0.31226138956844807,
94
+ "epoch": 0.11026033690658499,
95
+ "grad_norm": 0.11767578125,
96
+ "learning_rate": 0.0001902439024390244,
97
+ "loss": 0.006275261752307415,
98
+ "mean_token_accuracy": 0.9993216060101986,
99
+ "num_tokens": 45467.0,
100
+ "step": 9
101
+ },
102
+ {
103
+ "entropy": 0.2779384208843112,
104
+ "epoch": 0.1225114854517611,
105
+ "grad_norm": 0.011474609375,
106
+ "learning_rate": 0.00018902439024390244,
107
+ "loss": 0.0006869531353004277,
108
+ "mean_token_accuracy": 1.0,
109
+ "num_tokens": 50478.0,
110
+ "step": 10
111
+ },
112
+ {
113
+ "entropy": 0.27587867714464664,
114
+ "epoch": 0.13476263399693722,
115
+ "grad_norm": 0.00188446044921875,
116
+ "learning_rate": 0.0001878048780487805,
117
+ "loss": 0.0001916390028782189,
118
+ "mean_token_accuracy": 1.0,
119
+ "num_tokens": 56181.0,
120
+ "step": 11
121
+ },
122
+ {
123
+ "entropy": 0.2948900917544961,
124
+ "epoch": 0.14701378254211334,
125
+ "grad_norm": 0.07177734375,
126
+ "learning_rate": 0.00018658536585365856,
127
+ "loss": 0.001886777114123106,
128
+ "mean_token_accuracy": 0.9998650103807449,
129
+ "num_tokens": 62946.0,
130
+ "step": 12
131
+ },
132
+ {
133
+ "entropy": 0.29555963445454836,
134
+ "epoch": 0.15926493108728942,
135
+ "grad_norm": 0.005523681640625,
136
+ "learning_rate": 0.0001853658536585366,
137
+ "loss": 0.00017441912495996803,
138
+ "mean_token_accuracy": 1.0,
139
+ "num_tokens": 68436.0,
140
+ "step": 13
141
+ },
142
+ {
143
+ "entropy": 0.287986209616065,
144
+ "epoch": 0.17151607963246554,
145
+ "grad_norm": 0.02001953125,
146
+ "learning_rate": 0.00018414634146341464,
147
+ "loss": 0.00017802949878387153,
148
+ "mean_token_accuracy": 1.0,
149
+ "num_tokens": 73603.0,
150
+ "step": 14
151
+ },
152
+ {
153
+ "entropy": 0.3127295421436429,
154
+ "epoch": 0.18376722817764166,
155
+ "grad_norm": 0.06787109375,
156
+ "learning_rate": 0.0001829268292682927,
157
+ "loss": 0.0010371531825512648,
158
+ "mean_token_accuracy": 0.9995941556990147,
159
+ "num_tokens": 77845.0,
160
+ "step": 15
161
+ },
162
+ {
163
+ "entropy": 0.2922206539660692,
164
+ "epoch": 0.19601837672281777,
165
+ "grad_norm": 0.00118255615234375,
166
+ "learning_rate": 0.00018170731707317075,
167
+ "loss": 0.00011905122664757073,
168
+ "mean_token_accuracy": 1.0,
169
+ "num_tokens": 82744.0,
170
+ "step": 16
171
+ },
172
+ {
173
+ "entropy": 0.2928574001416564,
174
+ "epoch": 0.2082695252679939,
175
+ "grad_norm": 0.0003719329833984375,
176
+ "learning_rate": 0.0001804878048780488,
177
+ "loss": 7.616190850967541e-05,
178
+ "mean_token_accuracy": 1.0,
179
+ "num_tokens": 87453.0,
180
+ "step": 17
181
+ },
182
+ {
183
+ "entropy": 0.2979039028286934,
184
+ "epoch": 0.22052067381316998,
185
+ "grad_norm": 0.0026702880859375,
186
+ "learning_rate": 0.00017926829268292684,
187
+ "loss": 0.00012367898307275027,
188
+ "mean_token_accuracy": 1.0,
189
+ "num_tokens": 92321.0,
190
+ "step": 18
191
+ },
192
+ {
193
+ "entropy": 0.31858293898403645,
194
+ "epoch": 0.2327718223583461,
195
+ "grad_norm": 0.10498046875,
196
+ "learning_rate": 0.00017804878048780488,
197
+ "loss": 0.0006579139153473079,
198
+ "mean_token_accuracy": 0.9997499994933605,
199
+ "num_tokens": 97146.0,
200
+ "step": 19
201
+ },
202
+ {
203
+ "entropy": 0.30853591673076153,
204
+ "epoch": 0.2450229709035222,
205
+ "grad_norm": 0.004364013671875,
206
+ "learning_rate": 0.00017682926829268295,
207
+ "loss": 0.00014281428593676537,
208
+ "mean_token_accuracy": 1.0,
209
+ "num_tokens": 101943.0,
210
+ "step": 20
211
+ },
212
+ {
213
+ "entropy": 0.34037051256746054,
214
+ "epoch": 0.2572741194486983,
215
+ "grad_norm": 0.056884765625,
216
+ "learning_rate": 0.000175609756097561,
217
+ "loss": 0.011726096272468567,
218
+ "mean_token_accuracy": 0.9993422217667103,
219
+ "num_tokens": 106772.0,
220
+ "step": 21
221
+ },
222
+ {
223
+ "entropy": 0.29644382931292057,
224
+ "epoch": 0.26952526799387444,
225
+ "grad_norm": 0.0023193359375,
226
+ "learning_rate": 0.00017439024390243903,
227
+ "loss": 0.00010672100324882194,
228
+ "mean_token_accuracy": 1.0,
229
+ "num_tokens": 112558.0,
230
+ "step": 22
231
+ },
232
+ {
233
+ "entropy": 0.3180191367864609,
234
+ "epoch": 0.28177641653905056,
235
+ "grad_norm": 0.000675201416015625,
236
+ "learning_rate": 0.00017317073170731708,
237
+ "loss": 9.894849790725857e-05,
238
+ "mean_token_accuracy": 1.0,
239
+ "num_tokens": 117489.0,
240
+ "step": 23
241
+ },
242
+ {
243
+ "entropy": 0.32946281880140305,
244
+ "epoch": 0.29402756508422667,
245
+ "grad_norm": 0.0242919921875,
246
+ "learning_rate": 0.00017195121951219512,
247
+ "loss": 0.0029232932720333338,
248
+ "mean_token_accuracy": 0.9996279776096344,
249
+ "num_tokens": 123010.0,
250
+ "step": 24
251
+ },
252
+ {
253
+ "entropy": 0.3180750487372279,
254
+ "epoch": 0.30627871362940273,
255
+ "grad_norm": 0.038330078125,
256
+ "learning_rate": 0.0001707317073170732,
257
+ "loss": 0.0015810562763363123,
258
+ "mean_token_accuracy": 0.9990344606339931,
259
+ "num_tokens": 127716.0,
260
+ "step": 25
261
+ },
262
+ {
263
+ "entropy": 0.31262985058128834,
264
+ "epoch": 0.31852986217457885,
265
+ "grad_norm": 0.0027313232421875,
266
+ "learning_rate": 0.00016951219512195123,
267
+ "loss": 0.00019670175970532,
268
+ "mean_token_accuracy": 1.0,
269
+ "num_tokens": 132372.0,
270
+ "step": 26
271
+ },
272
+ {
273
+ "entropy": 0.2831157138571143,
274
+ "epoch": 0.33078101071975496,
275
+ "grad_norm": 0.1484375,
276
+ "learning_rate": 0.00016829268292682927,
277
+ "loss": 0.003187144873663783,
278
+ "mean_token_accuracy": 0.9994877055287361,
279
+ "num_tokens": 137028.0,
280
+ "step": 27
281
+ },
282
+ {
283
+ "entropy": 0.3106652954593301,
284
+ "epoch": 0.3430321592649311,
285
+ "grad_norm": 0.05810546875,
286
+ "learning_rate": 0.00016707317073170731,
287
+ "loss": 0.004998125601559877,
288
+ "mean_token_accuracy": 0.9980670101940632,
289
+ "num_tokens": 142088.0,
290
+ "step": 28
291
+ },
292
+ {
293
+ "entropy": 0.31454288959503174,
294
+ "epoch": 0.3552833078101072,
295
+ "grad_norm": 0.0306396484375,
296
+ "learning_rate": 0.00016585365853658536,
297
+ "loss": 0.000461318384623155,
298
+ "mean_token_accuracy": 1.0,
299
+ "num_tokens": 147481.0,
300
+ "step": 29
301
+ },
302
+ {
303
+ "entropy": 0.33650430012494326,
304
+ "epoch": 0.3675344563552833,
305
+ "grad_norm": 0.0238037109375,
306
+ "learning_rate": 0.00016463414634146343,
307
+ "loss": 0.0005614800029434264,
308
+ "mean_token_accuracy": 1.0,
309
+ "num_tokens": 152973.0,
310
+ "step": 30
311
+ },
312
+ {
313
+ "entropy": 0.33513325452804565,
314
+ "epoch": 0.37978560490045943,
315
+ "grad_norm": 0.00604248046875,
316
+ "learning_rate": 0.00016341463414634147,
317
+ "loss": 0.00020872258755844086,
318
+ "mean_token_accuracy": 1.0,
319
+ "num_tokens": 156786.0,
320
+ "step": 31
321
+ },
322
+ {
323
+ "entropy": 0.34442581795156,
324
+ "epoch": 0.39203675344563554,
325
+ "grad_norm": 0.0159912109375,
326
+ "learning_rate": 0.00016219512195121954,
327
+ "loss": 0.00043797443504445255,
328
+ "mean_token_accuracy": 1.0,
329
+ "num_tokens": 162859.0,
330
+ "step": 32
331
+ },
332
+ {
333
+ "entropy": 0.34709672816097736,
334
+ "epoch": 0.40428790199081166,
335
+ "grad_norm": 0.04052734375,
336
+ "learning_rate": 0.00016097560975609758,
337
+ "loss": 0.0008612321689724922,
338
+ "mean_token_accuracy": 1.0,
339
+ "num_tokens": 167969.0,
340
+ "step": 33
341
+ },
342
+ {
343
+ "entropy": 0.31636961828917265,
344
+ "epoch": 0.4165390505359878,
345
+ "grad_norm": 0.048583984375,
346
+ "learning_rate": 0.00015975609756097562,
347
+ "loss": 0.001623529358766973,
348
+ "mean_token_accuracy": 1.0,
349
+ "num_tokens": 172518.0,
350
+ "step": 34
351
+ },
352
+ {
353
+ "entropy": 0.341240718960762,
354
+ "epoch": 0.42879019908116384,
355
+ "grad_norm": 0.0089111328125,
356
+ "learning_rate": 0.00015853658536585366,
357
+ "loss": 0.0004598334198817611,
358
+ "mean_token_accuracy": 1.0,
359
+ "num_tokens": 177085.0,
360
+ "step": 35
361
+ },
362
+ {
363
+ "entropy": 0.3331515807658434,
364
+ "epoch": 0.44104134762633995,
365
+ "grad_norm": 0.0137939453125,
366
+ "learning_rate": 0.00015731707317073173,
367
+ "loss": 0.00047711117076687515,
368
+ "mean_token_accuracy": 1.0,
369
+ "num_tokens": 181617.0,
370
+ "step": 36
371
+ },
372
+ {
373
+ "entropy": 0.2969168536365032,
374
+ "epoch": 0.45329249617151607,
375
+ "grad_norm": 0.0296630859375,
376
+ "learning_rate": 0.00015609756097560978,
377
+ "loss": 0.0018673602025955915,
378
+ "mean_token_accuracy": 0.9982142858207226,
379
+ "num_tokens": 186836.0,
380
+ "step": 37
381
+ },
382
+ {
383
+ "entropy": 0.3208611598238349,
384
+ "epoch": 0.4655436447166922,
385
+ "grad_norm": 0.0034027099609375,
386
+ "learning_rate": 0.00015487804878048782,
387
+ "loss": 0.00018661899957805872,
388
+ "mean_token_accuracy": 1.0,
389
+ "num_tokens": 191224.0,
390
+ "step": 38
391
+ },
392
+ {
393
+ "entropy": 0.296407300978899,
394
+ "epoch": 0.4777947932618683,
395
+ "grad_norm": 0.003570556640625,
396
+ "learning_rate": 0.00015365853658536586,
397
+ "loss": 0.0001632017083466053,
398
+ "mean_token_accuracy": 1.0,
399
+ "num_tokens": 195926.0,
400
+ "step": 39
401
+ },
402
+ {
403
+ "entropy": 0.32142599392682314,
404
+ "epoch": 0.4900459418070444,
405
+ "grad_norm": 0.0277099609375,
406
+ "learning_rate": 0.0001524390243902439,
407
+ "loss": 0.0039696223102509975,
408
+ "mean_token_accuracy": 0.9992866478860378,
409
+ "num_tokens": 200772.0,
410
+ "step": 40
411
+ },
412
+ {
413
+ "entropy": 0.3037592498585582,
414
+ "epoch": 0.5022970903522205,
415
+ "grad_norm": 0.0026092529296875,
416
+ "learning_rate": 0.00015121951219512197,
417
+ "loss": 0.00013867147208657116,
418
+ "mean_token_accuracy": 1.0,
419
+ "num_tokens": 204499.0,
420
+ "step": 41
421
+ },
422
+ {
423
+ "entropy": 0.31665132474154234,
424
+ "epoch": 0.5145482388973966,
425
+ "grad_norm": 0.004730224609375,
426
+ "learning_rate": 0.00015000000000000001,
427
+ "loss": 0.00025882094632834196,
428
+ "mean_token_accuracy": 1.0,
429
+ "num_tokens": 208814.0,
430
+ "step": 42
431
+ },
432
+ {
433
+ "entropy": 0.33023010194301605,
434
+ "epoch": 0.5267993874425727,
435
+ "grad_norm": 0.001922607421875,
436
+ "learning_rate": 0.00014878048780487806,
437
+ "loss": 0.00019074659212492406,
438
+ "mean_token_accuracy": 1.0,
439
+ "num_tokens": 213907.0,
440
+ "step": 43
441
+ },
442
+ {
443
+ "entropy": 0.334543508477509,
444
+ "epoch": 0.5390505359877489,
445
+ "grad_norm": 0.0018157958984375,
446
+ "learning_rate": 0.0001475609756097561,
447
+ "loss": 0.00011566472676349804,
448
+ "mean_token_accuracy": 1.0,
449
+ "num_tokens": 218988.0,
450
+ "step": 44
451
+ },
452
+ {
453
+ "entropy": 0.3078083451837301,
454
+ "epoch": 0.5513016845329249,
455
+ "grad_norm": 0.03515625,
456
+ "learning_rate": 0.00014634146341463414,
457
+ "loss": 0.0022110757417976856,
458
+ "mean_token_accuracy": 0.9987903237342834,
459
+ "num_tokens": 223595.0,
460
+ "step": 45
461
+ },
462
+ {
463
+ "entropy": 0.32667472772300243,
464
+ "epoch": 0.5635528330781011,
465
+ "grad_norm": 0.034423828125,
466
+ "learning_rate": 0.0001451219512195122,
467
+ "loss": 0.0010719874408096075,
468
+ "mean_token_accuracy": 0.9991953931748867,
469
+ "num_tokens": 228244.0,
470
+ "step": 46
471
+ },
472
+ {
473
+ "entropy": 0.3273861287161708,
474
+ "epoch": 0.5758039816232772,
475
+ "grad_norm": 0.00057220458984375,
476
+ "learning_rate": 0.00014390243902439025,
477
+ "loss": 6.594268779736012e-05,
478
+ "mean_token_accuracy": 1.0,
479
+ "num_tokens": 232606.0,
480
+ "step": 47
481
+ },
482
+ {
483
+ "entropy": 0.31728990003466606,
484
+ "epoch": 0.5880551301684533,
485
+ "grad_norm": 0.0003185272216796875,
486
+ "learning_rate": 0.0001426829268292683,
487
+ "loss": 8.574798266636208e-05,
488
+ "mean_token_accuracy": 1.0,
489
+ "num_tokens": 236563.0,
490
+ "step": 48
491
+ },
492
+ {
493
+ "entropy": 0.34826087579131126,
494
+ "epoch": 0.6003062787136294,
495
+ "grad_norm": 0.00390625,
496
+ "learning_rate": 0.00014146341463414634,
497
+ "loss": 0.00015243196685332805,
498
+ "mean_token_accuracy": 1.0,
499
+ "num_tokens": 241214.0,
500
+ "step": 49
501
+ },
502
+ {
503
+ "entropy": 0.3367287954315543,
504
+ "epoch": 0.6125574272588055,
505
+ "grad_norm": 0.003265380859375,
506
+ "learning_rate": 0.00014024390243902438,
507
+ "loss": 0.0001341242023045197,
508
+ "mean_token_accuracy": 1.0,
509
+ "num_tokens": 245200.0,
510
+ "step": 50
511
+ },
512
+ {
513
+ "epoch": 0.6125574272588055,
514
+ "eval_entropy": 0.3212364659361217,
515
+ "eval_loss": 0.0014040147652849555,
516
+ "eval_mean_token_accuracy": 0.9998166846192401,
517
+ "eval_num_tokens": 245200.0,
518
+ "eval_runtime": 51.1353,
519
+ "eval_samples_per_second": 1.349,
520
+ "eval_steps_per_second": 1.349,
521
+ "step": 50
522
+ },
523
+ {
524
+ "entropy": 0.3274610061198473,
525
+ "epoch": 0.6248085758039816,
526
+ "grad_norm": 0.000518798828125,
527
+ "learning_rate": 0.00013902439024390245,
528
+ "loss": 6.213193410076201e-05,
529
+ "mean_token_accuracy": 1.0,
530
+ "num_tokens": 249761.0,
531
+ "step": 51
532
+ },
533
+ {
534
+ "entropy": 0.3302043145522475,
535
+ "epoch": 0.6370597243491577,
536
+ "grad_norm": 0.00067901611328125,
537
+ "learning_rate": 0.0001378048780487805,
538
+ "loss": 7.391967665171251e-05,
539
+ "mean_token_accuracy": 1.0,
540
+ "num_tokens": 254787.0,
541
+ "step": 52
542
+ },
543
+ {
544
+ "entropy": 0.3345805983990431,
545
+ "epoch": 0.6493108728943339,
546
+ "grad_norm": 0.064453125,
547
+ "learning_rate": 0.00013658536585365856,
548
+ "loss": 0.008045142516493797,
549
+ "mean_token_accuracy": 0.9975476562976837,
550
+ "num_tokens": 260287.0,
551
+ "step": 53
552
+ },
553
+ {
554
+ "entropy": 0.3093695640563965,
555
+ "epoch": 0.6615620214395099,
556
+ "grad_norm": 0.036865234375,
557
+ "learning_rate": 0.0001353658536585366,
558
+ "loss": 0.0016300748102366924,
559
+ "mean_token_accuracy": 0.9998249299824238,
560
+ "num_tokens": 264810.0,
561
+ "step": 54
562
+ },
563
+ {
564
+ "entropy": 0.33090174850076437,
565
+ "epoch": 0.6738131699846861,
566
+ "grad_norm": 0.04052734375,
567
+ "learning_rate": 0.00013414634146341464,
568
+ "loss": 0.0037348291371017694,
569
+ "mean_token_accuracy": 0.9990433678030968,
570
+ "num_tokens": 270386.0,
571
+ "step": 55
572
+ },
573
+ {
574
+ "entropy": 0.3455248447135091,
575
+ "epoch": 0.6860643185298622,
576
+ "grad_norm": 0.0301513671875,
577
+ "learning_rate": 0.0001329268292682927,
578
+ "loss": 0.0006253286846913397,
579
+ "mean_token_accuracy": 1.0,
580
+ "num_tokens": 274391.0,
581
+ "step": 56
582
+ },
583
+ {
584
+ "entropy": 0.3408086858689785,
585
+ "epoch": 0.6983154670750383,
586
+ "grad_norm": 0.0033111572265625,
587
+ "learning_rate": 0.00013170731707317076,
588
+ "loss": 0.00020847572886850685,
589
+ "mean_token_accuracy": 1.0,
590
+ "num_tokens": 279716.0,
591
+ "step": 57
592
+ },
593
+ {
594
+ "entropy": 0.29423840064555407,
595
+ "epoch": 0.7105666156202144,
596
+ "grad_norm": 0.125,
597
+ "learning_rate": 0.0001304878048780488,
598
+ "loss": 0.005600863602012396,
599
+ "mean_token_accuracy": 0.998680267482996,
600
+ "num_tokens": 285404.0,
601
+ "step": 58
602
+ },
603
+ {
604
+ "entropy": 0.33689095824956894,
605
+ "epoch": 0.7228177641653905,
606
+ "grad_norm": 0.057861328125,
607
+ "learning_rate": 0.00012926829268292684,
608
+ "loss": 0.009100214578211308,
609
+ "mean_token_accuracy": 0.9967310577630997,
610
+ "num_tokens": 290021.0,
611
+ "step": 59
612
+ },
613
+ {
614
+ "entropy": 0.3336018780246377,
615
+ "epoch": 0.7350689127105666,
616
+ "grad_norm": 0.005889892578125,
617
+ "learning_rate": 0.00012804878048780488,
618
+ "loss": 0.00015729578444734216,
619
+ "mean_token_accuracy": 1.0,
620
+ "num_tokens": 294890.0,
621
+ "step": 60
622
+ },
623
+ {
624
+ "entropy": 0.30060291569679976,
625
+ "epoch": 0.7473200612557427,
626
+ "grad_norm": 0.0172119140625,
627
+ "learning_rate": 0.00012682926829268293,
628
+ "loss": 0.00039864826248958707,
629
+ "mean_token_accuracy": 0.9993686862289906,
630
+ "num_tokens": 300384.0,
631
+ "step": 61
632
+ },
633
+ {
634
+ "entropy": 0.36021818965673447,
635
+ "epoch": 0.7595712098009189,
636
+ "grad_norm": 0.0025634765625,
637
+ "learning_rate": 0.000125609756097561,
638
+ "loss": 0.00016568033606745303,
639
+ "mean_token_accuracy": 1.0,
640
+ "num_tokens": 305805.0,
641
+ "step": 62
642
+ },
643
+ {
644
+ "entropy": 0.32536453381180763,
645
+ "epoch": 0.7718223583460949,
646
+ "grad_norm": 0.001800537109375,
647
+ "learning_rate": 0.00012439024390243904,
648
+ "loss": 0.00014585268218070269,
649
+ "mean_token_accuracy": 1.0,
650
+ "num_tokens": 310233.0,
651
+ "step": 63
652
+ },
653
+ {
654
+ "entropy": 0.31967335008084774,
655
+ "epoch": 0.7840735068912711,
656
+ "grad_norm": 0.0010223388671875,
657
+ "learning_rate": 0.00012317073170731708,
658
+ "loss": 0.00010060967179015279,
659
+ "mean_token_accuracy": 1.0,
660
+ "num_tokens": 314234.0,
661
+ "step": 64
662
+ },
663
+ {
664
+ "entropy": 0.34358128905296326,
665
+ "epoch": 0.7963246554364471,
666
+ "grad_norm": 0.000743865966796875,
667
+ "learning_rate": 0.00012195121951219512,
668
+ "loss": 9.478208812652156e-05,
669
+ "mean_token_accuracy": 1.0,
670
+ "num_tokens": 319186.0,
671
+ "step": 65
672
+ },
673
+ {
674
+ "entropy": 0.33988895174115896,
675
+ "epoch": 0.8085758039816233,
676
+ "grad_norm": 0.0419921875,
677
+ "learning_rate": 0.00012073170731707318,
678
+ "loss": 0.0011607923079282045,
679
+ "mean_token_accuracy": 0.9995629377663136,
680
+ "num_tokens": 324710.0,
681
+ "step": 66
682
+ },
683
+ {
684
+ "entropy": 0.3078791871666908,
685
+ "epoch": 0.8208269525267994,
686
+ "grad_norm": 0.05859375,
687
+ "learning_rate": 0.00011951219512195122,
688
+ "loss": 0.016102174296975136,
689
+ "mean_token_accuracy": 0.9935315921902657,
690
+ "num_tokens": 329942.0,
691
+ "step": 67
692
+ },
693
+ {
694
+ "entropy": 0.3587793167680502,
695
+ "epoch": 0.8330781010719756,
696
+ "grad_norm": 0.002716064453125,
697
+ "learning_rate": 0.00011829268292682926,
698
+ "loss": 0.0001911829021992162,
699
+ "mean_token_accuracy": 1.0,
700
+ "num_tokens": 334487.0,
701
+ "step": 68
702
+ },
703
+ {
704
+ "entropy": 0.360817888751626,
705
+ "epoch": 0.8453292496171516,
706
+ "grad_norm": 0.003753662109375,
707
+ "learning_rate": 0.00011707317073170732,
708
+ "loss": 0.00026575953233987093,
709
+ "mean_token_accuracy": 1.0,
710
+ "num_tokens": 338184.0,
711
+ "step": 69
712
+ },
713
+ {
714
+ "entropy": 0.3788213599473238,
715
+ "epoch": 0.8575803981623277,
716
+ "grad_norm": 0.07421875,
717
+ "learning_rate": 0.00011585365853658536,
718
+ "loss": 0.007251895032823086,
719
+ "mean_token_accuracy": 0.997805867344141,
720
+ "num_tokens": 342594.0,
721
+ "step": 70
722
+ },
723
+ {
724
+ "entropy": 0.37989665009081364,
725
+ "epoch": 0.8698315467075038,
726
+ "grad_norm": 0.0361328125,
727
+ "learning_rate": 0.00011463414634146342,
728
+ "loss": 0.001519644632935524,
729
+ "mean_token_accuracy": 0.9997807033360004,
730
+ "num_tokens": 347798.0,
731
+ "step": 71
732
+ },
733
+ {
734
+ "entropy": 0.35538383200764656,
735
+ "epoch": 0.8820826952526799,
736
+ "grad_norm": 0.0038604736328125,
737
+ "learning_rate": 0.00011341463414634146,
738
+ "loss": 0.00030194621649570763,
739
+ "mean_token_accuracy": 1.0,
740
+ "num_tokens": 352122.0,
741
+ "step": 72
742
+ },
743
+ {
744
+ "entropy": 0.36578258499503136,
745
+ "epoch": 0.8943338437978561,
746
+ "grad_norm": 0.02001953125,
747
+ "learning_rate": 0.00011219512195121953,
748
+ "loss": 0.0018432819051668048,
749
+ "mean_token_accuracy": 0.9997568093240261,
750
+ "num_tokens": 357944.0,
751
+ "step": 73
752
+ },
753
+ {
754
+ "entropy": 0.3363148244097829,
755
+ "epoch": 0.9065849923430321,
756
+ "grad_norm": 0.01214599609375,
757
+ "learning_rate": 0.00011097560975609757,
758
+ "loss": 0.0004945008549839258,
759
+ "mean_token_accuracy": 1.0,
760
+ "num_tokens": 363815.0,
761
+ "step": 74
762
+ },
763
+ {
764
+ "entropy": 0.3567014401778579,
765
+ "epoch": 0.9188361408882083,
766
+ "grad_norm": 0.00160980224609375,
767
+ "learning_rate": 0.00010975609756097563,
768
+ "loss": 0.0002087215252686292,
769
+ "mean_token_accuracy": 1.0,
770
+ "num_tokens": 368871.0,
771
+ "step": 75
772
+ },
773
+ {
774
+ "entropy": 0.3798025632277131,
775
+ "epoch": 0.9310872894333844,
776
+ "grad_norm": 0.0242919921875,
777
+ "learning_rate": 0.00010853658536585367,
778
+ "loss": 0.0011810146970674396,
779
+ "mean_token_accuracy": 0.999143835157156,
780
+ "num_tokens": 373671.0,
781
+ "step": 76
782
+ },
783
+ {
784
+ "entropy": 0.3385667558759451,
785
+ "epoch": 0.9433384379785605,
786
+ "grad_norm": 0.00164031982421875,
787
+ "learning_rate": 0.00010731707317073172,
788
+ "loss": 0.00021391667542047799,
789
+ "mean_token_accuracy": 1.0,
790
+ "num_tokens": 379038.0,
791
+ "step": 77
792
+ },
793
+ {
794
+ "entropy": 0.37137152813374996,
795
+ "epoch": 0.9555895865237366,
796
+ "grad_norm": 0.0194091796875,
797
+ "learning_rate": 0.00010609756097560977,
798
+ "loss": 0.0009015509858727455,
799
+ "mean_token_accuracy": 0.9992977529764175,
800
+ "num_tokens": 384253.0,
801
+ "step": 78
802
+ },
803
+ {
804
+ "entropy": 0.35634181648492813,
805
+ "epoch": 0.9678407350689127,
806
+ "grad_norm": 0.002349853515625,
807
+ "learning_rate": 0.00010487804878048781,
808
+ "loss": 0.0003007323248311877,
809
+ "mean_token_accuracy": 1.0,
810
+ "num_tokens": 388348.0,
811
+ "step": 79
812
+ },
813
+ {
814
+ "entropy": 0.3363165808841586,
815
+ "epoch": 0.9800918836140888,
816
+ "grad_norm": 0.013916015625,
817
+ "learning_rate": 0.00010365853658536586,
818
+ "loss": 0.0015124119818210602,
819
+ "mean_token_accuracy": 0.999507874250412,
820
+ "num_tokens": 394214.0,
821
+ "step": 80
822
+ },
823
+ {
824
+ "entropy": 0.34769035689532757,
825
+ "epoch": 0.9923430321592649,
826
+ "grad_norm": 0.0264892578125,
827
+ "learning_rate": 0.0001024390243902439,
828
+ "loss": 0.0008837911300361156,
829
+ "mean_token_accuracy": 0.9992187507450581,
830
+ "num_tokens": 399114.0,
831
+ "step": 81
832
+ },
833
+ {
834
+ "entropy": 0.34723484665155413,
835
+ "epoch": 1.0,
836
+ "grad_norm": 0.002288818359375,
837
+ "learning_rate": 0.00010121951219512196,
838
+ "loss": 0.0002318796032341197,
839
+ "mean_token_accuracy": 1.0,
840
+ "num_tokens": 402130.0,
841
+ "step": 82
842
+ },
843
+ {
844
+ "entropy": 0.3677198924124241,
845
+ "epoch": 1.0122511485451762,
846
+ "grad_norm": 0.03173828125,
847
+ "learning_rate": 0.0001,
848
+ "loss": 0.0028767124749720097,
849
+ "mean_token_accuracy": 0.9997509978711605,
850
+ "num_tokens": 406761.0,
851
+ "step": 83
852
+ },
853
+ {
854
+ "entropy": 0.3296260507777333,
855
+ "epoch": 1.0245022970903521,
856
+ "grad_norm": 0.0016326904296875,
857
+ "learning_rate": 9.878048780487805e-05,
858
+ "loss": 0.00020801745995413512,
859
+ "mean_token_accuracy": 1.0,
860
+ "num_tokens": 411367.0,
861
+ "step": 84
862
+ },
863
+ {
864
+ "entropy": 0.36815651040524244,
865
+ "epoch": 1.0367534456355283,
866
+ "grad_norm": 0.00299072265625,
867
+ "learning_rate": 9.75609756097561e-05,
868
+ "loss": 0.00034169916762039065,
869
+ "mean_token_accuracy": 1.0,
870
+ "num_tokens": 417768.0,
871
+ "step": 85
872
+ },
873
+ {
874
+ "entropy": 0.33015719801187515,
875
+ "epoch": 1.0490045941807045,
876
+ "grad_norm": 0.0019683837890625,
877
+ "learning_rate": 9.634146341463415e-05,
878
+ "loss": 0.0002285851223859936,
879
+ "mean_token_accuracy": 1.0,
880
+ "num_tokens": 421738.0,
881
+ "step": 86
882
+ },
883
+ {
884
+ "entropy": 0.33297139778733253,
885
+ "epoch": 1.0612557427258806,
886
+ "grad_norm": 0.0003604888916015625,
887
+ "learning_rate": 9.51219512195122e-05,
888
+ "loss": 0.00012145948858233169,
889
+ "mean_token_accuracy": 1.0,
890
+ "num_tokens": 426854.0,
891
+ "step": 87
892
+ },
893
+ {
894
+ "entropy": 0.4070947393774986,
895
+ "epoch": 1.0735068912710566,
896
+ "grad_norm": 0.017333984375,
897
+ "learning_rate": 9.390243902439024e-05,
898
+ "loss": 0.0016109611606225371,
899
+ "mean_token_accuracy": 0.9998486675322056,
900
+ "num_tokens": 431083.0,
901
+ "step": 88
902
+ },
903
+ {
904
+ "entropy": 0.3781026881188154,
905
+ "epoch": 1.0857580398162328,
906
+ "grad_norm": 0.038818359375,
907
+ "learning_rate": 9.26829268292683e-05,
908
+ "loss": 0.003159651067107916,
909
+ "mean_token_accuracy": 0.9989801794290543,
910
+ "num_tokens": 435694.0,
911
+ "step": 89
912
+ },
913
+ {
914
+ "entropy": 0.3439221568405628,
915
+ "epoch": 1.098009188361409,
916
+ "grad_norm": 0.000949859619140625,
917
+ "learning_rate": 9.146341463414635e-05,
918
+ "loss": 0.00018103225738741457,
919
+ "mean_token_accuracy": 1.0,
920
+ "num_tokens": 440578.0,
921
+ "step": 90
922
+ },
923
+ {
924
+ "entropy": 0.38779534585773945,
925
+ "epoch": 1.110260336906585,
926
+ "grad_norm": 0.0142822265625,
927
+ "learning_rate": 9.02439024390244e-05,
928
+ "loss": 0.002015941310673952,
929
+ "mean_token_accuracy": 0.9984939768910408,
930
+ "num_tokens": 445238.0,
931
+ "step": 91
932
+ },
933
+ {
934
+ "entropy": 0.3697750475257635,
935
+ "epoch": 1.122511485451761,
936
+ "grad_norm": 0.08642578125,
937
+ "learning_rate": 8.902439024390244e-05,
938
+ "loss": 0.006127167027443647,
939
+ "mean_token_accuracy": 0.9989957921206951,
940
+ "num_tokens": 449993.0,
941
+ "step": 92
942
+ },
943
+ {
944
+ "entropy": 0.34917816519737244,
945
+ "epoch": 1.1347626339969372,
946
+ "grad_norm": 0.0037384033203125,
947
+ "learning_rate": 8.78048780487805e-05,
948
+ "loss": 0.00024314325128216296,
949
+ "mean_token_accuracy": 1.0,
950
+ "num_tokens": 454976.0,
951
+ "step": 93
952
+ },
953
+ {
954
+ "entropy": 0.3524725306779146,
955
+ "epoch": 1.1470137825421134,
956
+ "grad_norm": 0.00104522705078125,
957
+ "learning_rate": 8.658536585365854e-05,
958
+ "loss": 0.00014462518447544426,
959
+ "mean_token_accuracy": 1.0,
960
+ "num_tokens": 459671.0,
961
+ "step": 94
962
+ },
963
+ {
964
+ "entropy": 0.3524913527071476,
965
+ "epoch": 1.1592649310872893,
966
+ "grad_norm": 0.000782012939453125,
967
+ "learning_rate": 8.53658536585366e-05,
968
+ "loss": 0.0001363266637781635,
969
+ "mean_token_accuracy": 1.0,
970
+ "num_tokens": 464310.0,
971
+ "step": 95
972
+ },
973
+ {
974
+ "entropy": 0.33474782202392817,
975
+ "epoch": 1.1715160796324655,
976
+ "grad_norm": 0.05615234375,
977
+ "learning_rate": 8.414634146341464e-05,
978
+ "loss": 0.006995758973062038,
979
+ "mean_token_accuracy": 0.997385773807764,
980
+ "num_tokens": 468855.0,
981
+ "step": 96
982
+ },
983
+ {
984
+ "entropy": 0.34024662896990776,
985
+ "epoch": 1.1837672281776417,
986
+ "grad_norm": 0.000762939453125,
987
+ "learning_rate": 8.292682926829268e-05,
988
+ "loss": 0.00012206919927848503,
989
+ "mean_token_accuracy": 1.0,
990
+ "num_tokens": 473729.0,
991
+ "step": 97
992
+ },
993
+ {
994
+ "entropy": 0.35474758967757225,
995
+ "epoch": 1.1960183767228179,
996
+ "grad_norm": 0.032958984375,
997
+ "learning_rate": 8.170731707317073e-05,
998
+ "loss": 0.0028819667641073465,
999
+ "mean_token_accuracy": 0.9993131868541241,
1000
+ "num_tokens": 479034.0,
1001
+ "step": 98
1002
+ },
1003
+ {
1004
+ "entropy": 0.3854726795107126,
1005
+ "epoch": 1.2082695252679938,
1006
+ "grad_norm": 0.00046539306640625,
1007
+ "learning_rate": 8.048780487804879e-05,
1008
+ "loss": 9.724850679049268e-05,
1009
+ "mean_token_accuracy": 1.0,
1010
+ "num_tokens": 484808.0,
1011
+ "step": 99
1012
+ },
1013
+ {
1014
+ "entropy": 0.31455889251083136,
1015
+ "epoch": 1.22052067381317,
1016
+ "grad_norm": 0.00958251953125,
1017
+ "learning_rate": 7.926829268292683e-05,
1018
+ "loss": 0.0009833230869844556,
1019
+ "mean_token_accuracy": 1.0,
1020
+ "num_tokens": 489519.0,
1021
+ "step": 100
1022
+ },
1023
+ {
1024
+ "epoch": 1.22052067381317,
1025
+ "eval_entropy": 0.3496412036643512,
1026
+ "eval_loss": 0.0005010219174437225,
1027
+ "eval_mean_token_accuracy": 0.9998490343923154,
1028
+ "eval_num_tokens": 489519.0,
1029
+ "eval_runtime": 51.1698,
1030
+ "eval_samples_per_second": 1.348,
1031
+ "eval_steps_per_second": 1.348,
1032
+ "step": 100
1033
+ },
1034
+ {
1035
+ "entropy": 0.36140021588653326,
1036
+ "epoch": 1.2327718223583461,
1037
+ "grad_norm": 0.0006256103515625,
1038
+ "learning_rate": 7.804878048780489e-05,
1039
+ "loss": 0.00011641360470093787,
1040
+ "mean_token_accuracy": 1.0,
1041
+ "num_tokens": 494754.0,
1042
+ "step": 101
1043
+ },
1044
+ {
1045
+ "entropy": 0.33879768289625645,
1046
+ "epoch": 1.245022970903522,
1047
+ "grad_norm": 0.00037384033203125,
1048
+ "learning_rate": 7.682926829268293e-05,
1049
+ "loss": 0.00010185636347159743,
1050
+ "mean_token_accuracy": 1.0,
1051
+ "num_tokens": 499834.0,
1052
+ "step": 102
1053
+ },
1054
+ {
1055
+ "entropy": 0.36160764284431934,
1056
+ "epoch": 1.2572741194486983,
1057
+ "grad_norm": 0.00103759765625,
1058
+ "learning_rate": 7.560975609756099e-05,
1059
+ "loss": 0.00012021363363601267,
1060
+ "mean_token_accuracy": 1.0,
1061
+ "num_tokens": 505264.0,
1062
+ "step": 103
1063
+ },
1064
+ {
1065
+ "entropy": 0.3344170628115535,
1066
+ "epoch": 1.2695252679938744,
1067
+ "grad_norm": 0.06787109375,
1068
+ "learning_rate": 7.439024390243903e-05,
1069
+ "loss": 0.00044063289533369243,
1070
+ "mean_token_accuracy": 0.9995915032923222,
1071
+ "num_tokens": 510257.0,
1072
+ "step": 104
1073
+ },
1074
+ {
1075
+ "entropy": 0.36058457661420107,
1076
+ "epoch": 1.2817764165390506,
1077
+ "grad_norm": 0.01336669921875,
1078
+ "learning_rate": 7.317073170731707e-05,
1079
+ "loss": 0.0015127016231417656,
1080
+ "mean_token_accuracy": 0.9993556700646877,
1081
+ "num_tokens": 514490.0,
1082
+ "step": 105
1083
+ },
1084
+ {
1085
+ "entropy": 0.33314079977571964,
1086
+ "epoch": 1.2940275650842268,
1087
+ "grad_norm": 0.0011749267578125,
1088
+ "learning_rate": 7.195121951219513e-05,
1089
+ "loss": 0.00011071039625676349,
1090
+ "mean_token_accuracy": 1.0,
1091
+ "num_tokens": 519508.0,
1092
+ "step": 106
1093
+ },
1094
+ {
1095
+ "entropy": 0.3573821699246764,
1096
+ "epoch": 1.3062787136294027,
1097
+ "grad_norm": 0.0003986358642578125,
1098
+ "learning_rate": 7.073170731707317e-05,
1099
+ "loss": 0.00011713722778949887,
1100
+ "mean_token_accuracy": 1.0,
1101
+ "num_tokens": 524370.0,
1102
+ "step": 107
1103
+ },
1104
+ {
1105
+ "entropy": 0.3524222169071436,
1106
+ "epoch": 1.318529862174579,
1107
+ "grad_norm": 0.0003108978271484375,
1108
+ "learning_rate": 6.951219512195122e-05,
1109
+ "loss": 9.721294190967456e-05,
1110
+ "mean_token_accuracy": 1.0,
1111
+ "num_tokens": 528970.0,
1112
+ "step": 108
1113
+ },
1114
+ {
1115
+ "entropy": 0.3544369339942932,
1116
+ "epoch": 1.3307810107197549,
1117
+ "grad_norm": 0.005950927734375,
1118
+ "learning_rate": 6.829268292682928e-05,
1119
+ "loss": 0.0003032644744962454,
1120
+ "mean_token_accuracy": 1.0,
1121
+ "num_tokens": 533938.0,
1122
+ "step": 109
1123
+ },
1124
+ {
1125
+ "entropy": 0.3304135613143444,
1126
+ "epoch": 1.343032159264931,
1127
+ "grad_norm": 0.000965118408203125,
1128
+ "learning_rate": 6.707317073170732e-05,
1129
+ "loss": 0.00012454115494620055,
1130
+ "mean_token_accuracy": 1.0,
1131
+ "num_tokens": 539360.0,
1132
+ "step": 110
1133
+ },
1134
+ {
1135
+ "entropy": 0.3306180518120527,
1136
+ "epoch": 1.3552833078101072,
1137
+ "grad_norm": 0.0011444091796875,
1138
+ "learning_rate": 6.585365853658538e-05,
1139
+ "loss": 0.00013282139843795449,
1140
+ "mean_token_accuracy": 1.0,
1141
+ "num_tokens": 543728.0,
1142
+ "step": 111
1143
+ },
1144
+ {
1145
+ "entropy": 0.3708817586302757,
1146
+ "epoch": 1.3675344563552834,
1147
+ "grad_norm": 0.0218505859375,
1148
+ "learning_rate": 6.463414634146342e-05,
1149
+ "loss": 0.004361060913652182,
1150
+ "mean_token_accuracy": 0.9983282573521137,
1151
+ "num_tokens": 548161.0,
1152
+ "step": 112
1153
+ },
1154
+ {
1155
+ "entropy": 0.35475645773112774,
1156
+ "epoch": 1.3797856049004595,
1157
+ "grad_norm": 0.01361083984375,
1158
+ "learning_rate": 6.341463414634146e-05,
1159
+ "loss": 0.0014049941673874855,
1160
+ "mean_token_accuracy": 0.998511902987957,
1161
+ "num_tokens": 553690.0,
1162
+ "step": 113
1163
+ },
1164
+ {
1165
+ "entropy": 0.3360502114519477,
1166
+ "epoch": 1.3920367534456355,
1167
+ "grad_norm": 0.00023746490478515625,
1168
+ "learning_rate": 6.219512195121952e-05,
1169
+ "loss": 8.739449549466372e-05,
1170
+ "mean_token_accuracy": 1.0,
1171
+ "num_tokens": 558474.0,
1172
+ "step": 114
1173
+ },
1174
+ {
1175
+ "entropy": 0.35608484130352736,
1176
+ "epoch": 1.4042879019908117,
1177
+ "grad_norm": 0.0009765625,
1178
+ "learning_rate": 6.097560975609756e-05,
1179
+ "loss": 0.00013572419993579388,
1180
+ "mean_token_accuracy": 1.0,
1181
+ "num_tokens": 563962.0,
1182
+ "step": 115
1183
+ },
1184
+ {
1185
+ "entropy": 0.3591584851965308,
1186
+ "epoch": 1.4165390505359878,
1187
+ "grad_norm": 0.00103759765625,
1188
+ "learning_rate": 5.975609756097561e-05,
1189
+ "loss": 0.0001251319336006418,
1190
+ "mean_token_accuracy": 1.0,
1191
+ "num_tokens": 568300.0,
1192
+ "step": 116
1193
+ },
1194
+ {
1195
+ "entropy": 0.32333058025687933,
1196
+ "epoch": 1.4287901990811638,
1197
+ "grad_norm": 0.0002803802490234375,
1198
+ "learning_rate": 5.853658536585366e-05,
1199
+ "loss": 8.771298598730937e-05,
1200
+ "mean_token_accuracy": 1.0,
1201
+ "num_tokens": 572892.0,
1202
+ "step": 117
1203
+ },
1204
+ {
1205
+ "entropy": 0.3675775118172169,
1206
+ "epoch": 1.44104134762634,
1207
+ "grad_norm": 0.0014495849609375,
1208
+ "learning_rate": 5.731707317073171e-05,
1209
+ "loss": 0.00014175268006511033,
1210
+ "mean_token_accuracy": 1.0,
1211
+ "num_tokens": 577889.0,
1212
+ "step": 118
1213
+ },
1214
+ {
1215
+ "entropy": 0.37294205371290445,
1216
+ "epoch": 1.4532924961715161,
1217
+ "grad_norm": 0.00099945068359375,
1218
+ "learning_rate": 5.6097560975609764e-05,
1219
+ "loss": 8.949499897425994e-05,
1220
+ "mean_token_accuracy": 1.0,
1221
+ "num_tokens": 583125.0,
1222
+ "step": 119
1223
+ },
1224
+ {
1225
+ "entropy": 0.3598701385781169,
1226
+ "epoch": 1.4655436447166923,
1227
+ "grad_norm": 0.006011962890625,
1228
+ "learning_rate": 5.487804878048781e-05,
1229
+ "loss": 0.00018555490532889962,
1230
+ "mean_token_accuracy": 1.0,
1231
+ "num_tokens": 587853.0,
1232
+ "step": 120
1233
+ },
1234
+ {
1235
+ "entropy": 0.3222861588001251,
1236
+ "epoch": 1.4777947932618682,
1237
+ "grad_norm": 0.0174560546875,
1238
+ "learning_rate": 5.365853658536586e-05,
1239
+ "loss": 0.0032859183847904205,
1240
+ "mean_token_accuracy": 0.9993932023644447,
1241
+ "num_tokens": 592286.0,
1242
+ "step": 121
1243
+ },
1244
+ {
1245
+ "entropy": 0.3423085901886225,
1246
+ "epoch": 1.4900459418070444,
1247
+ "grad_norm": 0.000354766845703125,
1248
+ "learning_rate": 5.2439024390243904e-05,
1249
+ "loss": 9.40198588068597e-05,
1250
+ "mean_token_accuracy": 1.0,
1251
+ "num_tokens": 597048.0,
1252
+ "step": 122
1253
+ },
1254
+ {
1255
+ "entropy": 0.3356657065451145,
1256
+ "epoch": 1.5022970903522204,
1257
+ "grad_norm": 0.00177764892578125,
1258
+ "learning_rate": 5.121951219512195e-05,
1259
+ "loss": 0.00018200451449956745,
1260
+ "mean_token_accuracy": 1.0,
1261
+ "num_tokens": 601352.0,
1262
+ "step": 123
1263
+ },
1264
+ {
1265
+ "entropy": 0.34760472923517227,
1266
+ "epoch": 1.5145482388973965,
1267
+ "grad_norm": 0.11181640625,
1268
+ "learning_rate": 5e-05,
1269
+ "loss": 0.0016977301565930247,
1270
+ "mean_token_accuracy": 0.9993686862289906,
1271
+ "num_tokens": 606645.0,
1272
+ "step": 124
1273
+ },
1274
+ {
1275
+ "entropy": 0.34292006585747004,
1276
+ "epoch": 1.5267993874425727,
1277
+ "grad_norm": 0.00048828125,
1278
+ "learning_rate": 4.878048780487805e-05,
1279
+ "loss": 0.00011081612319685519,
1280
+ "mean_token_accuracy": 1.0,
1281
+ "num_tokens": 612407.0,
1282
+ "step": 125
1283
+ },
1284
+ {
1285
+ "entropy": 0.3405891256406903,
1286
+ "epoch": 1.5390505359877489,
1287
+ "grad_norm": 0.0098876953125,
1288
+ "learning_rate": 4.75609756097561e-05,
1289
+ "loss": 0.0002546444011386484,
1290
+ "mean_token_accuracy": 1.0,
1291
+ "num_tokens": 617229.0,
1292
+ "step": 126
1293
+ },
1294
+ {
1295
+ "entropy": 0.39804220758378506,
1296
+ "epoch": 1.551301684532925,
1297
+ "grad_norm": 0.00177001953125,
1298
+ "learning_rate": 4.634146341463415e-05,
1299
+ "loss": 0.00020191296061966568,
1300
+ "mean_token_accuracy": 1.0,
1301
+ "num_tokens": 622355.0,
1302
+ "step": 127
1303
+ },
1304
+ {
1305
+ "entropy": 0.38183566741645336,
1306
+ "epoch": 1.5635528330781012,
1307
+ "grad_norm": 0.0020294189453125,
1308
+ "learning_rate": 4.51219512195122e-05,
1309
+ "loss": 0.0002027210284722969,
1310
+ "mean_token_accuracy": 1.0,
1311
+ "num_tokens": 627269.0,
1312
+ "step": 128
1313
+ },
1314
+ {
1315
+ "entropy": 0.32283751480281353,
1316
+ "epoch": 1.5758039816232772,
1317
+ "grad_norm": 0.054443359375,
1318
+ "learning_rate": 4.390243902439025e-05,
1319
+ "loss": 0.0007472627912648022,
1320
+ "mean_token_accuracy": 0.9991987161338329,
1321
+ "num_tokens": 631454.0,
1322
+ "step": 129
1323
+ },
1324
+ {
1325
+ "entropy": 0.31161691434681416,
1326
+ "epoch": 1.5880551301684533,
1327
+ "grad_norm": 0.00174713134765625,
1328
+ "learning_rate": 4.26829268292683e-05,
1329
+ "loss": 0.0001439937186660245,
1330
+ "mean_token_accuracy": 1.0,
1331
+ "num_tokens": 636502.0,
1332
+ "step": 130
1333
+ },
1334
+ {
1335
+ "entropy": 0.3435830660164356,
1336
+ "epoch": 1.6003062787136293,
1337
+ "grad_norm": 0.0308837890625,
1338
+ "learning_rate": 4.146341463414634e-05,
1339
+ "loss": 0.004759644623845816,
1340
+ "mean_token_accuracy": 0.9986401423811913,
1341
+ "num_tokens": 641264.0,
1342
+ "step": 131
1343
+ },
1344
+ {
1345
+ "entropy": 0.35103026777505875,
1346
+ "epoch": 1.6125574272588055,
1347
+ "grad_norm": 0.014404296875,
1348
+ "learning_rate": 4.0243902439024395e-05,
1349
+ "loss": 0.002162080956622958,
1350
+ "mean_token_accuracy": 0.9997351691126823,
1351
+ "num_tokens": 646377.0,
1352
+ "step": 132
1353
+ },
1354
+ {
1355
+ "entropy": 0.2977801924571395,
1356
+ "epoch": 1.6248085758039816,
1357
+ "grad_norm": 0.0003948211669921875,
1358
+ "learning_rate": 3.9024390243902444e-05,
1359
+ "loss": 0.00010242296411888674,
1360
+ "mean_token_accuracy": 1.0,
1361
+ "num_tokens": 650767.0,
1362
+ "step": 133
1363
+ },
1364
+ {
1365
+ "entropy": 0.3230333384126425,
1366
+ "epoch": 1.6370597243491578,
1367
+ "grad_norm": 0.00138092041015625,
1368
+ "learning_rate": 3.780487804878049e-05,
1369
+ "loss": 0.00015076796989887953,
1370
+ "mean_token_accuracy": 1.0,
1371
+ "num_tokens": 655169.0,
1372
+ "step": 134
1373
+ },
1374
+ {
1375
+ "entropy": 0.341650640591979,
1376
+ "epoch": 1.649310872894334,
1377
+ "grad_norm": 0.000942230224609375,
1378
+ "learning_rate": 3.6585365853658535e-05,
1379
+ "loss": 0.00014208458014763892,
1380
+ "mean_token_accuracy": 1.0,
1381
+ "num_tokens": 660290.0,
1382
+ "step": 135
1383
+ },
1384
+ {
1385
+ "entropy": 0.3829786740243435,
1386
+ "epoch": 1.66156202143951,
1387
+ "grad_norm": 0.00069427490234375,
1388
+ "learning_rate": 3.5365853658536584e-05,
1389
+ "loss": 0.00014442864630836993,
1390
+ "mean_token_accuracy": 1.0,
1391
+ "num_tokens": 664473.0,
1392
+ "step": 136
1393
+ },
1394
+ {
1395
+ "entropy": 0.36254822462797165,
1396
+ "epoch": 1.673813169984686,
1397
+ "grad_norm": 0.000873565673828125,
1398
+ "learning_rate": 3.414634146341464e-05,
1399
+ "loss": 0.00012407865142449737,
1400
+ "mean_token_accuracy": 1.0,
1401
+ "num_tokens": 669356.0,
1402
+ "step": 137
1403
+ },
1404
+ {
1405
+ "entropy": 0.3526885788887739,
1406
+ "epoch": 1.686064318529862,
1407
+ "grad_norm": 0.01544189453125,
1408
+ "learning_rate": 3.292682926829269e-05,
1409
+ "loss": 0.0013645780272781849,
1410
+ "mean_token_accuracy": 1.0,
1411
+ "num_tokens": 674911.0,
1412
+ "step": 138
1413
+ },
1414
+ {
1415
+ "entropy": 0.3426882065832615,
1416
+ "epoch": 1.6983154670750382,
1417
+ "grad_norm": 0.00136566162109375,
1418
+ "learning_rate": 3.170731707317073e-05,
1419
+ "loss": 0.00017942595877684653,
1420
+ "mean_token_accuracy": 1.0,
1421
+ "num_tokens": 679692.0,
1422
+ "step": 139
1423
+ },
1424
+ {
1425
+ "entropy": 0.36831479519605637,
1426
+ "epoch": 1.7105666156202144,
1427
+ "grad_norm": 0.01104736328125,
1428
+ "learning_rate": 3.048780487804878e-05,
1429
+ "loss": 0.00024098601716104895,
1430
+ "mean_token_accuracy": 1.0,
1431
+ "num_tokens": 685048.0,
1432
+ "step": 140
1433
+ },
1434
+ {
1435
+ "entropy": 0.3340944442898035,
1436
+ "epoch": 1.7228177641653906,
1437
+ "grad_norm": 0.000865936279296875,
1438
+ "learning_rate": 2.926829268292683e-05,
1439
+ "loss": 0.00013921498612035066,
1440
+ "mean_token_accuracy": 1.0,
1441
+ "num_tokens": 689396.0,
1442
+ "step": 141
1443
+ },
1444
+ {
1445
+ "entropy": 0.34801830537617207,
1446
+ "epoch": 1.7350689127105667,
1447
+ "grad_norm": 0.000965118408203125,
1448
+ "learning_rate": 2.8048780487804882e-05,
1449
+ "loss": 0.0001655905944062397,
1450
+ "mean_token_accuracy": 1.0,
1451
+ "num_tokens": 693189.0,
1452
+ "step": 142
1453
+ },
1454
+ {
1455
+ "entropy": 0.35556044429540634,
1456
+ "epoch": 1.7473200612557427,
1457
+ "grad_norm": 0.0019073486328125,
1458
+ "learning_rate": 2.682926829268293e-05,
1459
+ "loss": 0.00019044376676902175,
1460
+ "mean_token_accuracy": 1.0,
1461
+ "num_tokens": 697603.0,
1462
+ "step": 143
1463
+ },
1464
+ {
1465
+ "entropy": 0.3632572125643492,
1466
+ "epoch": 1.7595712098009189,
1467
+ "grad_norm": 0.00106048583984375,
1468
+ "learning_rate": 2.5609756097560977e-05,
1469
+ "loss": 0.00017029076116159558,
1470
+ "mean_token_accuracy": 1.0,
1471
+ "num_tokens": 703050.0,
1472
+ "step": 144
1473
+ },
1474
+ {
1475
+ "entropy": 0.35750158317387104,
1476
+ "epoch": 1.7718223583460948,
1477
+ "grad_norm": 0.0130615234375,
1478
+ "learning_rate": 2.4390243902439026e-05,
1479
+ "loss": 0.0015582278138026595,
1480
+ "mean_token_accuracy": 0.999015748500824,
1481
+ "num_tokens": 707862.0,
1482
+ "step": 145
1483
+ },
1484
+ {
1485
+ "entropy": 0.36597106605768204,
1486
+ "epoch": 1.784073506891271,
1487
+ "grad_norm": 0.000583648681640625,
1488
+ "learning_rate": 2.3170731707317075e-05,
1489
+ "loss": 0.00013483221118804067,
1490
+ "mean_token_accuracy": 1.0,
1491
+ "num_tokens": 712821.0,
1492
+ "step": 146
1493
+ },
1494
+ {
1495
+ "entropy": 0.35171396005898714,
1496
+ "epoch": 1.7963246554364471,
1497
+ "grad_norm": 0.00157928466796875,
1498
+ "learning_rate": 2.1951219512195124e-05,
1499
+ "loss": 0.00012708510621450841,
1500
+ "mean_token_accuracy": 1.0,
1501
+ "num_tokens": 718453.0,
1502
+ "step": 147
1503
+ },
1504
+ {
1505
+ "entropy": 0.3596025314182043,
1506
+ "epoch": 1.8085758039816233,
1507
+ "grad_norm": 0.000762939453125,
1508
+ "learning_rate": 2.073170731707317e-05,
1509
+ "loss": 0.00011665250349324197,
1510
+ "mean_token_accuracy": 1.0,
1511
+ "num_tokens": 723810.0,
1512
+ "step": 148
1513
+ },
1514
+ {
1515
+ "entropy": 0.3876404408365488,
1516
+ "epoch": 1.8208269525267995,
1517
+ "grad_norm": 0.00170135498046875,
1518
+ "learning_rate": 1.9512195121951222e-05,
1519
+ "loss": 0.00014468679728452116,
1520
+ "mean_token_accuracy": 1.0,
1521
+ "num_tokens": 728126.0,
1522
+ "step": 149
1523
+ },
1524
+ {
1525
+ "entropy": 0.3599753547459841,
1526
+ "epoch": 1.8330781010719757,
1527
+ "grad_norm": 0.00982666015625,
1528
+ "learning_rate": 1.8292682926829268e-05,
1529
+ "loss": 0.0008729367982596159,
1530
+ "mean_token_accuracy": 0.9996936284005642,
1531
+ "num_tokens": 733917.0,
1532
+ "step": 150
1533
+ },
1534
+ {
1535
+ "epoch": 1.8330781010719757,
1536
+ "eval_entropy": 0.3504998228256253,
1537
+ "eval_loss": 0.0005272864946164191,
1538
+ "eval_mean_token_accuracy": 0.9998166846192401,
1539
+ "eval_num_tokens": 733917.0,
1540
+ "eval_runtime": 51.0847,
1541
+ "eval_samples_per_second": 1.351,
1542
+ "eval_steps_per_second": 1.351,
1543
+ "step": 150
1544
+ }
1545
+ ],
1546
+ "logging_steps": 1,
1547
+ "max_steps": 164,
1548
+ "num_input_tokens_seen": 0,
1549
+ "num_train_epochs": 2,
1550
+ "save_steps": 50,
1551
+ "stateful_callbacks": {
1552
+ "TrainerControl": {
1553
+ "args": {
1554
+ "should_epoch_stop": false,
1555
+ "should_evaluate": false,
1556
+ "should_log": false,
1557
+ "should_save": true,
1558
+ "should_training_stop": false
1559
+ },
1560
+ "attributes": {}
1561
+ }
1562
+ },
1563
+ "total_flos": 3.3232647063527424e+16,
1564
+ "train_batch_size": 1,
1565
+ "trial_name": null,
1566
+ "trial_params": null
1567
+ }
checkpoint-150/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e57c6e38c07ad1986e976ce1287e590ea69e06de9f14255a4dbbd33296bac1cc
3
+ size 5585
checkpoint-164/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:meta-llama/Meta-Llama-3.1-8B-Instruct
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ ---
12
+
13
+ # Model Card for Model ID
14
+
15
+ <!-- Provide a quick summary of what the model is/does. -->
16
+
17
+
18
+
19
+ ## Model Details
20
+
21
+ ### Model Description
22
+
23
+ <!-- Provide a longer summary of what this model is. -->
24
+
25
+
26
+
27
+ - **Developed by:** [More Information Needed]
28
+ - **Funded by [optional]:** [More Information Needed]
29
+ - **Shared by [optional]:** [More Information Needed]
30
+ - **Model type:** [More Information Needed]
31
+ - **Language(s) (NLP):** [More Information Needed]
32
+ - **License:** [More Information Needed]
33
+ - **Finetuned from model [optional]:** [More Information Needed]
34
+
35
+ ### Model Sources [optional]
36
+
37
+ <!-- Provide the basic links for the model. -->
38
+
39
+ - **Repository:** [More Information Needed]
40
+ - **Paper [optional]:** [More Information Needed]
41
+ - **Demo [optional]:** [More Information Needed]
42
+
43
+ ## Uses
44
+
45
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
46
+
47
+ ### Direct Use
48
+
49
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
50
+
51
+ [More Information Needed]
52
+
53
+ ### Downstream Use [optional]
54
+
55
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
56
+
57
+ [More Information Needed]
58
+
59
+ ### Out-of-Scope Use
60
+
61
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
62
+
63
+ [More Information Needed]
64
+
65
+ ## Bias, Risks, and Limitations
66
+
67
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
68
+
69
+ [More Information Needed]
70
+
71
+ ### Recommendations
72
+
73
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
74
+
75
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
76
+
77
+ ## How to Get Started with the Model
78
+
79
+ Use the code below to get started with the model.
80
+
81
+ [More Information Needed]
82
+
83
+ ## Training Details
84
+
85
+ ### Training Data
86
+
87
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
88
+
89
+ [More Information Needed]
90
+
91
+ ### Training Procedure
92
+
93
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
94
+
95
+ #### Preprocessing [optional]
96
+
97
+ [More Information Needed]
98
+
99
+
100
+ #### Training Hyperparameters
101
+
102
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
103
+
104
+ #### Speeds, Sizes, Times [optional]
105
+
106
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
107
+
108
+ [More Information Needed]
109
+
110
+ ## Evaluation
111
+
112
+ <!-- This section describes the evaluation protocols and provides the results. -->
113
+
114
+ ### Testing Data, Factors & Metrics
115
+
116
+ #### Testing Data
117
+
118
+ <!-- This should link to a Dataset Card if possible. -->
119
+
120
+ [More Information Needed]
121
+
122
+ #### Factors
123
+
124
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
125
+
126
+ [More Information Needed]
127
+
128
+ #### Metrics
129
+
130
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
131
+
132
+ [More Information Needed]
133
+
134
+ ### Results
135
+
136
+ [More Information Needed]
137
+
138
+ #### Summary
139
+
140
+
141
+
142
+ ## Model Examination [optional]
143
+
144
+ <!-- Relevant interpretability work for the model goes here -->
145
+
146
+ [More Information Needed]
147
+
148
+ ## Environmental Impact
149
+
150
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
151
+
152
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
153
+
154
+ - **Hardware Type:** [More Information Needed]
155
+ - **Hours used:** [More Information Needed]
156
+ - **Cloud Provider:** [More Information Needed]
157
+ - **Compute Region:** [More Information Needed]
158
+ - **Carbon Emitted:** [More Information Needed]
159
+
160
+ ## Technical Specifications [optional]
161
+
162
+ ### Model Architecture and Objective
163
+
164
+ [More Information Needed]
165
+
166
+ ### Compute Infrastructure
167
+
168
+ [More Information Needed]
169
+
170
+ #### Hardware
171
+
172
+ [More Information Needed]
173
+
174
+ #### Software
175
+
176
+ [More Information Needed]
177
+
178
+ ## Citation [optional]
179
+
180
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
181
+
182
+ **BibTeX:**
183
+
184
+ [More Information Needed]
185
+
186
+ **APA:**
187
+
188
+ [More Information Needed]
189
+
190
+ ## Glossary [optional]
191
+
192
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
193
+
194
+ [More Information Needed]
195
+
196
+ ## More Information [optional]
197
+
198
+ [More Information Needed]
199
+
200
+ ## Model Card Authors [optional]
201
+
202
+ [More Information Needed]
203
+
204
+ ## Model Card Contact
205
+
206
+ [More Information Needed]
207
+ ### Framework versions
208
+
209
+ - PEFT 0.18.1
checkpoint-164/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "meta-llama/Meta-Llama-3.1-8B-Instruct",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0,
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
+ "gate_proj",
33
+ "k_proj",
34
+ "up_proj",
35
+ "o_proj",
36
+ "down_proj",
37
+ "v_proj",
38
+ "q_proj"
39
+ ],
40
+ "target_parameters": null,
41
+ "task_type": "CAUSAL_LM",
42
+ "trainable_token_indices": null,
43
+ "use_dora": false,
44
+ "use_qalora": false,
45
+ "use_rslora": false
46
+ }
checkpoint-164/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1cfd52fdf227b7e674c9a251aff7c304abf9a7a8919fce7857b076b93ca8e43
3
+ size 83946192
checkpoint-164/chat_template.jinja ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- set date_string = "26 Jul 2024" %}
10
+ {%- endif %}
11
+ {%- if not tools is defined %}
12
+ {%- set tools = none %}
13
+ {%- endif %}
14
+
15
+ {#- This block extracts the system message, so we can slot it into the right place. #}
16
+ {%- if messages[0]['role'] == 'system' %}
17
+ {%- set system_message = messages[0]['content']|trim %}
18
+ {%- set messages = messages[1:] %}
19
+ {%- else %}
20
+ {%- set system_message = "" %}
21
+ {%- endif %}
22
+
23
+ {#- System message + builtin tools #}
24
+ {{- "<|start_header_id|>system<|end_header_id|>\n\n" }}
25
+ {%- if builtin_tools is defined or tools is not none %}
26
+ {{- "Environment: ipython\n" }}
27
+ {%- endif %}
28
+ {%- if builtin_tools is defined %}
29
+ {{- "Tools: " + builtin_tools | reject('equalto', 'code_interpreter') | join(", ") + "\n\n"}}
30
+ {%- endif %}
31
+ {{- "Cutting Knowledge Date: December 2023\n" }}
32
+ {{- "Today Date: " + date_string + "\n\n" }}
33
+ {%- if tools is not none and not tools_in_user_message %}
34
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
35
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
36
+ {{- "Do not use variables.\n\n" }}
37
+ {%- for t in tools %}
38
+ {{- t | tojson(indent=4) }}
39
+ {{- "\n\n" }}
40
+ {%- endfor %}
41
+ {%- endif %}
42
+ {{- system_message }}
43
+ {{- "<|eot_id|>" }}
44
+
45
+ {#- Custom tools are passed in a user message with some extra guidance #}
46
+ {%- if tools_in_user_message and not tools is none %}
47
+ {#- Extract the first user message so we can plug it in here #}
48
+ {%- if messages | length != 0 %}
49
+ {%- set first_user_message = messages[0]['content']|trim %}
50
+ {%- set messages = messages[1:] %}
51
+ {%- else %}
52
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
53
+ {%- endif %}
54
+ {{- '<|start_header_id|>user<|end_header_id|>\n\n' -}}
55
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
56
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
57
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
58
+ {{- "Do not use variables.\n\n" }}
59
+ {%- for t in tools %}
60
+ {{- t | tojson(indent=4) }}
61
+ {{- "\n\n" }}
62
+ {%- endfor %}
63
+ {{- first_user_message + "<|eot_id|>"}}
64
+ {%- endif %}
65
+
66
+ {%- for message in messages %}
67
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
68
+ {{- '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'+ message['content'] | trim + '<|eot_id|>' }}
69
+ {%- elif 'tool_calls' in message %}
70
+ {%- if not message.tool_calls|length == 1 %}
71
+ {{- raise_exception("This model only supports single tool-calls at once!") }}
72
+ {%- endif %}
73
+ {%- set tool_call = message.tool_calls[0].function %}
74
+ {%- if builtin_tools is defined and tool_call.name in builtin_tools %}
75
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
76
+ {{- "<|python_tag|>" + tool_call.name + ".call(" }}
77
+ {%- for arg_name, arg_val in tool_call.arguments | items %}
78
+ {{- arg_name + '="' + arg_val + '"' }}
79
+ {%- if not loop.last %}
80
+ {{- ", " }}
81
+ {%- endif %}
82
+ {%- endfor %}
83
+ {{- ")" }}
84
+ {%- else %}
85
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' -}}
86
+ {{- '{"name": "' + tool_call.name + '", ' }}
87
+ {{- '"parameters": ' }}
88
+ {{- tool_call.arguments | tojson }}
89
+ {{- "}" }}
90
+ {%- endif %}
91
+ {%- if builtin_tools is defined %}
92
+ {#- This means we're in ipython mode #}
93
+ {{- "<|eom_id|>" }}
94
+ {%- else %}
95
+ {{- "<|eot_id|>" }}
96
+ {%- endif %}
97
+ {%- elif message.role == "tool" or message.role == "ipython" %}
98
+ {{- "<|start_header_id|>ipython<|end_header_id|>\n\n" }}
99
+ {%- if message.content is mapping or message.content is iterable %}
100
+ {{- message.content | tojson }}
101
+ {%- else %}
102
+ {{- message.content }}
103
+ {%- endif %}
104
+ {{- "<|eot_id|>" }}
105
+ {%- endif %}
106
+ {%- endfor %}
107
+ {%- if add_generation_prompt %}
108
+ {{- '<|start_header_id|>assistant<|end_header_id|>\n\n' }}
109
+ {%- endif %}
checkpoint-164/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:790ca2f2587106fb193d92d7f10c85139892f97a9ddd96f10bc3dd3b1f58f028
3
+ size 85728997
checkpoint-164/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:718a0f3db00824213036a2c0441849791319b7d9cf189065873bb26a7020738e
3
+ size 14645
checkpoint-164/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8706973e007590bfa836db471dff71dd712c2b8887a568e7dc03dcbf8f4f93e7
3
+ size 1465
checkpoint-164/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
checkpoint-164/tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|begin_of_text|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|eot_id|>",
6
+ "is_local": false,
7
+ "model_input_names": [
8
+ "input_ids",
9
+ "attention_mask"
10
+ ],
11
+ "model_max_length": 131072,
12
+ "pad_token": "<|eot_id|>",
13
+ "tokenizer_class": "TokenizersBackend"
14
+ }
checkpoint-164/trainer_state.json ADDED
@@ -0,0 +1,1707 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.0,
6
+ "eval_steps": 50,
7
+ "global_step": 164,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 0.32083135563880205,
14
+ "epoch": 0.01225114854517611,
15
+ "grad_norm": 0.134765625,
16
+ "learning_rate": 0.0002,
17
+ "loss": 0.019214527681469917,
18
+ "mean_token_accuracy": 0.9918519593775272,
19
+ "num_tokens": 6092.0,
20
+ "step": 1
21
+ },
22
+ {
23
+ "entropy": 0.3576695416122675,
24
+ "epoch": 0.02450229709035222,
25
+ "grad_norm": 0.50390625,
26
+ "learning_rate": 0.00019878048780487805,
27
+ "loss": 0.03324645012617111,
28
+ "mean_token_accuracy": 0.988272774964571,
29
+ "num_tokens": 11535.0,
30
+ "step": 2
31
+ },
32
+ {
33
+ "entropy": 0.33352363388985395,
34
+ "epoch": 0.036753445635528334,
35
+ "grad_norm": 0.0272216796875,
36
+ "learning_rate": 0.0001975609756097561,
37
+ "loss": 0.0017091021873056889,
38
+ "mean_token_accuracy": 1.0,
39
+ "num_tokens": 16432.0,
40
+ "step": 3
41
+ },
42
+ {
43
+ "entropy": 0.35098350048065186,
44
+ "epoch": 0.04900459418070444,
45
+ "grad_norm": 0.06640625,
46
+ "learning_rate": 0.00019634146341463416,
47
+ "loss": 0.00414489908143878,
48
+ "mean_token_accuracy": 0.9985632188618183,
49
+ "num_tokens": 20507.0,
50
+ "step": 4
51
+ },
52
+ {
53
+ "entropy": 0.3005372080951929,
54
+ "epoch": 0.06125574272588055,
55
+ "grad_norm": 0.01416015625,
56
+ "learning_rate": 0.0001951219512195122,
57
+ "loss": 0.0008560216519981623,
58
+ "mean_token_accuracy": 1.0,
59
+ "num_tokens": 26122.0,
60
+ "step": 5
61
+ },
62
+ {
63
+ "entropy": 0.3177621979266405,
64
+ "epoch": 0.07350689127105667,
65
+ "grad_norm": 0.008544921875,
66
+ "learning_rate": 0.00019390243902439025,
67
+ "loss": 0.0005585744511336088,
68
+ "mean_token_accuracy": 1.0,
69
+ "num_tokens": 30847.0,
70
+ "step": 6
71
+ },
72
+ {
73
+ "entropy": 0.27754624653607607,
74
+ "epoch": 0.08575803981623277,
75
+ "grad_norm": 0.019775390625,
76
+ "learning_rate": 0.0001926829268292683,
77
+ "loss": 0.0012820134870707989,
78
+ "mean_token_accuracy": 0.9998413696885109,
79
+ "num_tokens": 36541.0,
80
+ "step": 7
81
+ },
82
+ {
83
+ "entropy": 0.30307829193770885,
84
+ "epoch": 0.09800918836140889,
85
+ "grad_norm": 0.004364013671875,
86
+ "learning_rate": 0.00019146341463414633,
87
+ "loss": 0.0003136860905215144,
88
+ "mean_token_accuracy": 1.0,
89
+ "num_tokens": 41001.0,
90
+ "step": 8
91
+ },
92
+ {
93
+ "entropy": 0.31226138956844807,
94
+ "epoch": 0.11026033690658499,
95
+ "grad_norm": 0.11767578125,
96
+ "learning_rate": 0.0001902439024390244,
97
+ "loss": 0.006275261752307415,
98
+ "mean_token_accuracy": 0.9993216060101986,
99
+ "num_tokens": 45467.0,
100
+ "step": 9
101
+ },
102
+ {
103
+ "entropy": 0.2779384208843112,
104
+ "epoch": 0.1225114854517611,
105
+ "grad_norm": 0.011474609375,
106
+ "learning_rate": 0.00018902439024390244,
107
+ "loss": 0.0006869531353004277,
108
+ "mean_token_accuracy": 1.0,
109
+ "num_tokens": 50478.0,
110
+ "step": 10
111
+ },
112
+ {
113
+ "entropy": 0.27587867714464664,
114
+ "epoch": 0.13476263399693722,
115
+ "grad_norm": 0.00188446044921875,
116
+ "learning_rate": 0.0001878048780487805,
117
+ "loss": 0.0001916390028782189,
118
+ "mean_token_accuracy": 1.0,
119
+ "num_tokens": 56181.0,
120
+ "step": 11
121
+ },
122
+ {
123
+ "entropy": 0.2948900917544961,
124
+ "epoch": 0.14701378254211334,
125
+ "grad_norm": 0.07177734375,
126
+ "learning_rate": 0.00018658536585365856,
127
+ "loss": 0.001886777114123106,
128
+ "mean_token_accuracy": 0.9998650103807449,
129
+ "num_tokens": 62946.0,
130
+ "step": 12
131
+ },
132
+ {
133
+ "entropy": 0.29555963445454836,
134
+ "epoch": 0.15926493108728942,
135
+ "grad_norm": 0.005523681640625,
136
+ "learning_rate": 0.0001853658536585366,
137
+ "loss": 0.00017441912495996803,
138
+ "mean_token_accuracy": 1.0,
139
+ "num_tokens": 68436.0,
140
+ "step": 13
141
+ },
142
+ {
143
+ "entropy": 0.287986209616065,
144
+ "epoch": 0.17151607963246554,
145
+ "grad_norm": 0.02001953125,
146
+ "learning_rate": 0.00018414634146341464,
147
+ "loss": 0.00017802949878387153,
148
+ "mean_token_accuracy": 1.0,
149
+ "num_tokens": 73603.0,
150
+ "step": 14
151
+ },
152
+ {
153
+ "entropy": 0.3127295421436429,
154
+ "epoch": 0.18376722817764166,
155
+ "grad_norm": 0.06787109375,
156
+ "learning_rate": 0.0001829268292682927,
157
+ "loss": 0.0010371531825512648,
158
+ "mean_token_accuracy": 0.9995941556990147,
159
+ "num_tokens": 77845.0,
160
+ "step": 15
161
+ },
162
+ {
163
+ "entropy": 0.2922206539660692,
164
+ "epoch": 0.19601837672281777,
165
+ "grad_norm": 0.00118255615234375,
166
+ "learning_rate": 0.00018170731707317075,
167
+ "loss": 0.00011905122664757073,
168
+ "mean_token_accuracy": 1.0,
169
+ "num_tokens": 82744.0,
170
+ "step": 16
171
+ },
172
+ {
173
+ "entropy": 0.2928574001416564,
174
+ "epoch": 0.2082695252679939,
175
+ "grad_norm": 0.0003719329833984375,
176
+ "learning_rate": 0.0001804878048780488,
177
+ "loss": 7.616190850967541e-05,
178
+ "mean_token_accuracy": 1.0,
179
+ "num_tokens": 87453.0,
180
+ "step": 17
181
+ },
182
+ {
183
+ "entropy": 0.2979039028286934,
184
+ "epoch": 0.22052067381316998,
185
+ "grad_norm": 0.0026702880859375,
186
+ "learning_rate": 0.00017926829268292684,
187
+ "loss": 0.00012367898307275027,
188
+ "mean_token_accuracy": 1.0,
189
+ "num_tokens": 92321.0,
190
+ "step": 18
191
+ },
192
+ {
193
+ "entropy": 0.31858293898403645,
194
+ "epoch": 0.2327718223583461,
195
+ "grad_norm": 0.10498046875,
196
+ "learning_rate": 0.00017804878048780488,
197
+ "loss": 0.0006579139153473079,
198
+ "mean_token_accuracy": 0.9997499994933605,
199
+ "num_tokens": 97146.0,
200
+ "step": 19
201
+ },
202
+ {
203
+ "entropy": 0.30853591673076153,
204
+ "epoch": 0.2450229709035222,
205
+ "grad_norm": 0.004364013671875,
206
+ "learning_rate": 0.00017682926829268295,
207
+ "loss": 0.00014281428593676537,
208
+ "mean_token_accuracy": 1.0,
209
+ "num_tokens": 101943.0,
210
+ "step": 20
211
+ },
212
+ {
213
+ "entropy": 0.34037051256746054,
214
+ "epoch": 0.2572741194486983,
215
+ "grad_norm": 0.056884765625,
216
+ "learning_rate": 0.000175609756097561,
217
+ "loss": 0.011726096272468567,
218
+ "mean_token_accuracy": 0.9993422217667103,
219
+ "num_tokens": 106772.0,
220
+ "step": 21
221
+ },
222
+ {
223
+ "entropy": 0.29644382931292057,
224
+ "epoch": 0.26952526799387444,
225
+ "grad_norm": 0.0023193359375,
226
+ "learning_rate": 0.00017439024390243903,
227
+ "loss": 0.00010672100324882194,
228
+ "mean_token_accuracy": 1.0,
229
+ "num_tokens": 112558.0,
230
+ "step": 22
231
+ },
232
+ {
233
+ "entropy": 0.3180191367864609,
234
+ "epoch": 0.28177641653905056,
235
+ "grad_norm": 0.000675201416015625,
236
+ "learning_rate": 0.00017317073170731708,
237
+ "loss": 9.894849790725857e-05,
238
+ "mean_token_accuracy": 1.0,
239
+ "num_tokens": 117489.0,
240
+ "step": 23
241
+ },
242
+ {
243
+ "entropy": 0.32946281880140305,
244
+ "epoch": 0.29402756508422667,
245
+ "grad_norm": 0.0242919921875,
246
+ "learning_rate": 0.00017195121951219512,
247
+ "loss": 0.0029232932720333338,
248
+ "mean_token_accuracy": 0.9996279776096344,
249
+ "num_tokens": 123010.0,
250
+ "step": 24
251
+ },
252
+ {
253
+ "entropy": 0.3180750487372279,
254
+ "epoch": 0.30627871362940273,
255
+ "grad_norm": 0.038330078125,
256
+ "learning_rate": 0.0001707317073170732,
257
+ "loss": 0.0015810562763363123,
258
+ "mean_token_accuracy": 0.9990344606339931,
259
+ "num_tokens": 127716.0,
260
+ "step": 25
261
+ },
262
+ {
263
+ "entropy": 0.31262985058128834,
264
+ "epoch": 0.31852986217457885,
265
+ "grad_norm": 0.0027313232421875,
266
+ "learning_rate": 0.00016951219512195123,
267
+ "loss": 0.00019670175970532,
268
+ "mean_token_accuracy": 1.0,
269
+ "num_tokens": 132372.0,
270
+ "step": 26
271
+ },
272
+ {
273
+ "entropy": 0.2831157138571143,
274
+ "epoch": 0.33078101071975496,
275
+ "grad_norm": 0.1484375,
276
+ "learning_rate": 0.00016829268292682927,
277
+ "loss": 0.003187144873663783,
278
+ "mean_token_accuracy": 0.9994877055287361,
279
+ "num_tokens": 137028.0,
280
+ "step": 27
281
+ },
282
+ {
283
+ "entropy": 0.3106652954593301,
284
+ "epoch": 0.3430321592649311,
285
+ "grad_norm": 0.05810546875,
286
+ "learning_rate": 0.00016707317073170731,
287
+ "loss": 0.004998125601559877,
288
+ "mean_token_accuracy": 0.9980670101940632,
289
+ "num_tokens": 142088.0,
290
+ "step": 28
291
+ },
292
+ {
293
+ "entropy": 0.31454288959503174,
294
+ "epoch": 0.3552833078101072,
295
+ "grad_norm": 0.0306396484375,
296
+ "learning_rate": 0.00016585365853658536,
297
+ "loss": 0.000461318384623155,
298
+ "mean_token_accuracy": 1.0,
299
+ "num_tokens": 147481.0,
300
+ "step": 29
301
+ },
302
+ {
303
+ "entropy": 0.33650430012494326,
304
+ "epoch": 0.3675344563552833,
305
+ "grad_norm": 0.0238037109375,
306
+ "learning_rate": 0.00016463414634146343,
307
+ "loss": 0.0005614800029434264,
308
+ "mean_token_accuracy": 1.0,
309
+ "num_tokens": 152973.0,
310
+ "step": 30
311
+ },
312
+ {
313
+ "entropy": 0.33513325452804565,
314
+ "epoch": 0.37978560490045943,
315
+ "grad_norm": 0.00604248046875,
316
+ "learning_rate": 0.00016341463414634147,
317
+ "loss": 0.00020872258755844086,
318
+ "mean_token_accuracy": 1.0,
319
+ "num_tokens": 156786.0,
320
+ "step": 31
321
+ },
322
+ {
323
+ "entropy": 0.34442581795156,
324
+ "epoch": 0.39203675344563554,
325
+ "grad_norm": 0.0159912109375,
326
+ "learning_rate": 0.00016219512195121954,
327
+ "loss": 0.00043797443504445255,
328
+ "mean_token_accuracy": 1.0,
329
+ "num_tokens": 162859.0,
330
+ "step": 32
331
+ },
332
+ {
333
+ "entropy": 0.34709672816097736,
334
+ "epoch": 0.40428790199081166,
335
+ "grad_norm": 0.04052734375,
336
+ "learning_rate": 0.00016097560975609758,
337
+ "loss": 0.0008612321689724922,
338
+ "mean_token_accuracy": 1.0,
339
+ "num_tokens": 167969.0,
340
+ "step": 33
341
+ },
342
+ {
343
+ "entropy": 0.31636961828917265,
344
+ "epoch": 0.4165390505359878,
345
+ "grad_norm": 0.048583984375,
346
+ "learning_rate": 0.00015975609756097562,
347
+ "loss": 0.001623529358766973,
348
+ "mean_token_accuracy": 1.0,
349
+ "num_tokens": 172518.0,
350
+ "step": 34
351
+ },
352
+ {
353
+ "entropy": 0.341240718960762,
354
+ "epoch": 0.42879019908116384,
355
+ "grad_norm": 0.0089111328125,
356
+ "learning_rate": 0.00015853658536585366,
357
+ "loss": 0.0004598334198817611,
358
+ "mean_token_accuracy": 1.0,
359
+ "num_tokens": 177085.0,
360
+ "step": 35
361
+ },
362
+ {
363
+ "entropy": 0.3331515807658434,
364
+ "epoch": 0.44104134762633995,
365
+ "grad_norm": 0.0137939453125,
366
+ "learning_rate": 0.00015731707317073173,
367
+ "loss": 0.00047711117076687515,
368
+ "mean_token_accuracy": 1.0,
369
+ "num_tokens": 181617.0,
370
+ "step": 36
371
+ },
372
+ {
373
+ "entropy": 0.2969168536365032,
374
+ "epoch": 0.45329249617151607,
375
+ "grad_norm": 0.0296630859375,
376
+ "learning_rate": 0.00015609756097560978,
377
+ "loss": 0.0018673602025955915,
378
+ "mean_token_accuracy": 0.9982142858207226,
379
+ "num_tokens": 186836.0,
380
+ "step": 37
381
+ },
382
+ {
383
+ "entropy": 0.3208611598238349,
384
+ "epoch": 0.4655436447166922,
385
+ "grad_norm": 0.0034027099609375,
386
+ "learning_rate": 0.00015487804878048782,
387
+ "loss": 0.00018661899957805872,
388
+ "mean_token_accuracy": 1.0,
389
+ "num_tokens": 191224.0,
390
+ "step": 38
391
+ },
392
+ {
393
+ "entropy": 0.296407300978899,
394
+ "epoch": 0.4777947932618683,
395
+ "grad_norm": 0.003570556640625,
396
+ "learning_rate": 0.00015365853658536586,
397
+ "loss": 0.0001632017083466053,
398
+ "mean_token_accuracy": 1.0,
399
+ "num_tokens": 195926.0,
400
+ "step": 39
401
+ },
402
+ {
403
+ "entropy": 0.32142599392682314,
404
+ "epoch": 0.4900459418070444,
405
+ "grad_norm": 0.0277099609375,
406
+ "learning_rate": 0.0001524390243902439,
407
+ "loss": 0.0039696223102509975,
408
+ "mean_token_accuracy": 0.9992866478860378,
409
+ "num_tokens": 200772.0,
410
+ "step": 40
411
+ },
412
+ {
413
+ "entropy": 0.3037592498585582,
414
+ "epoch": 0.5022970903522205,
415
+ "grad_norm": 0.0026092529296875,
416
+ "learning_rate": 0.00015121951219512197,
417
+ "loss": 0.00013867147208657116,
418
+ "mean_token_accuracy": 1.0,
419
+ "num_tokens": 204499.0,
420
+ "step": 41
421
+ },
422
+ {
423
+ "entropy": 0.31665132474154234,
424
+ "epoch": 0.5145482388973966,
425
+ "grad_norm": 0.004730224609375,
426
+ "learning_rate": 0.00015000000000000001,
427
+ "loss": 0.00025882094632834196,
428
+ "mean_token_accuracy": 1.0,
429
+ "num_tokens": 208814.0,
430
+ "step": 42
431
+ },
432
+ {
433
+ "entropy": 0.33023010194301605,
434
+ "epoch": 0.5267993874425727,
435
+ "grad_norm": 0.001922607421875,
436
+ "learning_rate": 0.00014878048780487806,
437
+ "loss": 0.00019074659212492406,
438
+ "mean_token_accuracy": 1.0,
439
+ "num_tokens": 213907.0,
440
+ "step": 43
441
+ },
442
+ {
443
+ "entropy": 0.334543508477509,
444
+ "epoch": 0.5390505359877489,
445
+ "grad_norm": 0.0018157958984375,
446
+ "learning_rate": 0.0001475609756097561,
447
+ "loss": 0.00011566472676349804,
448
+ "mean_token_accuracy": 1.0,
449
+ "num_tokens": 218988.0,
450
+ "step": 44
451
+ },
452
+ {
453
+ "entropy": 0.3078083451837301,
454
+ "epoch": 0.5513016845329249,
455
+ "grad_norm": 0.03515625,
456
+ "learning_rate": 0.00014634146341463414,
457
+ "loss": 0.0022110757417976856,
458
+ "mean_token_accuracy": 0.9987903237342834,
459
+ "num_tokens": 223595.0,
460
+ "step": 45
461
+ },
462
+ {
463
+ "entropy": 0.32667472772300243,
464
+ "epoch": 0.5635528330781011,
465
+ "grad_norm": 0.034423828125,
466
+ "learning_rate": 0.0001451219512195122,
467
+ "loss": 0.0010719874408096075,
468
+ "mean_token_accuracy": 0.9991953931748867,
469
+ "num_tokens": 228244.0,
470
+ "step": 46
471
+ },
472
+ {
473
+ "entropy": 0.3273861287161708,
474
+ "epoch": 0.5758039816232772,
475
+ "grad_norm": 0.00057220458984375,
476
+ "learning_rate": 0.00014390243902439025,
477
+ "loss": 6.594268779736012e-05,
478
+ "mean_token_accuracy": 1.0,
479
+ "num_tokens": 232606.0,
480
+ "step": 47
481
+ },
482
+ {
483
+ "entropy": 0.31728990003466606,
484
+ "epoch": 0.5880551301684533,
485
+ "grad_norm": 0.0003185272216796875,
486
+ "learning_rate": 0.0001426829268292683,
487
+ "loss": 8.574798266636208e-05,
488
+ "mean_token_accuracy": 1.0,
489
+ "num_tokens": 236563.0,
490
+ "step": 48
491
+ },
492
+ {
493
+ "entropy": 0.34826087579131126,
494
+ "epoch": 0.6003062787136294,
495
+ "grad_norm": 0.00390625,
496
+ "learning_rate": 0.00014146341463414634,
497
+ "loss": 0.00015243196685332805,
498
+ "mean_token_accuracy": 1.0,
499
+ "num_tokens": 241214.0,
500
+ "step": 49
501
+ },
502
+ {
503
+ "entropy": 0.3367287954315543,
504
+ "epoch": 0.6125574272588055,
505
+ "grad_norm": 0.003265380859375,
506
+ "learning_rate": 0.00014024390243902438,
507
+ "loss": 0.0001341242023045197,
508
+ "mean_token_accuracy": 1.0,
509
+ "num_tokens": 245200.0,
510
+ "step": 50
511
+ },
512
+ {
513
+ "epoch": 0.6125574272588055,
514
+ "eval_entropy": 0.3212364659361217,
515
+ "eval_loss": 0.0014040147652849555,
516
+ "eval_mean_token_accuracy": 0.9998166846192401,
517
+ "eval_num_tokens": 245200.0,
518
+ "eval_runtime": 51.1353,
519
+ "eval_samples_per_second": 1.349,
520
+ "eval_steps_per_second": 1.349,
521
+ "step": 50
522
+ },
523
+ {
524
+ "entropy": 0.3274610061198473,
525
+ "epoch": 0.6248085758039816,
526
+ "grad_norm": 0.000518798828125,
527
+ "learning_rate": 0.00013902439024390245,
528
+ "loss": 6.213193410076201e-05,
529
+ "mean_token_accuracy": 1.0,
530
+ "num_tokens": 249761.0,
531
+ "step": 51
532
+ },
533
+ {
534
+ "entropy": 0.3302043145522475,
535
+ "epoch": 0.6370597243491577,
536
+ "grad_norm": 0.00067901611328125,
537
+ "learning_rate": 0.0001378048780487805,
538
+ "loss": 7.391967665171251e-05,
539
+ "mean_token_accuracy": 1.0,
540
+ "num_tokens": 254787.0,
541
+ "step": 52
542
+ },
543
+ {
544
+ "entropy": 0.3345805983990431,
545
+ "epoch": 0.6493108728943339,
546
+ "grad_norm": 0.064453125,
547
+ "learning_rate": 0.00013658536585365856,
548
+ "loss": 0.008045142516493797,
549
+ "mean_token_accuracy": 0.9975476562976837,
550
+ "num_tokens": 260287.0,
551
+ "step": 53
552
+ },
553
+ {
554
+ "entropy": 0.3093695640563965,
555
+ "epoch": 0.6615620214395099,
556
+ "grad_norm": 0.036865234375,
557
+ "learning_rate": 0.0001353658536585366,
558
+ "loss": 0.0016300748102366924,
559
+ "mean_token_accuracy": 0.9998249299824238,
560
+ "num_tokens": 264810.0,
561
+ "step": 54
562
+ },
563
+ {
564
+ "entropy": 0.33090174850076437,
565
+ "epoch": 0.6738131699846861,
566
+ "grad_norm": 0.04052734375,
567
+ "learning_rate": 0.00013414634146341464,
568
+ "loss": 0.0037348291371017694,
569
+ "mean_token_accuracy": 0.9990433678030968,
570
+ "num_tokens": 270386.0,
571
+ "step": 55
572
+ },
573
+ {
574
+ "entropy": 0.3455248447135091,
575
+ "epoch": 0.6860643185298622,
576
+ "grad_norm": 0.0301513671875,
577
+ "learning_rate": 0.0001329268292682927,
578
+ "loss": 0.0006253286846913397,
579
+ "mean_token_accuracy": 1.0,
580
+ "num_tokens": 274391.0,
581
+ "step": 56
582
+ },
583
+ {
584
+ "entropy": 0.3408086858689785,
585
+ "epoch": 0.6983154670750383,
586
+ "grad_norm": 0.0033111572265625,
587
+ "learning_rate": 0.00013170731707317076,
588
+ "loss": 0.00020847572886850685,
589
+ "mean_token_accuracy": 1.0,
590
+ "num_tokens": 279716.0,
591
+ "step": 57
592
+ },
593
+ {
594
+ "entropy": 0.29423840064555407,
595
+ "epoch": 0.7105666156202144,
596
+ "grad_norm": 0.125,
597
+ "learning_rate": 0.0001304878048780488,
598
+ "loss": 0.005600863602012396,
599
+ "mean_token_accuracy": 0.998680267482996,
600
+ "num_tokens": 285404.0,
601
+ "step": 58
602
+ },
603
+ {
604
+ "entropy": 0.33689095824956894,
605
+ "epoch": 0.7228177641653905,
606
+ "grad_norm": 0.057861328125,
607
+ "learning_rate": 0.00012926829268292684,
608
+ "loss": 0.009100214578211308,
609
+ "mean_token_accuracy": 0.9967310577630997,
610
+ "num_tokens": 290021.0,
611
+ "step": 59
612
+ },
613
+ {
614
+ "entropy": 0.3336018780246377,
615
+ "epoch": 0.7350689127105666,
616
+ "grad_norm": 0.005889892578125,
617
+ "learning_rate": 0.00012804878048780488,
618
+ "loss": 0.00015729578444734216,
619
+ "mean_token_accuracy": 1.0,
620
+ "num_tokens": 294890.0,
621
+ "step": 60
622
+ },
623
+ {
624
+ "entropy": 0.30060291569679976,
625
+ "epoch": 0.7473200612557427,
626
+ "grad_norm": 0.0172119140625,
627
+ "learning_rate": 0.00012682926829268293,
628
+ "loss": 0.00039864826248958707,
629
+ "mean_token_accuracy": 0.9993686862289906,
630
+ "num_tokens": 300384.0,
631
+ "step": 61
632
+ },
633
+ {
634
+ "entropy": 0.36021818965673447,
635
+ "epoch": 0.7595712098009189,
636
+ "grad_norm": 0.0025634765625,
637
+ "learning_rate": 0.000125609756097561,
638
+ "loss": 0.00016568033606745303,
639
+ "mean_token_accuracy": 1.0,
640
+ "num_tokens": 305805.0,
641
+ "step": 62
642
+ },
643
+ {
644
+ "entropy": 0.32536453381180763,
645
+ "epoch": 0.7718223583460949,
646
+ "grad_norm": 0.001800537109375,
647
+ "learning_rate": 0.00012439024390243904,
648
+ "loss": 0.00014585268218070269,
649
+ "mean_token_accuracy": 1.0,
650
+ "num_tokens": 310233.0,
651
+ "step": 63
652
+ },
653
+ {
654
+ "entropy": 0.31967335008084774,
655
+ "epoch": 0.7840735068912711,
656
+ "grad_norm": 0.0010223388671875,
657
+ "learning_rate": 0.00012317073170731708,
658
+ "loss": 0.00010060967179015279,
659
+ "mean_token_accuracy": 1.0,
660
+ "num_tokens": 314234.0,
661
+ "step": 64
662
+ },
663
+ {
664
+ "entropy": 0.34358128905296326,
665
+ "epoch": 0.7963246554364471,
666
+ "grad_norm": 0.000743865966796875,
667
+ "learning_rate": 0.00012195121951219512,
668
+ "loss": 9.478208812652156e-05,
669
+ "mean_token_accuracy": 1.0,
670
+ "num_tokens": 319186.0,
671
+ "step": 65
672
+ },
673
+ {
674
+ "entropy": 0.33988895174115896,
675
+ "epoch": 0.8085758039816233,
676
+ "grad_norm": 0.0419921875,
677
+ "learning_rate": 0.00012073170731707318,
678
+ "loss": 0.0011607923079282045,
679
+ "mean_token_accuracy": 0.9995629377663136,
680
+ "num_tokens": 324710.0,
681
+ "step": 66
682
+ },
683
+ {
684
+ "entropy": 0.3078791871666908,
685
+ "epoch": 0.8208269525267994,
686
+ "grad_norm": 0.05859375,
687
+ "learning_rate": 0.00011951219512195122,
688
+ "loss": 0.016102174296975136,
689
+ "mean_token_accuracy": 0.9935315921902657,
690
+ "num_tokens": 329942.0,
691
+ "step": 67
692
+ },
693
+ {
694
+ "entropy": 0.3587793167680502,
695
+ "epoch": 0.8330781010719756,
696
+ "grad_norm": 0.002716064453125,
697
+ "learning_rate": 0.00011829268292682926,
698
+ "loss": 0.0001911829021992162,
699
+ "mean_token_accuracy": 1.0,
700
+ "num_tokens": 334487.0,
701
+ "step": 68
702
+ },
703
+ {
704
+ "entropy": 0.360817888751626,
705
+ "epoch": 0.8453292496171516,
706
+ "grad_norm": 0.003753662109375,
707
+ "learning_rate": 0.00011707317073170732,
708
+ "loss": 0.00026575953233987093,
709
+ "mean_token_accuracy": 1.0,
710
+ "num_tokens": 338184.0,
711
+ "step": 69
712
+ },
713
+ {
714
+ "entropy": 0.3788213599473238,
715
+ "epoch": 0.8575803981623277,
716
+ "grad_norm": 0.07421875,
717
+ "learning_rate": 0.00011585365853658536,
718
+ "loss": 0.007251895032823086,
719
+ "mean_token_accuracy": 0.997805867344141,
720
+ "num_tokens": 342594.0,
721
+ "step": 70
722
+ },
723
+ {
724
+ "entropy": 0.37989665009081364,
725
+ "epoch": 0.8698315467075038,
726
+ "grad_norm": 0.0361328125,
727
+ "learning_rate": 0.00011463414634146342,
728
+ "loss": 0.001519644632935524,
729
+ "mean_token_accuracy": 0.9997807033360004,
730
+ "num_tokens": 347798.0,
731
+ "step": 71
732
+ },
733
+ {
734
+ "entropy": 0.35538383200764656,
735
+ "epoch": 0.8820826952526799,
736
+ "grad_norm": 0.0038604736328125,
737
+ "learning_rate": 0.00011341463414634146,
738
+ "loss": 0.00030194621649570763,
739
+ "mean_token_accuracy": 1.0,
740
+ "num_tokens": 352122.0,
741
+ "step": 72
742
+ },
743
+ {
744
+ "entropy": 0.36578258499503136,
745
+ "epoch": 0.8943338437978561,
746
+ "grad_norm": 0.02001953125,
747
+ "learning_rate": 0.00011219512195121953,
748
+ "loss": 0.0018432819051668048,
749
+ "mean_token_accuracy": 0.9997568093240261,
750
+ "num_tokens": 357944.0,
751
+ "step": 73
752
+ },
753
+ {
754
+ "entropy": 0.3363148244097829,
755
+ "epoch": 0.9065849923430321,
756
+ "grad_norm": 0.01214599609375,
757
+ "learning_rate": 0.00011097560975609757,
758
+ "loss": 0.0004945008549839258,
759
+ "mean_token_accuracy": 1.0,
760
+ "num_tokens": 363815.0,
761
+ "step": 74
762
+ },
763
+ {
764
+ "entropy": 0.3567014401778579,
765
+ "epoch": 0.9188361408882083,
766
+ "grad_norm": 0.00160980224609375,
767
+ "learning_rate": 0.00010975609756097563,
768
+ "loss": 0.0002087215252686292,
769
+ "mean_token_accuracy": 1.0,
770
+ "num_tokens": 368871.0,
771
+ "step": 75
772
+ },
773
+ {
774
+ "entropy": 0.3798025632277131,
775
+ "epoch": 0.9310872894333844,
776
+ "grad_norm": 0.0242919921875,
777
+ "learning_rate": 0.00010853658536585367,
778
+ "loss": 0.0011810146970674396,
779
+ "mean_token_accuracy": 0.999143835157156,
780
+ "num_tokens": 373671.0,
781
+ "step": 76
782
+ },
783
+ {
784
+ "entropy": 0.3385667558759451,
785
+ "epoch": 0.9433384379785605,
786
+ "grad_norm": 0.00164031982421875,
787
+ "learning_rate": 0.00010731707317073172,
788
+ "loss": 0.00021391667542047799,
789
+ "mean_token_accuracy": 1.0,
790
+ "num_tokens": 379038.0,
791
+ "step": 77
792
+ },
793
+ {
794
+ "entropy": 0.37137152813374996,
795
+ "epoch": 0.9555895865237366,
796
+ "grad_norm": 0.0194091796875,
797
+ "learning_rate": 0.00010609756097560977,
798
+ "loss": 0.0009015509858727455,
799
+ "mean_token_accuracy": 0.9992977529764175,
800
+ "num_tokens": 384253.0,
801
+ "step": 78
802
+ },
803
+ {
804
+ "entropy": 0.35634181648492813,
805
+ "epoch": 0.9678407350689127,
806
+ "grad_norm": 0.002349853515625,
807
+ "learning_rate": 0.00010487804878048781,
808
+ "loss": 0.0003007323248311877,
809
+ "mean_token_accuracy": 1.0,
810
+ "num_tokens": 388348.0,
811
+ "step": 79
812
+ },
813
+ {
814
+ "entropy": 0.3363165808841586,
815
+ "epoch": 0.9800918836140888,
816
+ "grad_norm": 0.013916015625,
817
+ "learning_rate": 0.00010365853658536586,
818
+ "loss": 0.0015124119818210602,
819
+ "mean_token_accuracy": 0.999507874250412,
820
+ "num_tokens": 394214.0,
821
+ "step": 80
822
+ },
823
+ {
824
+ "entropy": 0.34769035689532757,
825
+ "epoch": 0.9923430321592649,
826
+ "grad_norm": 0.0264892578125,
827
+ "learning_rate": 0.0001024390243902439,
828
+ "loss": 0.0008837911300361156,
829
+ "mean_token_accuracy": 0.9992187507450581,
830
+ "num_tokens": 399114.0,
831
+ "step": 81
832
+ },
833
+ {
834
+ "entropy": 0.34723484665155413,
835
+ "epoch": 1.0,
836
+ "grad_norm": 0.002288818359375,
837
+ "learning_rate": 0.00010121951219512196,
838
+ "loss": 0.0002318796032341197,
839
+ "mean_token_accuracy": 1.0,
840
+ "num_tokens": 402130.0,
841
+ "step": 82
842
+ },
843
+ {
844
+ "entropy": 0.3677198924124241,
845
+ "epoch": 1.0122511485451762,
846
+ "grad_norm": 0.03173828125,
847
+ "learning_rate": 0.0001,
848
+ "loss": 0.0028767124749720097,
849
+ "mean_token_accuracy": 0.9997509978711605,
850
+ "num_tokens": 406761.0,
851
+ "step": 83
852
+ },
853
+ {
854
+ "entropy": 0.3296260507777333,
855
+ "epoch": 1.0245022970903521,
856
+ "grad_norm": 0.0016326904296875,
857
+ "learning_rate": 9.878048780487805e-05,
858
+ "loss": 0.00020801745995413512,
859
+ "mean_token_accuracy": 1.0,
860
+ "num_tokens": 411367.0,
861
+ "step": 84
862
+ },
863
+ {
864
+ "entropy": 0.36815651040524244,
865
+ "epoch": 1.0367534456355283,
866
+ "grad_norm": 0.00299072265625,
867
+ "learning_rate": 9.75609756097561e-05,
868
+ "loss": 0.00034169916762039065,
869
+ "mean_token_accuracy": 1.0,
870
+ "num_tokens": 417768.0,
871
+ "step": 85
872
+ },
873
+ {
874
+ "entropy": 0.33015719801187515,
875
+ "epoch": 1.0490045941807045,
876
+ "grad_norm": 0.0019683837890625,
877
+ "learning_rate": 9.634146341463415e-05,
878
+ "loss": 0.0002285851223859936,
879
+ "mean_token_accuracy": 1.0,
880
+ "num_tokens": 421738.0,
881
+ "step": 86
882
+ },
883
+ {
884
+ "entropy": 0.33297139778733253,
885
+ "epoch": 1.0612557427258806,
886
+ "grad_norm": 0.0003604888916015625,
887
+ "learning_rate": 9.51219512195122e-05,
888
+ "loss": 0.00012145948858233169,
889
+ "mean_token_accuracy": 1.0,
890
+ "num_tokens": 426854.0,
891
+ "step": 87
892
+ },
893
+ {
894
+ "entropy": 0.4070947393774986,
895
+ "epoch": 1.0735068912710566,
896
+ "grad_norm": 0.017333984375,
897
+ "learning_rate": 9.390243902439024e-05,
898
+ "loss": 0.0016109611606225371,
899
+ "mean_token_accuracy": 0.9998486675322056,
900
+ "num_tokens": 431083.0,
901
+ "step": 88
902
+ },
903
+ {
904
+ "entropy": 0.3781026881188154,
905
+ "epoch": 1.0857580398162328,
906
+ "grad_norm": 0.038818359375,
907
+ "learning_rate": 9.26829268292683e-05,
908
+ "loss": 0.003159651067107916,
909
+ "mean_token_accuracy": 0.9989801794290543,
910
+ "num_tokens": 435694.0,
911
+ "step": 89
912
+ },
913
+ {
914
+ "entropy": 0.3439221568405628,
915
+ "epoch": 1.098009188361409,
916
+ "grad_norm": 0.000949859619140625,
917
+ "learning_rate": 9.146341463414635e-05,
918
+ "loss": 0.00018103225738741457,
919
+ "mean_token_accuracy": 1.0,
920
+ "num_tokens": 440578.0,
921
+ "step": 90
922
+ },
923
+ {
924
+ "entropy": 0.38779534585773945,
925
+ "epoch": 1.110260336906585,
926
+ "grad_norm": 0.0142822265625,
927
+ "learning_rate": 9.02439024390244e-05,
928
+ "loss": 0.002015941310673952,
929
+ "mean_token_accuracy": 0.9984939768910408,
930
+ "num_tokens": 445238.0,
931
+ "step": 91
932
+ },
933
+ {
934
+ "entropy": 0.3697750475257635,
935
+ "epoch": 1.122511485451761,
936
+ "grad_norm": 0.08642578125,
937
+ "learning_rate": 8.902439024390244e-05,
938
+ "loss": 0.006127167027443647,
939
+ "mean_token_accuracy": 0.9989957921206951,
940
+ "num_tokens": 449993.0,
941
+ "step": 92
942
+ },
943
+ {
944
+ "entropy": 0.34917816519737244,
945
+ "epoch": 1.1347626339969372,
946
+ "grad_norm": 0.0037384033203125,
947
+ "learning_rate": 8.78048780487805e-05,
948
+ "loss": 0.00024314325128216296,
949
+ "mean_token_accuracy": 1.0,
950
+ "num_tokens": 454976.0,
951
+ "step": 93
952
+ },
953
+ {
954
+ "entropy": 0.3524725306779146,
955
+ "epoch": 1.1470137825421134,
956
+ "grad_norm": 0.00104522705078125,
957
+ "learning_rate": 8.658536585365854e-05,
958
+ "loss": 0.00014462518447544426,
959
+ "mean_token_accuracy": 1.0,
960
+ "num_tokens": 459671.0,
961
+ "step": 94
962
+ },
963
+ {
964
+ "entropy": 0.3524913527071476,
965
+ "epoch": 1.1592649310872893,
966
+ "grad_norm": 0.000782012939453125,
967
+ "learning_rate": 8.53658536585366e-05,
968
+ "loss": 0.0001363266637781635,
969
+ "mean_token_accuracy": 1.0,
970
+ "num_tokens": 464310.0,
971
+ "step": 95
972
+ },
973
+ {
974
+ "entropy": 0.33474782202392817,
975
+ "epoch": 1.1715160796324655,
976
+ "grad_norm": 0.05615234375,
977
+ "learning_rate": 8.414634146341464e-05,
978
+ "loss": 0.006995758973062038,
979
+ "mean_token_accuracy": 0.997385773807764,
980
+ "num_tokens": 468855.0,
981
+ "step": 96
982
+ },
983
+ {
984
+ "entropy": 0.34024662896990776,
985
+ "epoch": 1.1837672281776417,
986
+ "grad_norm": 0.000762939453125,
987
+ "learning_rate": 8.292682926829268e-05,
988
+ "loss": 0.00012206919927848503,
989
+ "mean_token_accuracy": 1.0,
990
+ "num_tokens": 473729.0,
991
+ "step": 97
992
+ },
993
+ {
994
+ "entropy": 0.35474758967757225,
995
+ "epoch": 1.1960183767228179,
996
+ "grad_norm": 0.032958984375,
997
+ "learning_rate": 8.170731707317073e-05,
998
+ "loss": 0.0028819667641073465,
999
+ "mean_token_accuracy": 0.9993131868541241,
1000
+ "num_tokens": 479034.0,
1001
+ "step": 98
1002
+ },
1003
+ {
1004
+ "entropy": 0.3854726795107126,
1005
+ "epoch": 1.2082695252679938,
1006
+ "grad_norm": 0.00046539306640625,
1007
+ "learning_rate": 8.048780487804879e-05,
1008
+ "loss": 9.724850679049268e-05,
1009
+ "mean_token_accuracy": 1.0,
1010
+ "num_tokens": 484808.0,
1011
+ "step": 99
1012
+ },
1013
+ {
1014
+ "entropy": 0.31455889251083136,
1015
+ "epoch": 1.22052067381317,
1016
+ "grad_norm": 0.00958251953125,
1017
+ "learning_rate": 7.926829268292683e-05,
1018
+ "loss": 0.0009833230869844556,
1019
+ "mean_token_accuracy": 1.0,
1020
+ "num_tokens": 489519.0,
1021
+ "step": 100
1022
+ },
1023
+ {
1024
+ "epoch": 1.22052067381317,
1025
+ "eval_entropy": 0.3496412036643512,
1026
+ "eval_loss": 0.0005010219174437225,
1027
+ "eval_mean_token_accuracy": 0.9998490343923154,
1028
+ "eval_num_tokens": 489519.0,
1029
+ "eval_runtime": 51.1698,
1030
+ "eval_samples_per_second": 1.348,
1031
+ "eval_steps_per_second": 1.348,
1032
+ "step": 100
1033
+ },
1034
+ {
1035
+ "entropy": 0.36140021588653326,
1036
+ "epoch": 1.2327718223583461,
1037
+ "grad_norm": 0.0006256103515625,
1038
+ "learning_rate": 7.804878048780489e-05,
1039
+ "loss": 0.00011641360470093787,
1040
+ "mean_token_accuracy": 1.0,
1041
+ "num_tokens": 494754.0,
1042
+ "step": 101
1043
+ },
1044
+ {
1045
+ "entropy": 0.33879768289625645,
1046
+ "epoch": 1.245022970903522,
1047
+ "grad_norm": 0.00037384033203125,
1048
+ "learning_rate": 7.682926829268293e-05,
1049
+ "loss": 0.00010185636347159743,
1050
+ "mean_token_accuracy": 1.0,
1051
+ "num_tokens": 499834.0,
1052
+ "step": 102
1053
+ },
1054
+ {
1055
+ "entropy": 0.36160764284431934,
1056
+ "epoch": 1.2572741194486983,
1057
+ "grad_norm": 0.00103759765625,
1058
+ "learning_rate": 7.560975609756099e-05,
1059
+ "loss": 0.00012021363363601267,
1060
+ "mean_token_accuracy": 1.0,
1061
+ "num_tokens": 505264.0,
1062
+ "step": 103
1063
+ },
1064
+ {
1065
+ "entropy": 0.3344170628115535,
1066
+ "epoch": 1.2695252679938744,
1067
+ "grad_norm": 0.06787109375,
1068
+ "learning_rate": 7.439024390243903e-05,
1069
+ "loss": 0.00044063289533369243,
1070
+ "mean_token_accuracy": 0.9995915032923222,
1071
+ "num_tokens": 510257.0,
1072
+ "step": 104
1073
+ },
1074
+ {
1075
+ "entropy": 0.36058457661420107,
1076
+ "epoch": 1.2817764165390506,
1077
+ "grad_norm": 0.01336669921875,
1078
+ "learning_rate": 7.317073170731707e-05,
1079
+ "loss": 0.0015127016231417656,
1080
+ "mean_token_accuracy": 0.9993556700646877,
1081
+ "num_tokens": 514490.0,
1082
+ "step": 105
1083
+ },
1084
+ {
1085
+ "entropy": 0.33314079977571964,
1086
+ "epoch": 1.2940275650842268,
1087
+ "grad_norm": 0.0011749267578125,
1088
+ "learning_rate": 7.195121951219513e-05,
1089
+ "loss": 0.00011071039625676349,
1090
+ "mean_token_accuracy": 1.0,
1091
+ "num_tokens": 519508.0,
1092
+ "step": 106
1093
+ },
1094
+ {
1095
+ "entropy": 0.3573821699246764,
1096
+ "epoch": 1.3062787136294027,
1097
+ "grad_norm": 0.0003986358642578125,
1098
+ "learning_rate": 7.073170731707317e-05,
1099
+ "loss": 0.00011713722778949887,
1100
+ "mean_token_accuracy": 1.0,
1101
+ "num_tokens": 524370.0,
1102
+ "step": 107
1103
+ },
1104
+ {
1105
+ "entropy": 0.3524222169071436,
1106
+ "epoch": 1.318529862174579,
1107
+ "grad_norm": 0.0003108978271484375,
1108
+ "learning_rate": 6.951219512195122e-05,
1109
+ "loss": 9.721294190967456e-05,
1110
+ "mean_token_accuracy": 1.0,
1111
+ "num_tokens": 528970.0,
1112
+ "step": 108
1113
+ },
1114
+ {
1115
+ "entropy": 0.3544369339942932,
1116
+ "epoch": 1.3307810107197549,
1117
+ "grad_norm": 0.005950927734375,
1118
+ "learning_rate": 6.829268292682928e-05,
1119
+ "loss": 0.0003032644744962454,
1120
+ "mean_token_accuracy": 1.0,
1121
+ "num_tokens": 533938.0,
1122
+ "step": 109
1123
+ },
1124
+ {
1125
+ "entropy": 0.3304135613143444,
1126
+ "epoch": 1.343032159264931,
1127
+ "grad_norm": 0.000965118408203125,
1128
+ "learning_rate": 6.707317073170732e-05,
1129
+ "loss": 0.00012454115494620055,
1130
+ "mean_token_accuracy": 1.0,
1131
+ "num_tokens": 539360.0,
1132
+ "step": 110
1133
+ },
1134
+ {
1135
+ "entropy": 0.3306180518120527,
1136
+ "epoch": 1.3552833078101072,
1137
+ "grad_norm": 0.0011444091796875,
1138
+ "learning_rate": 6.585365853658538e-05,
1139
+ "loss": 0.00013282139843795449,
1140
+ "mean_token_accuracy": 1.0,
1141
+ "num_tokens": 543728.0,
1142
+ "step": 111
1143
+ },
1144
+ {
1145
+ "entropy": 0.3708817586302757,
1146
+ "epoch": 1.3675344563552834,
1147
+ "grad_norm": 0.0218505859375,
1148
+ "learning_rate": 6.463414634146342e-05,
1149
+ "loss": 0.004361060913652182,
1150
+ "mean_token_accuracy": 0.9983282573521137,
1151
+ "num_tokens": 548161.0,
1152
+ "step": 112
1153
+ },
1154
+ {
1155
+ "entropy": 0.35475645773112774,
1156
+ "epoch": 1.3797856049004595,
1157
+ "grad_norm": 0.01361083984375,
1158
+ "learning_rate": 6.341463414634146e-05,
1159
+ "loss": 0.0014049941673874855,
1160
+ "mean_token_accuracy": 0.998511902987957,
1161
+ "num_tokens": 553690.0,
1162
+ "step": 113
1163
+ },
1164
+ {
1165
+ "entropy": 0.3360502114519477,
1166
+ "epoch": 1.3920367534456355,
1167
+ "grad_norm": 0.00023746490478515625,
1168
+ "learning_rate": 6.219512195121952e-05,
1169
+ "loss": 8.739449549466372e-05,
1170
+ "mean_token_accuracy": 1.0,
1171
+ "num_tokens": 558474.0,
1172
+ "step": 114
1173
+ },
1174
+ {
1175
+ "entropy": 0.35608484130352736,
1176
+ "epoch": 1.4042879019908117,
1177
+ "grad_norm": 0.0009765625,
1178
+ "learning_rate": 6.097560975609756e-05,
1179
+ "loss": 0.00013572419993579388,
1180
+ "mean_token_accuracy": 1.0,
1181
+ "num_tokens": 563962.0,
1182
+ "step": 115
1183
+ },
1184
+ {
1185
+ "entropy": 0.3591584851965308,
1186
+ "epoch": 1.4165390505359878,
1187
+ "grad_norm": 0.00103759765625,
1188
+ "learning_rate": 5.975609756097561e-05,
1189
+ "loss": 0.0001251319336006418,
1190
+ "mean_token_accuracy": 1.0,
1191
+ "num_tokens": 568300.0,
1192
+ "step": 116
1193
+ },
1194
+ {
1195
+ "entropy": 0.32333058025687933,
1196
+ "epoch": 1.4287901990811638,
1197
+ "grad_norm": 0.0002803802490234375,
1198
+ "learning_rate": 5.853658536585366e-05,
1199
+ "loss": 8.771298598730937e-05,
1200
+ "mean_token_accuracy": 1.0,
1201
+ "num_tokens": 572892.0,
1202
+ "step": 117
1203
+ },
1204
+ {
1205
+ "entropy": 0.3675775118172169,
1206
+ "epoch": 1.44104134762634,
1207
+ "grad_norm": 0.0014495849609375,
1208
+ "learning_rate": 5.731707317073171e-05,
1209
+ "loss": 0.00014175268006511033,
1210
+ "mean_token_accuracy": 1.0,
1211
+ "num_tokens": 577889.0,
1212
+ "step": 118
1213
+ },
1214
+ {
1215
+ "entropy": 0.37294205371290445,
1216
+ "epoch": 1.4532924961715161,
1217
+ "grad_norm": 0.00099945068359375,
1218
+ "learning_rate": 5.6097560975609764e-05,
1219
+ "loss": 8.949499897425994e-05,
1220
+ "mean_token_accuracy": 1.0,
1221
+ "num_tokens": 583125.0,
1222
+ "step": 119
1223
+ },
1224
+ {
1225
+ "entropy": 0.3598701385781169,
1226
+ "epoch": 1.4655436447166923,
1227
+ "grad_norm": 0.006011962890625,
1228
+ "learning_rate": 5.487804878048781e-05,
1229
+ "loss": 0.00018555490532889962,
1230
+ "mean_token_accuracy": 1.0,
1231
+ "num_tokens": 587853.0,
1232
+ "step": 120
1233
+ },
1234
+ {
1235
+ "entropy": 0.3222861588001251,
1236
+ "epoch": 1.4777947932618682,
1237
+ "grad_norm": 0.0174560546875,
1238
+ "learning_rate": 5.365853658536586e-05,
1239
+ "loss": 0.0032859183847904205,
1240
+ "mean_token_accuracy": 0.9993932023644447,
1241
+ "num_tokens": 592286.0,
1242
+ "step": 121
1243
+ },
1244
+ {
1245
+ "entropy": 0.3423085901886225,
1246
+ "epoch": 1.4900459418070444,
1247
+ "grad_norm": 0.000354766845703125,
1248
+ "learning_rate": 5.2439024390243904e-05,
1249
+ "loss": 9.40198588068597e-05,
1250
+ "mean_token_accuracy": 1.0,
1251
+ "num_tokens": 597048.0,
1252
+ "step": 122
1253
+ },
1254
+ {
1255
+ "entropy": 0.3356657065451145,
1256
+ "epoch": 1.5022970903522204,
1257
+ "grad_norm": 0.00177764892578125,
1258
+ "learning_rate": 5.121951219512195e-05,
1259
+ "loss": 0.00018200451449956745,
1260
+ "mean_token_accuracy": 1.0,
1261
+ "num_tokens": 601352.0,
1262
+ "step": 123
1263
+ },
1264
+ {
1265
+ "entropy": 0.34760472923517227,
1266
+ "epoch": 1.5145482388973965,
1267
+ "grad_norm": 0.11181640625,
1268
+ "learning_rate": 5e-05,
1269
+ "loss": 0.0016977301565930247,
1270
+ "mean_token_accuracy": 0.9993686862289906,
1271
+ "num_tokens": 606645.0,
1272
+ "step": 124
1273
+ },
1274
+ {
1275
+ "entropy": 0.34292006585747004,
1276
+ "epoch": 1.5267993874425727,
1277
+ "grad_norm": 0.00048828125,
1278
+ "learning_rate": 4.878048780487805e-05,
1279
+ "loss": 0.00011081612319685519,
1280
+ "mean_token_accuracy": 1.0,
1281
+ "num_tokens": 612407.0,
1282
+ "step": 125
1283
+ },
1284
+ {
1285
+ "entropy": 0.3405891256406903,
1286
+ "epoch": 1.5390505359877489,
1287
+ "grad_norm": 0.0098876953125,
1288
+ "learning_rate": 4.75609756097561e-05,
1289
+ "loss": 0.0002546444011386484,
1290
+ "mean_token_accuracy": 1.0,
1291
+ "num_tokens": 617229.0,
1292
+ "step": 126
1293
+ },
1294
+ {
1295
+ "entropy": 0.39804220758378506,
1296
+ "epoch": 1.551301684532925,
1297
+ "grad_norm": 0.00177001953125,
1298
+ "learning_rate": 4.634146341463415e-05,
1299
+ "loss": 0.00020191296061966568,
1300
+ "mean_token_accuracy": 1.0,
1301
+ "num_tokens": 622355.0,
1302
+ "step": 127
1303
+ },
1304
+ {
1305
+ "entropy": 0.38183566741645336,
1306
+ "epoch": 1.5635528330781012,
1307
+ "grad_norm": 0.0020294189453125,
1308
+ "learning_rate": 4.51219512195122e-05,
1309
+ "loss": 0.0002027210284722969,
1310
+ "mean_token_accuracy": 1.0,
1311
+ "num_tokens": 627269.0,
1312
+ "step": 128
1313
+ },
1314
+ {
1315
+ "entropy": 0.32283751480281353,
1316
+ "epoch": 1.5758039816232772,
1317
+ "grad_norm": 0.054443359375,
1318
+ "learning_rate": 4.390243902439025e-05,
1319
+ "loss": 0.0007472627912648022,
1320
+ "mean_token_accuracy": 0.9991987161338329,
1321
+ "num_tokens": 631454.0,
1322
+ "step": 129
1323
+ },
1324
+ {
1325
+ "entropy": 0.31161691434681416,
1326
+ "epoch": 1.5880551301684533,
1327
+ "grad_norm": 0.00174713134765625,
1328
+ "learning_rate": 4.26829268292683e-05,
1329
+ "loss": 0.0001439937186660245,
1330
+ "mean_token_accuracy": 1.0,
1331
+ "num_tokens": 636502.0,
1332
+ "step": 130
1333
+ },
1334
+ {
1335
+ "entropy": 0.3435830660164356,
1336
+ "epoch": 1.6003062787136293,
1337
+ "grad_norm": 0.0308837890625,
1338
+ "learning_rate": 4.146341463414634e-05,
1339
+ "loss": 0.004759644623845816,
1340
+ "mean_token_accuracy": 0.9986401423811913,
1341
+ "num_tokens": 641264.0,
1342
+ "step": 131
1343
+ },
1344
+ {
1345
+ "entropy": 0.35103026777505875,
1346
+ "epoch": 1.6125574272588055,
1347
+ "grad_norm": 0.014404296875,
1348
+ "learning_rate": 4.0243902439024395e-05,
1349
+ "loss": 0.002162080956622958,
1350
+ "mean_token_accuracy": 0.9997351691126823,
1351
+ "num_tokens": 646377.0,
1352
+ "step": 132
1353
+ },
1354
+ {
1355
+ "entropy": 0.2977801924571395,
1356
+ "epoch": 1.6248085758039816,
1357
+ "grad_norm": 0.0003948211669921875,
1358
+ "learning_rate": 3.9024390243902444e-05,
1359
+ "loss": 0.00010242296411888674,
1360
+ "mean_token_accuracy": 1.0,
1361
+ "num_tokens": 650767.0,
1362
+ "step": 133
1363
+ },
1364
+ {
1365
+ "entropy": 0.3230333384126425,
1366
+ "epoch": 1.6370597243491578,
1367
+ "grad_norm": 0.00138092041015625,
1368
+ "learning_rate": 3.780487804878049e-05,
1369
+ "loss": 0.00015076796989887953,
1370
+ "mean_token_accuracy": 1.0,
1371
+ "num_tokens": 655169.0,
1372
+ "step": 134
1373
+ },
1374
+ {
1375
+ "entropy": 0.341650640591979,
1376
+ "epoch": 1.649310872894334,
1377
+ "grad_norm": 0.000942230224609375,
1378
+ "learning_rate": 3.6585365853658535e-05,
1379
+ "loss": 0.00014208458014763892,
1380
+ "mean_token_accuracy": 1.0,
1381
+ "num_tokens": 660290.0,
1382
+ "step": 135
1383
+ },
1384
+ {
1385
+ "entropy": 0.3829786740243435,
1386
+ "epoch": 1.66156202143951,
1387
+ "grad_norm": 0.00069427490234375,
1388
+ "learning_rate": 3.5365853658536584e-05,
1389
+ "loss": 0.00014442864630836993,
1390
+ "mean_token_accuracy": 1.0,
1391
+ "num_tokens": 664473.0,
1392
+ "step": 136
1393
+ },
1394
+ {
1395
+ "entropy": 0.36254822462797165,
1396
+ "epoch": 1.673813169984686,
1397
+ "grad_norm": 0.000873565673828125,
1398
+ "learning_rate": 3.414634146341464e-05,
1399
+ "loss": 0.00012407865142449737,
1400
+ "mean_token_accuracy": 1.0,
1401
+ "num_tokens": 669356.0,
1402
+ "step": 137
1403
+ },
1404
+ {
1405
+ "entropy": 0.3526885788887739,
1406
+ "epoch": 1.686064318529862,
1407
+ "grad_norm": 0.01544189453125,
1408
+ "learning_rate": 3.292682926829269e-05,
1409
+ "loss": 0.0013645780272781849,
1410
+ "mean_token_accuracy": 1.0,
1411
+ "num_tokens": 674911.0,
1412
+ "step": 138
1413
+ },
1414
+ {
1415
+ "entropy": 0.3426882065832615,
1416
+ "epoch": 1.6983154670750382,
1417
+ "grad_norm": 0.00136566162109375,
1418
+ "learning_rate": 3.170731707317073e-05,
1419
+ "loss": 0.00017942595877684653,
1420
+ "mean_token_accuracy": 1.0,
1421
+ "num_tokens": 679692.0,
1422
+ "step": 139
1423
+ },
1424
+ {
1425
+ "entropy": 0.36831479519605637,
1426
+ "epoch": 1.7105666156202144,
1427
+ "grad_norm": 0.01104736328125,
1428
+ "learning_rate": 3.048780487804878e-05,
1429
+ "loss": 0.00024098601716104895,
1430
+ "mean_token_accuracy": 1.0,
1431
+ "num_tokens": 685048.0,
1432
+ "step": 140
1433
+ },
1434
+ {
1435
+ "entropy": 0.3340944442898035,
1436
+ "epoch": 1.7228177641653906,
1437
+ "grad_norm": 0.000865936279296875,
1438
+ "learning_rate": 2.926829268292683e-05,
1439
+ "loss": 0.00013921498612035066,
1440
+ "mean_token_accuracy": 1.0,
1441
+ "num_tokens": 689396.0,
1442
+ "step": 141
1443
+ },
1444
+ {
1445
+ "entropy": 0.34801830537617207,
1446
+ "epoch": 1.7350689127105667,
1447
+ "grad_norm": 0.000965118408203125,
1448
+ "learning_rate": 2.8048780487804882e-05,
1449
+ "loss": 0.0001655905944062397,
1450
+ "mean_token_accuracy": 1.0,
1451
+ "num_tokens": 693189.0,
1452
+ "step": 142
1453
+ },
1454
+ {
1455
+ "entropy": 0.35556044429540634,
1456
+ "epoch": 1.7473200612557427,
1457
+ "grad_norm": 0.0019073486328125,
1458
+ "learning_rate": 2.682926829268293e-05,
1459
+ "loss": 0.00019044376676902175,
1460
+ "mean_token_accuracy": 1.0,
1461
+ "num_tokens": 697603.0,
1462
+ "step": 143
1463
+ },
1464
+ {
1465
+ "entropy": 0.3632572125643492,
1466
+ "epoch": 1.7595712098009189,
1467
+ "grad_norm": 0.00106048583984375,
1468
+ "learning_rate": 2.5609756097560977e-05,
1469
+ "loss": 0.00017029076116159558,
1470
+ "mean_token_accuracy": 1.0,
1471
+ "num_tokens": 703050.0,
1472
+ "step": 144
1473
+ },
1474
+ {
1475
+ "entropy": 0.35750158317387104,
1476
+ "epoch": 1.7718223583460948,
1477
+ "grad_norm": 0.0130615234375,
1478
+ "learning_rate": 2.4390243902439026e-05,
1479
+ "loss": 0.0015582278138026595,
1480
+ "mean_token_accuracy": 0.999015748500824,
1481
+ "num_tokens": 707862.0,
1482
+ "step": 145
1483
+ },
1484
+ {
1485
+ "entropy": 0.36597106605768204,
1486
+ "epoch": 1.784073506891271,
1487
+ "grad_norm": 0.000583648681640625,
1488
+ "learning_rate": 2.3170731707317075e-05,
1489
+ "loss": 0.00013483221118804067,
1490
+ "mean_token_accuracy": 1.0,
1491
+ "num_tokens": 712821.0,
1492
+ "step": 146
1493
+ },
1494
+ {
1495
+ "entropy": 0.35171396005898714,
1496
+ "epoch": 1.7963246554364471,
1497
+ "grad_norm": 0.00157928466796875,
1498
+ "learning_rate": 2.1951219512195124e-05,
1499
+ "loss": 0.00012708510621450841,
1500
+ "mean_token_accuracy": 1.0,
1501
+ "num_tokens": 718453.0,
1502
+ "step": 147
1503
+ },
1504
+ {
1505
+ "entropy": 0.3596025314182043,
1506
+ "epoch": 1.8085758039816233,
1507
+ "grad_norm": 0.000762939453125,
1508
+ "learning_rate": 2.073170731707317e-05,
1509
+ "loss": 0.00011665250349324197,
1510
+ "mean_token_accuracy": 1.0,
1511
+ "num_tokens": 723810.0,
1512
+ "step": 148
1513
+ },
1514
+ {
1515
+ "entropy": 0.3876404408365488,
1516
+ "epoch": 1.8208269525267995,
1517
+ "grad_norm": 0.00170135498046875,
1518
+ "learning_rate": 1.9512195121951222e-05,
1519
+ "loss": 0.00014468679728452116,
1520
+ "mean_token_accuracy": 1.0,
1521
+ "num_tokens": 728126.0,
1522
+ "step": 149
1523
+ },
1524
+ {
1525
+ "entropy": 0.3599753547459841,
1526
+ "epoch": 1.8330781010719757,
1527
+ "grad_norm": 0.00982666015625,
1528
+ "learning_rate": 1.8292682926829268e-05,
1529
+ "loss": 0.0008729367982596159,
1530
+ "mean_token_accuracy": 0.9996936284005642,
1531
+ "num_tokens": 733917.0,
1532
+ "step": 150
1533
+ },
1534
+ {
1535
+ "epoch": 1.8330781010719757,
1536
+ "eval_entropy": 0.3504998228256253,
1537
+ "eval_loss": 0.0005272864946164191,
1538
+ "eval_mean_token_accuracy": 0.9998166846192401,
1539
+ "eval_num_tokens": 733917.0,
1540
+ "eval_runtime": 51.0847,
1541
+ "eval_samples_per_second": 1.351,
1542
+ "eval_steps_per_second": 1.351,
1543
+ "step": 150
1544
+ },
1545
+ {
1546
+ "entropy": 0.33359322790056467,
1547
+ "epoch": 1.8453292496171516,
1548
+ "grad_norm": 0.025146484375,
1549
+ "learning_rate": 1.707317073170732e-05,
1550
+ "loss": 0.0006189637933857739,
1551
+ "mean_token_accuracy": 0.9997438527643681,
1552
+ "num_tokens": 738160.0,
1553
+ "step": 151
1554
+ },
1555
+ {
1556
+ "entropy": 0.3766339849680662,
1557
+ "epoch": 1.8575803981623276,
1558
+ "grad_norm": 0.00141143798828125,
1559
+ "learning_rate": 1.5853658536585366e-05,
1560
+ "loss": 0.0001552235771669075,
1561
+ "mean_token_accuracy": 1.0,
1562
+ "num_tokens": 743916.0,
1563
+ "step": 152
1564
+ },
1565
+ {
1566
+ "entropy": 0.3593102600425482,
1567
+ "epoch": 1.8698315467075037,
1568
+ "grad_norm": 0.0005035400390625,
1569
+ "learning_rate": 1.4634146341463415e-05,
1570
+ "loss": 0.00010784749611048028,
1571
+ "mean_token_accuracy": 1.0,
1572
+ "num_tokens": 749557.0,
1573
+ "step": 153
1574
+ },
1575
+ {
1576
+ "entropy": 0.35354321263730526,
1577
+ "epoch": 1.88208269525268,
1578
+ "grad_norm": 0.006622314453125,
1579
+ "learning_rate": 1.3414634146341466e-05,
1580
+ "loss": 0.00018536817515268922,
1581
+ "mean_token_accuracy": 1.0,
1582
+ "num_tokens": 755349.0,
1583
+ "step": 154
1584
+ },
1585
+ {
1586
+ "entropy": 0.38418914191424847,
1587
+ "epoch": 1.894333843797856,
1588
+ "grad_norm": 0.0048828125,
1589
+ "learning_rate": 1.2195121951219513e-05,
1590
+ "loss": 0.00016054415027610958,
1591
+ "mean_token_accuracy": 1.0,
1592
+ "num_tokens": 760507.0,
1593
+ "step": 155
1594
+ },
1595
+ {
1596
+ "entropy": 0.36554452031850815,
1597
+ "epoch": 1.9065849923430322,
1598
+ "grad_norm": 0.000640869140625,
1599
+ "learning_rate": 1.0975609756097562e-05,
1600
+ "loss": 0.0001385942887281999,
1601
+ "mean_token_accuracy": 1.0,
1602
+ "num_tokens": 765415.0,
1603
+ "step": 156
1604
+ },
1605
+ {
1606
+ "entropy": 0.3568859798833728,
1607
+ "epoch": 1.9188361408882084,
1608
+ "grad_norm": 0.005401611328125,
1609
+ "learning_rate": 9.756097560975611e-06,
1610
+ "loss": 0.00035842141369357705,
1611
+ "mean_token_accuracy": 1.0,
1612
+ "num_tokens": 770652.0,
1613
+ "step": 157
1614
+ },
1615
+ {
1616
+ "entropy": 0.3693056581541896,
1617
+ "epoch": 1.9310872894333844,
1618
+ "grad_norm": 0.0006561279296875,
1619
+ "learning_rate": 8.53658536585366e-06,
1620
+ "loss": 0.00012641935609281063,
1621
+ "mean_token_accuracy": 1.0,
1622
+ "num_tokens": 775652.0,
1623
+ "step": 158
1624
+ },
1625
+ {
1626
+ "entropy": 0.3441598182544112,
1627
+ "epoch": 1.9433384379785605,
1628
+ "grad_norm": 0.0030364990234375,
1629
+ "learning_rate": 7.317073170731707e-06,
1630
+ "loss": 0.00021011351782362908,
1631
+ "mean_token_accuracy": 1.0,
1632
+ "num_tokens": 779850.0,
1633
+ "step": 159
1634
+ },
1635
+ {
1636
+ "entropy": 0.3504209266975522,
1637
+ "epoch": 1.9555895865237365,
1638
+ "grad_norm": 0.0021514892578125,
1639
+ "learning_rate": 6.0975609756097564e-06,
1640
+ "loss": 0.0001835815783124417,
1641
+ "mean_token_accuracy": 1.0,
1642
+ "num_tokens": 784524.0,
1643
+ "step": 160
1644
+ },
1645
+ {
1646
+ "entropy": 0.3750592265278101,
1647
+ "epoch": 1.9678407350689127,
1648
+ "grad_norm": 0.000492095947265625,
1649
+ "learning_rate": 4.8780487804878055e-06,
1650
+ "loss": 0.00013111173757351935,
1651
+ "mean_token_accuracy": 1.0,
1652
+ "num_tokens": 790219.0,
1653
+ "step": 161
1654
+ },
1655
+ {
1656
+ "entropy": 0.35673493705689907,
1657
+ "epoch": 1.9800918836140888,
1658
+ "grad_norm": 0.003204345703125,
1659
+ "learning_rate": 3.6585365853658537e-06,
1660
+ "loss": 0.00022010535758454353,
1661
+ "mean_token_accuracy": 1.0,
1662
+ "num_tokens": 794984.0,
1663
+ "step": 162
1664
+ },
1665
+ {
1666
+ "entropy": 0.3832458099350333,
1667
+ "epoch": 1.992343032159265,
1668
+ "grad_norm": 0.00061798095703125,
1669
+ "learning_rate": 2.4390243902439027e-06,
1670
+ "loss": 0.00012069179501850158,
1671
+ "mean_token_accuracy": 1.0,
1672
+ "num_tokens": 800604.0,
1673
+ "step": 163
1674
+ },
1675
+ {
1676
+ "entropy": 0.37493912875652313,
1677
+ "epoch": 2.0,
1678
+ "grad_norm": 0.023193359375,
1679
+ "learning_rate": 1.2195121951219514e-06,
1680
+ "loss": 0.002225137548521161,
1681
+ "mean_token_accuracy": 0.999763035774231,
1682
+ "num_tokens": 804260.0,
1683
+ "step": 164
1684
+ }
1685
+ ],
1686
+ "logging_steps": 1,
1687
+ "max_steps": 164,
1688
+ "num_input_tokens_seen": 0,
1689
+ "num_train_epochs": 2,
1690
+ "save_steps": 50,
1691
+ "stateful_callbacks": {
1692
+ "TrainerControl": {
1693
+ "args": {
1694
+ "should_epoch_stop": false,
1695
+ "should_evaluate": false,
1696
+ "should_log": false,
1697
+ "should_save": true,
1698
+ "should_training_stop": true
1699
+ },
1700
+ "attributes": {}
1701
+ }
1702
+ },
1703
+ "total_flos": 3.641786295631872e+16,
1704
+ "train_batch_size": 1,
1705
+ "trial_name": null,
1706
+ "trial_params": null
1707
+ }
checkpoint-164/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e57c6e38c07ad1986e976ce1287e590ea69e06de9f14255a4dbbd33296bac1cc
3
+ size 5585
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9e4e7fb171f92fd137b777cc2714bf87d11576700a1dcd7a399e7bbe39537b
3
+ size 17209920
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|begin_of_text|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "eos_token": "<|eot_id|>",
6
+ "is_local": false,
7
+ "model_input_names": [
8
+ "input_ids",
9
+ "attention_mask"
10
+ ],
11
+ "model_max_length": 131072,
12
+ "pad_token": "<|eot_id|>",
13
+ "tokenizer_class": "TokenizersBackend"
14
+ }