Husain commited on
Commit
c889331
·
verified ·
1 Parent(s): 33b7569

Upload folder using huggingface_hub

Browse files
Files changed (45) hide show
  1. .gitattributes +4 -0
  2. README.md +61 -0
  3. adapter_config.json +46 -0
  4. adapter_model.safetensors +3 -0
  5. chat_template.jinja +138 -0
  6. checkpoint-1000/README.md +209 -0
  7. checkpoint-1000/adapter_config.json +46 -0
  8. checkpoint-1000/adapter_model.safetensors +3 -0
  9. checkpoint-1000/chat_template.jinja +138 -0
  10. checkpoint-1000/optimizer.pt +3 -0
  11. checkpoint-1000/processor_config.json +63 -0
  12. checkpoint-1000/rng_state.pth +3 -0
  13. checkpoint-1000/scheduler.pt +3 -0
  14. checkpoint-1000/tokenizer.json +3 -0
  15. checkpoint-1000/tokenizer_config.json +22 -0
  16. checkpoint-1000/trainer_state.json +2056 -0
  17. checkpoint-1000/training_args.bin +3 -0
  18. checkpoint-1206/README.md +209 -0
  19. checkpoint-1206/adapter_config.json +46 -0
  20. checkpoint-1206/adapter_model.safetensors +3 -0
  21. checkpoint-1206/chat_template.jinja +138 -0
  22. checkpoint-1206/optimizer.pt +3 -0
  23. checkpoint-1206/processor_config.json +63 -0
  24. checkpoint-1206/rng_state.pth +3 -0
  25. checkpoint-1206/scheduler.pt +3 -0
  26. checkpoint-1206/tokenizer.json +3 -0
  27. checkpoint-1206/tokenizer_config.json +22 -0
  28. checkpoint-1206/trainer_state.json +2466 -0
  29. checkpoint-1206/training_args.bin +3 -0
  30. checkpoint-500/README.md +209 -0
  31. checkpoint-500/adapter_config.json +46 -0
  32. checkpoint-500/adapter_model.safetensors +3 -0
  33. checkpoint-500/chat_template.jinja +138 -0
  34. checkpoint-500/optimizer.pt +3 -0
  35. checkpoint-500/processor_config.json +63 -0
  36. checkpoint-500/rng_state.pth +3 -0
  37. checkpoint-500/scheduler.pt +3 -0
  38. checkpoint-500/tokenizer.json +3 -0
  39. checkpoint-500/tokenizer_config.json +22 -0
  40. checkpoint-500/trainer_state.json +1045 -0
  41. checkpoint-500/training_args.bin +3 -0
  42. processor_config.json +63 -0
  43. tokenizer.json +3 -0
  44. tokenizer_config.json +22 -0
  45. training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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-1000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1206/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: numind/NuExtract-2.0-2B
3
+ library_name: peft
4
+ model_name: nuextract_lora_adapter_2b_split
5
+ tags:
6
+ - base_model:adapter:numind/NuExtract-2.0-2B
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ licence: license
12
+ pipeline_tag: text-generation
13
+ ---
14
+
15
+ # Model Card for nuextract_lora_adapter_2b_split
16
+
17
+ This model is a fine-tuned version of [numind/NuExtract-2.0-2B](https://huggingface.co/numind/NuExtract-2.0-2B).
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.28.0
42
+ - Transformers: 5.2.0
43
+ - Pytorch: 2.10.0
44
+ - Datasets: 4.5.0
45
+ - Tokenizers: 0.22.2
46
+
47
+ ## Citations
48
+
49
+
50
+
51
+ Cite TRL as:
52
+
53
+ ```bibtex
54
+ @software{vonwerra2020trl,
55
+ title = {{TRL: Transformers Reinforcement Learning}},
56
+ author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
57
+ license = {Apache-2.0},
58
+ url = {https://github.com/huggingface/trl},
59
+ year = {2020}
60
+ }
61
+ ```
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": "numind/NuExtract-2.0-2B",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "up_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "gate_proj",
37
+ "down_proj",
38
+ "k_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:75111344ac6827da35318c801df614a13fec222a63157a24e959fa27b46ac70d
3
+ size 36987736
chat_template.jinja ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_placeholder = '<|vision_start|><|image_pad|><|vision_end|>' -%}
2
+ {%- for message in messages -%}
3
+ {%- if message['role'] == 'system' -%}
4
+ {{- '<|im_start|>system
5
+ ' -}}
6
+ {%- if message['content'] is string -%}
7
+ {{- message['content'] | trim -}}
8
+ {%- endif -%}
9
+ {{- '<|im_end|>
10
+ ' -}}
11
+ {%- elif message['role'] == 'user' -%}
12
+ {%- if loop.first -%}
13
+ {{- '<|im_start|>system
14
+ ' -}}
15
+ {%- if template -%}
16
+ {#--- If template, extraction task ---#}
17
+ {{- 'You are NuExtract, an information extraction tool created by NuMind.' -}}
18
+ {%- else -%}
19
+ {#--- Else, template generation task ---#}
20
+ {{- 'You are a helpful assistant.' -}}
21
+ {%- endif -%}
22
+ {{ '<|im_end|>
23
+ ' }}
24
+ {%- endif -%}
25
+ {{- '<|im_start|>' + message['role'] + '
26
+ ' -}}
27
+ {%- if template -%}
28
+ {#--- Template Section ---#}
29
+ {{- '# Template:
30
+ ' -}}
31
+ {{- template -}}
32
+ {{- '
33
+ ' -}}
34
+
35
+ {%- if examples -%}
36
+ {#--- Examples can only exist in the extraction task ---#}
37
+ {{- '# Examples:
38
+ ' -}}
39
+ {%- for example in examples -%}
40
+ {{- '## Input:
41
+ ' -}}
42
+ {%- if example['input'] is mapping and (example['input']['type'] == 'image' or example['input']['type'] == 'image_url') -%}
43
+ {{- image_placeholder | trim -}}
44
+ {%- elif example['input'] == '<image>' -%}
45
+ {#--- Keep compatibility with <image> for now ---#}
46
+ {{- image_placeholder | trim -}}
47
+ {%- else -%}
48
+ {#--- Text input example ---#}
49
+ {{- example['input'] -}}
50
+ {%- endif -%}
51
+ {{- '
52
+ ' -}}
53
+ {{- '## Output:
54
+ ' -}}
55
+ {{- example['output'] -}}
56
+ {{- '
57
+ ' -}}
58
+ {%- endfor -%}
59
+ {%- endif -%}
60
+ {{- '# Context:
61
+ ' -}}
62
+ {%- endif -%}
63
+
64
+ {%- if message['content'] is string -%}
65
+ {#--- Simple string content ---#}
66
+ {{- message['content'] | trim -}}
67
+ {%- elif message['content'] is mapping and (message['content']['type'] == 'image' or message['content']['type'] == 'image_url') -%}
68
+ {{- image_placeholder | trim -}}
69
+ {%- else -%}
70
+ {#--- List of content items (mixed text/images) ---#}
71
+ {#--- First, determine what the actual input content is (not ICL images) ---#}
72
+ {%- set ns = namespace(has_text_input=false, text_content='') -%}
73
+
74
+ {#--- Count content types and identify actual input document ---#}
75
+ {%- for content in message['content'] -%}
76
+ {%- if content is mapping and content.get('type') == 'text' -%}
77
+ {%- if content.get('text') != '<image>' -%}
78
+ {#--- Keep compatibility with <image> for now ---#}
79
+ {%- set ns.has_text_input = true -%}
80
+ {%- set ns.text_content = content['text'] -%}
81
+ {%- endif -%}
82
+ {%- elif content is string -%}
83
+ {%- if content != '<image>' -%}
84
+ {#--- Keep compatibility with <image> for now ---#}
85
+ {%- set ns.has_text_input = true -%}
86
+ {%- set ns.text_content = content -%}
87
+ {%- endif -%}
88
+ {%- endif -%}
89
+ {%- endfor -%}
90
+
91
+ {#--- Determine what to output based on actual input type ---#}
92
+ {%- if ns.has_text_input -%}
93
+ {#--- Main input is text, so output the text content ---#}
94
+ {{- ns.text_content | trim -}}
95
+ {%- else -%}
96
+ {#--- Main input is image or <image> placeholder ---#}
97
+ {%- set ns2 = namespace(found_image=false) -%}
98
+ {%- for content in message['content'] -%}
99
+ {%- if content is mapping and (content.get('type') == 'image' or content.get('type') == 'image_url') and not ns2.found_image -%}
100
+ {{- image_placeholder | trim -}}
101
+ {%- set ns2.found_image = true -%}
102
+ {%- elif content is mapping and content.get('type') == 'text' and content.get('text') == '<image>' and not ns2.found_image -%}
103
+ {#--- Keep compatibility with <image> for now ---#}
104
+ {{- image_placeholder | trim -}}
105
+ {%- set ns2.found_image = true -%}
106
+ {%- elif content is string and content == '<image>' and not ns2.found_image -%}
107
+ {#--- Keep compatibility with <image> for now ---#}
108
+ {{- image_placeholder | trim -}}
109
+ {%- set ns2.found_image = true -%}
110
+ {%- endif -%}
111
+ {%- endfor -%}
112
+ {%- endif -%}
113
+ {%- endif -%}
114
+ {{- '<|im_end|>
115
+ '}}
116
+
117
+ {%- elif message['role'] == 'assistant' -%}
118
+ {{- '<|im_start|>assistant
119
+ ' -}}
120
+ {%- if message['content'] is string -%}
121
+ {{- message['content'] | trim -}}
122
+ {%- elif message['content'] is iterable and message['content'] is not string -%}
123
+ {%- for content in message['content'] -%}
124
+ {%- if content is mapping and content.get('type') == 'text' -%}
125
+ {{- content['text'] | trim -}}
126
+ {%- elif content is string -%}
127
+ {{- content | trim -}}
128
+ {%- endif -%}
129
+ {%- endfor -%}
130
+ {%- endif -%}
131
+ {{- '<|im_end|>
132
+ ' -}}
133
+ {%- endif -%}
134
+ {%- endfor -%}
135
+ {%- if add_generation_prompt -%}
136
+ {{- '<|im_start|>assistant
137
+ ' -}}
138
+ {%- endif -%}
checkpoint-1000/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: numind/NuExtract-2.0-2B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:numind/NuExtract-2.0-2B
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-1000/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": "numind/NuExtract-2.0-2B",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "up_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "gate_proj",
37
+ "down_proj",
38
+ "k_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-1000/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5c4dbe8236fe54809b4e05229bacd2a242d70ce8265231dedfe3345aab7b164
3
+ size 36987736
checkpoint-1000/chat_template.jinja ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_placeholder = '<|vision_start|><|image_pad|><|vision_end|>' -%}
2
+ {%- for message in messages -%}
3
+ {%- if message['role'] == 'system' -%}
4
+ {{- '<|im_start|>system
5
+ ' -}}
6
+ {%- if message['content'] is string -%}
7
+ {{- message['content'] | trim -}}
8
+ {%- endif -%}
9
+ {{- '<|im_end|>
10
+ ' -}}
11
+ {%- elif message['role'] == 'user' -%}
12
+ {%- if loop.first -%}
13
+ {{- '<|im_start|>system
14
+ ' -}}
15
+ {%- if template -%}
16
+ {#--- If template, extraction task ---#}
17
+ {{- 'You are NuExtract, an information extraction tool created by NuMind.' -}}
18
+ {%- else -%}
19
+ {#--- Else, template generation task ---#}
20
+ {{- 'You are a helpful assistant.' -}}
21
+ {%- endif -%}
22
+ {{ '<|im_end|>
23
+ ' }}
24
+ {%- endif -%}
25
+ {{- '<|im_start|>' + message['role'] + '
26
+ ' -}}
27
+ {%- if template -%}
28
+ {#--- Template Section ---#}
29
+ {{- '# Template:
30
+ ' -}}
31
+ {{- template -}}
32
+ {{- '
33
+ ' -}}
34
+
35
+ {%- if examples -%}
36
+ {#--- Examples can only exist in the extraction task ---#}
37
+ {{- '# Examples:
38
+ ' -}}
39
+ {%- for example in examples -%}
40
+ {{- '## Input:
41
+ ' -}}
42
+ {%- if example['input'] is mapping and (example['input']['type'] == 'image' or example['input']['type'] == 'image_url') -%}
43
+ {{- image_placeholder | trim -}}
44
+ {%- elif example['input'] == '<image>' -%}
45
+ {#--- Keep compatibility with <image> for now ---#}
46
+ {{- image_placeholder | trim -}}
47
+ {%- else -%}
48
+ {#--- Text input example ---#}
49
+ {{- example['input'] -}}
50
+ {%- endif -%}
51
+ {{- '
52
+ ' -}}
53
+ {{- '## Output:
54
+ ' -}}
55
+ {{- example['output'] -}}
56
+ {{- '
57
+ ' -}}
58
+ {%- endfor -%}
59
+ {%- endif -%}
60
+ {{- '# Context:
61
+ ' -}}
62
+ {%- endif -%}
63
+
64
+ {%- if message['content'] is string -%}
65
+ {#--- Simple string content ---#}
66
+ {{- message['content'] | trim -}}
67
+ {%- elif message['content'] is mapping and (message['content']['type'] == 'image' or message['content']['type'] == 'image_url') -%}
68
+ {{- image_placeholder | trim -}}
69
+ {%- else -%}
70
+ {#--- List of content items (mixed text/images) ---#}
71
+ {#--- First, determine what the actual input content is (not ICL images) ---#}
72
+ {%- set ns = namespace(has_text_input=false, text_content='') -%}
73
+
74
+ {#--- Count content types and identify actual input document ---#}
75
+ {%- for content in message['content'] -%}
76
+ {%- if content is mapping and content.get('type') == 'text' -%}
77
+ {%- if content.get('text') != '<image>' -%}
78
+ {#--- Keep compatibility with <image> for now ---#}
79
+ {%- set ns.has_text_input = true -%}
80
+ {%- set ns.text_content = content['text'] -%}
81
+ {%- endif -%}
82
+ {%- elif content is string -%}
83
+ {%- if content != '<image>' -%}
84
+ {#--- Keep compatibility with <image> for now ---#}
85
+ {%- set ns.has_text_input = true -%}
86
+ {%- set ns.text_content = content -%}
87
+ {%- endif -%}
88
+ {%- endif -%}
89
+ {%- endfor -%}
90
+
91
+ {#--- Determine what to output based on actual input type ---#}
92
+ {%- if ns.has_text_input -%}
93
+ {#--- Main input is text, so output the text content ---#}
94
+ {{- ns.text_content | trim -}}
95
+ {%- else -%}
96
+ {#--- Main input is image or <image> placeholder ---#}
97
+ {%- set ns2 = namespace(found_image=false) -%}
98
+ {%- for content in message['content'] -%}
99
+ {%- if content is mapping and (content.get('type') == 'image' or content.get('type') == 'image_url') and not ns2.found_image -%}
100
+ {{- image_placeholder | trim -}}
101
+ {%- set ns2.found_image = true -%}
102
+ {%- elif content is mapping and content.get('type') == 'text' and content.get('text') == '<image>' and not ns2.found_image -%}
103
+ {#--- Keep compatibility with <image> for now ---#}
104
+ {{- image_placeholder | trim -}}
105
+ {%- set ns2.found_image = true -%}
106
+ {%- elif content is string and content == '<image>' and not ns2.found_image -%}
107
+ {#--- Keep compatibility with <image> for now ---#}
108
+ {{- image_placeholder | trim -}}
109
+ {%- set ns2.found_image = true -%}
110
+ {%- endif -%}
111
+ {%- endfor -%}
112
+ {%- endif -%}
113
+ {%- endif -%}
114
+ {{- '<|im_end|>
115
+ '}}
116
+
117
+ {%- elif message['role'] == 'assistant' -%}
118
+ {{- '<|im_start|>assistant
119
+ ' -}}
120
+ {%- if message['content'] is string -%}
121
+ {{- message['content'] | trim -}}
122
+ {%- elif message['content'] is iterable and message['content'] is not string -%}
123
+ {%- for content in message['content'] -%}
124
+ {%- if content is mapping and content.get('type') == 'text' -%}
125
+ {{- content['text'] | trim -}}
126
+ {%- elif content is string -%}
127
+ {{- content | trim -}}
128
+ {%- endif -%}
129
+ {%- endfor -%}
130
+ {%- endif -%}
131
+ {{- '<|im_end|>
132
+ ' -}}
133
+ {%- endif -%}
134
+ {%- endfor -%}
135
+ {%- if add_generation_prompt -%}
136
+ {{- '<|im_start|>assistant
137
+ ' -}}
138
+ {%- endif -%}
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:879d24d360f3ca5ca839c8edf41c787f4e2ef84db201c4b0bf8d7c5d6ec7ae62
3
+ size 37974661
checkpoint-1000/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.48145466,
10
+ 0.4578275,
11
+ 0.40821073
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.26862954,
16
+ 0.26130258,
17
+ 0.27577711
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 14,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 23000000,
25
+ "shortest_edge": 200704
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen2_5_VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": false,
38
+ "image_mean": [
39
+ 0.48145466,
40
+ 0.4578275,
41
+ 0.40821073
42
+ ],
43
+ "image_processor_type": "Qwen2VLImageProcessor",
44
+ "image_std": [
45
+ 0.26862954,
46
+ 0.26130258,
47
+ 0.27577711
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 14,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 23000000,
58
+ "shortest_edge": 200704
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen2VLVideoProcessor"
62
+ }
63
+ }
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9915f3c83949abaf128c7e49e29c23e22d42e3acb940456a8ba772e63e58a1ae
3
+ size 14645
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80a59461368f07e3f04d9f2e341b48e67443a0f97cb03fd267e1f8ff0620ba91
3
+ size 1465
checkpoint-1000/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7aabe7a3b44651592a99607bb33066e6965260336be9218cccd53af161491d
3
+ size 11422060
checkpoint-1000/tokenizer_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_commit_hash": null,
3
+ "add_prefix_space": false,
4
+ "backend": "tokenizers",
5
+ "bos_token": null,
6
+ "clean_up_tokenization_spaces": false,
7
+ "eos_token": "<|im_end|>",
8
+ "errors": "replace",
9
+ "is_local": false,
10
+ "max_length": null,
11
+ "max_pixels": 23000000,
12
+ "min_pixels": 200704,
13
+ "model_max_length": 131072,
14
+ "pad_to_multiple_of": null,
15
+ "pad_token": "<|endoftext|>",
16
+ "pad_token_type_id": 0,
17
+ "padding_side": "right",
18
+ "processor_class": "Qwen2_5_VLProcessor",
19
+ "split_special_tokens": false,
20
+ "tokenizer_class": "Qwen2Tokenizer",
21
+ "unk_token": null
22
+ }
checkpoint-1000/trainer_state.json ADDED
@@ -0,0 +1,2056 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 2.487713841368585,
6
+ "eval_steps": 500,
7
+ "global_step": 1000,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.7456206619739532,
14
+ "epoch": 0.012441679626749611,
15
+ "grad_norm": 0.048583984375,
16
+ "learning_rate": 1.0810810810810812e-05,
17
+ "loss": 0.31386559009552,
18
+ "mean_token_accuracy": 0.9072110533714295,
19
+ "num_tokens": 27963.0,
20
+ "step": 5
21
+ },
22
+ {
23
+ "entropy": 1.8172702223062516,
24
+ "epoch": 0.024883359253499222,
25
+ "grad_norm": 0.0537109375,
26
+ "learning_rate": 2.4324324324324327e-05,
27
+ "loss": 0.28579437732696533,
28
+ "mean_token_accuracy": 0.9151854813098907,
29
+ "num_tokens": 51393.0,
30
+ "step": 10
31
+ },
32
+ {
33
+ "entropy": 1.7869735598564147,
34
+ "epoch": 0.03732503888024884,
35
+ "grad_norm": 0.046875,
36
+ "learning_rate": 3.783783783783784e-05,
37
+ "loss": 0.26468374729156496,
38
+ "mean_token_accuracy": 0.9194357767701149,
39
+ "num_tokens": 76323.0,
40
+ "step": 15
41
+ },
42
+ {
43
+ "entropy": 1.7407771855592729,
44
+ "epoch": 0.049766718506998445,
45
+ "grad_norm": 0.0546875,
46
+ "learning_rate": 5.135135135135135e-05,
47
+ "loss": 0.22699759006500245,
48
+ "mean_token_accuracy": 0.936237809062004,
49
+ "num_tokens": 101144.0,
50
+ "step": 20
51
+ },
52
+ {
53
+ "entropy": 1.8171133548021317,
54
+ "epoch": 0.06220839813374806,
55
+ "grad_norm": 0.06787109375,
56
+ "learning_rate": 6.486486486486487e-05,
57
+ "loss": 0.21160719394683838,
58
+ "mean_token_accuracy": 0.9410519078373909,
59
+ "num_tokens": 125653.0,
60
+ "step": 25
61
+ },
62
+ {
63
+ "entropy": 1.6494354471564292,
64
+ "epoch": 0.07465007776049767,
65
+ "grad_norm": 0.068359375,
66
+ "learning_rate": 7.837837837837838e-05,
67
+ "loss": 0.1776595950126648,
68
+ "mean_token_accuracy": 0.9463573560118675,
69
+ "num_tokens": 150968.0,
70
+ "step": 30
71
+ },
72
+ {
73
+ "entropy": 1.5880378365516663,
74
+ "epoch": 0.08709175738724728,
75
+ "grad_norm": 0.076171875,
76
+ "learning_rate": 9.18918918918919e-05,
77
+ "loss": 0.18801350593566896,
78
+ "mean_token_accuracy": 0.9474205821752548,
79
+ "num_tokens": 176859.0,
80
+ "step": 35
81
+ },
82
+ {
83
+ "entropy": 1.5649296075105668,
84
+ "epoch": 0.09953343701399689,
85
+ "grad_norm": 0.064453125,
86
+ "learning_rate": 9.99992777797229e-05,
87
+ "loss": 0.18648279905319215,
88
+ "mean_token_accuracy": 0.9436241507530212,
89
+ "num_tokens": 198909.0,
90
+ "step": 40
91
+ },
92
+ {
93
+ "entropy": 1.5894027322530746,
94
+ "epoch": 0.1119751166407465,
95
+ "grad_norm": 0.05322265625,
96
+ "learning_rate": 9.999115304121457e-05,
97
+ "loss": 0.18634642362594606,
98
+ "mean_token_accuracy": 0.9470892950892449,
99
+ "num_tokens": 228344.0,
100
+ "step": 45
101
+ },
102
+ {
103
+ "entropy": 1.596228164434433,
104
+ "epoch": 0.12441679626749612,
105
+ "grad_norm": 0.0478515625,
106
+ "learning_rate": 9.997400226068578e-05,
107
+ "loss": 0.14496899843215943,
108
+ "mean_token_accuracy": 0.9579829111695289,
109
+ "num_tokens": 257062.0,
110
+ "step": 50
111
+ },
112
+ {
113
+ "entropy": 1.509284293651581,
114
+ "epoch": 0.1368584758942457,
115
+ "grad_norm": 0.03369140625,
116
+ "learning_rate": 9.994782853475774e-05,
117
+ "loss": 0.14144277572631836,
118
+ "mean_token_accuracy": 0.9537434980273247,
119
+ "num_tokens": 283149.0,
120
+ "step": 55
121
+ },
122
+ {
123
+ "entropy": 1.5500743955373764,
124
+ "epoch": 0.14930015552099535,
125
+ "grad_norm": 0.0546875,
126
+ "learning_rate": 9.99126365891696e-05,
127
+ "loss": 0.15906004905700682,
128
+ "mean_token_accuracy": 0.9526497855782509,
129
+ "num_tokens": 313192.0,
130
+ "step": 60
131
+ },
132
+ {
133
+ "entropy": 1.5956889361143112,
134
+ "epoch": 0.16174183514774496,
135
+ "grad_norm": 0.061279296875,
136
+ "learning_rate": 9.986843277792523e-05,
137
+ "loss": 0.17970917224884034,
138
+ "mean_token_accuracy": 0.9503620356321335,
139
+ "num_tokens": 340137.0,
140
+ "step": 65
141
+ },
142
+ {
143
+ "entropy": 1.6294057995080948,
144
+ "epoch": 0.17418351477449456,
145
+ "grad_norm": 0.055908203125,
146
+ "learning_rate": 9.9815225082146e-05,
147
+ "loss": 0.14261267185211182,
148
+ "mean_token_accuracy": 0.9562160760164261,
149
+ "num_tokens": 364984.0,
150
+ "step": 70
151
+ },
152
+ {
153
+ "entropy": 1.589295208454132,
154
+ "epoch": 0.18662519440124417,
155
+ "grad_norm": 0.053466796875,
156
+ "learning_rate": 9.975302310862964e-05,
157
+ "loss": 0.1694250226020813,
158
+ "mean_token_accuracy": 0.9456220239400863,
159
+ "num_tokens": 390651.0,
160
+ "step": 75
161
+ },
162
+ {
163
+ "entropy": 1.583991777896881,
164
+ "epoch": 0.19906687402799378,
165
+ "grad_norm": 0.0478515625,
166
+ "learning_rate": 9.968183808811586e-05,
167
+ "loss": 0.17054636478424073,
168
+ "mean_token_accuracy": 0.9493257701396942,
169
+ "num_tokens": 418166.0,
170
+ "step": 80
171
+ },
172
+ {
173
+ "entropy": 1.5742847174406052,
174
+ "epoch": 0.2115085536547434,
175
+ "grad_norm": 0.06103515625,
176
+ "learning_rate": 9.960168287325852e-05,
177
+ "loss": 0.17596685886383057,
178
+ "mean_token_accuracy": 0.9445611819624901,
179
+ "num_tokens": 442501.0,
180
+ "step": 85
181
+ },
182
+ {
183
+ "entropy": 1.5073494076728822,
184
+ "epoch": 0.223950233281493,
185
+ "grad_norm": 0.06640625,
186
+ "learning_rate": 9.951257193630507e-05,
187
+ "loss": 0.13867353200912474,
188
+ "mean_token_accuracy": 0.9568744376301765,
189
+ "num_tokens": 468083.0,
190
+ "step": 90
191
+ },
192
+ {
193
+ "entropy": 1.5407251685857772,
194
+ "epoch": 0.2363919129082426,
195
+ "grad_norm": 0.0673828125,
196
+ "learning_rate": 9.941452136648359e-05,
197
+ "loss": 0.13775357007980346,
198
+ "mean_token_accuracy": 0.9594547316431999,
199
+ "num_tokens": 491914.0,
200
+ "step": 95
201
+ },
202
+ {
203
+ "entropy": 1.4568117886781693,
204
+ "epoch": 0.24883359253499224,
205
+ "grad_norm": 0.045166015625,
206
+ "learning_rate": 9.930754886709772e-05,
207
+ "loss": 0.13010139465332032,
208
+ "mean_token_accuracy": 0.9607375919818878,
209
+ "num_tokens": 518984.0,
210
+ "step": 100
211
+ },
212
+ {
213
+ "entropy": 1.4679558753967286,
214
+ "epoch": 0.26127527216174184,
215
+ "grad_norm": 0.0517578125,
216
+ "learning_rate": 9.919167375233041e-05,
217
+ "loss": 0.15394901037216185,
218
+ "mean_token_accuracy": 0.9542355045676232,
219
+ "num_tokens": 544627.0,
220
+ "step": 105
221
+ },
222
+ {
223
+ "entropy": 1.5308140426874162,
224
+ "epoch": 0.2737169517884914,
225
+ "grad_norm": 0.053955078125,
226
+ "learning_rate": 9.906691694375656e-05,
227
+ "loss": 0.14595698118209838,
228
+ "mean_token_accuracy": 0.9553182557225227,
229
+ "num_tokens": 568970.0,
230
+ "step": 110
231
+ },
232
+ {
233
+ "entropy": 1.5124749779701232,
234
+ "epoch": 0.28615863141524106,
235
+ "grad_norm": 0.08056640625,
236
+ "learning_rate": 9.893330096656574e-05,
237
+ "loss": 0.1251847267150879,
238
+ "mean_token_accuracy": 0.9631539225578308,
239
+ "num_tokens": 594854.0,
240
+ "step": 115
241
+ },
242
+ {
243
+ "entropy": 1.5146708011627197,
244
+ "epoch": 0.2986003110419907,
245
+ "grad_norm": 0.053955078125,
246
+ "learning_rate": 9.879084994549503e-05,
247
+ "loss": 0.12504571676254272,
248
+ "mean_token_accuracy": 0.9637450009584427,
249
+ "num_tokens": 621481.0,
250
+ "step": 120
251
+ },
252
+ {
253
+ "entropy": 1.5158167153596878,
254
+ "epoch": 0.3110419906687403,
255
+ "grad_norm": 0.03271484375,
256
+ "learning_rate": 9.863958960047335e-05,
257
+ "loss": 0.11272231340408326,
258
+ "mean_token_accuracy": 0.9642089486122132,
259
+ "num_tokens": 648057.0,
260
+ "step": 125
261
+ },
262
+ {
263
+ "entropy": 1.4378292948007583,
264
+ "epoch": 0.3234836702954899,
265
+ "grad_norm": 0.05078125,
266
+ "learning_rate": 9.847954724197757e-05,
267
+ "loss": 0.1520946979522705,
268
+ "mean_token_accuracy": 0.9551170215010643,
269
+ "num_tokens": 676272.0,
270
+ "step": 130
271
+ },
272
+ {
273
+ "entropy": 1.4547880798578263,
274
+ "epoch": 0.3359253499222395,
275
+ "grad_norm": 0.039794921875,
276
+ "learning_rate": 9.831075176610163e-05,
277
+ "loss": 0.13464858531951904,
278
+ "mean_token_accuracy": 0.9599997282028199,
279
+ "num_tokens": 702496.0,
280
+ "step": 135
281
+ },
282
+ {
283
+ "entropy": 1.5038821995258331,
284
+ "epoch": 0.3483670295489891,
285
+ "grad_norm": 0.058349609375,
286
+ "learning_rate": 9.813323364933915e-05,
287
+ "loss": 0.13690755367279053,
288
+ "mean_token_accuracy": 0.9559143736958504,
289
+ "num_tokens": 726296.0,
290
+ "step": 140
291
+ },
292
+ {
293
+ "entropy": 1.5725213587284088,
294
+ "epoch": 0.3608087091757387,
295
+ "grad_norm": 0.05615234375,
296
+ "learning_rate": 9.794702494308093e-05,
297
+ "loss": 0.14729396104812623,
298
+ "mean_token_accuracy": 0.9551976174116135,
299
+ "num_tokens": 752371.0,
300
+ "step": 145
301
+ },
302
+ {
303
+ "entropy": 1.4945250004529953,
304
+ "epoch": 0.37325038880248834,
305
+ "grad_norm": 0.0478515625,
306
+ "learning_rate": 9.775215926782788e-05,
307
+ "loss": 0.1206730842590332,
308
+ "mean_token_accuracy": 0.9687894850969314,
309
+ "num_tokens": 775896.0,
310
+ "step": 150
311
+ },
312
+ {
313
+ "entropy": 1.4557270616292954,
314
+ "epoch": 0.3856920684292379,
315
+ "grad_norm": 0.05419921875,
316
+ "learning_rate": 9.754867180712082e-05,
317
+ "loss": 0.1341879963874817,
318
+ "mean_token_accuracy": 0.9626043424010277,
319
+ "num_tokens": 798172.0,
320
+ "step": 155
321
+ },
322
+ {
323
+ "entropy": 1.4879502207040787,
324
+ "epoch": 0.39813374805598756,
325
+ "grad_norm": 0.05224609375,
326
+ "learning_rate": 9.733659930118793e-05,
327
+ "loss": 0.13069820404052734,
328
+ "mean_token_accuracy": 0.9548368141055107,
329
+ "num_tokens": 824452.0,
330
+ "step": 160
331
+ },
332
+ {
333
+ "entropy": 1.5602718144655228,
334
+ "epoch": 0.4105754276827372,
335
+ "grad_norm": 0.044189453125,
336
+ "learning_rate": 9.711598004031131e-05,
337
+ "loss": 0.13032547235488892,
338
+ "mean_token_accuracy": 0.9589100196957588,
339
+ "num_tokens": 849316.0,
340
+ "step": 165
341
+ },
342
+ {
343
+ "entropy": 1.488172698020935,
344
+ "epoch": 0.4230171073094868,
345
+ "grad_norm": 0.03466796875,
346
+ "learning_rate": 9.688685385791339e-05,
347
+ "loss": 0.13182138204574584,
348
+ "mean_token_accuracy": 0.9608529090881348,
349
+ "num_tokens": 878357.0,
350
+ "step": 170
351
+ },
352
+ {
353
+ "entropy": 1.4886444747447967,
354
+ "epoch": 0.4354587869362364,
355
+ "grad_norm": 0.044189453125,
356
+ "learning_rate": 9.664926212336505e-05,
357
+ "loss": 0.1238294005393982,
358
+ "mean_token_accuracy": 0.960505859553814,
359
+ "num_tokens": 904192.0,
360
+ "step": 175
361
+ },
362
+ {
363
+ "entropy": 1.5064076393842698,
364
+ "epoch": 0.447900466562986,
365
+ "grad_norm": 0.0458984375,
366
+ "learning_rate": 9.640324773451622e-05,
367
+ "loss": 0.167707359790802,
368
+ "mean_token_accuracy": 0.9532883360981941,
369
+ "num_tokens": 930575.0,
370
+ "step": 180
371
+ },
372
+ {
373
+ "entropy": 1.445479767024517,
374
+ "epoch": 0.4603421461897356,
375
+ "grad_norm": 0.048583984375,
376
+ "learning_rate": 9.614885510995047e-05,
377
+ "loss": 0.12214440107345581,
378
+ "mean_token_accuracy": 0.9636711940169335,
379
+ "num_tokens": 954713.0,
380
+ "step": 185
381
+ },
382
+ {
383
+ "entropy": 1.508093237876892,
384
+ "epoch": 0.4727838258164852,
385
+ "grad_norm": 0.052734375,
386
+ "learning_rate": 9.588613018096529e-05,
387
+ "loss": 0.13071714639663695,
388
+ "mean_token_accuracy": 0.9601568162441254,
389
+ "num_tokens": 981241.0,
390
+ "step": 190
391
+ },
392
+ {
393
+ "entropy": 1.4727303981781006,
394
+ "epoch": 0.48522550544323484,
395
+ "grad_norm": 0.052978515625,
396
+ "learning_rate": 9.561512038327882e-05,
397
+ "loss": 0.11298023462295533,
398
+ "mean_token_accuracy": 0.9675653219223023,
399
+ "num_tokens": 1007954.0,
400
+ "step": 195
401
+ },
402
+ {
403
+ "entropy": 1.463455791771412,
404
+ "epoch": 0.4976671850699845,
405
+ "grad_norm": 0.050537109375,
406
+ "learning_rate": 9.533587464846548e-05,
407
+ "loss": 0.13673393726348876,
408
+ "mean_token_accuracy": 0.9588131874799728,
409
+ "num_tokens": 1037256.0,
410
+ "step": 200
411
+ },
412
+ {
413
+ "entropy": 1.455343420803547,
414
+ "epoch": 0.5101088646967341,
415
+ "grad_norm": 0.060302734375,
416
+ "learning_rate": 9.504844339512095e-05,
417
+ "loss": 0.16279250383377075,
418
+ "mean_token_accuracy": 0.952251310646534,
419
+ "num_tokens": 1059784.0,
420
+ "step": 205
421
+ },
422
+ {
423
+ "entropy": 1.512709778547287,
424
+ "epoch": 0.5225505443234837,
425
+ "grad_norm": 0.042724609375,
426
+ "learning_rate": 9.475287851975925e-05,
427
+ "loss": 0.10544586181640625,
428
+ "mean_token_accuracy": 0.9677229434251785,
429
+ "num_tokens": 1082209.0,
430
+ "step": 210
431
+ },
432
+ {
433
+ "entropy": 1.462220585346222,
434
+ "epoch": 0.5349922239502333,
435
+ "grad_norm": 0.0400390625,
436
+ "learning_rate": 9.444923338744239e-05,
437
+ "loss": 0.11979058980941773,
438
+ "mean_token_accuracy": 0.9626576647162437,
439
+ "num_tokens": 1110595.0,
440
+ "step": 215
441
+ },
442
+ {
443
+ "entropy": 1.4548005178570746,
444
+ "epoch": 0.5474339035769828,
445
+ "grad_norm": 0.04345703125,
446
+ "learning_rate": 9.413756282214537e-05,
447
+ "loss": 0.1187555432319641,
448
+ "mean_token_accuracy": 0.9617565467953682,
449
+ "num_tokens": 1135832.0,
450
+ "step": 220
451
+ },
452
+ {
453
+ "entropy": 1.493788743019104,
454
+ "epoch": 0.5598755832037325,
455
+ "grad_norm": 0.06591796875,
456
+ "learning_rate": 9.381792309685746e-05,
457
+ "loss": 0.15725988149642944,
458
+ "mean_token_accuracy": 0.9544133111834526,
459
+ "num_tokens": 1163621.0,
460
+ "step": 225
461
+ },
462
+ {
463
+ "entropy": 1.4669800892472267,
464
+ "epoch": 0.5723172628304821,
465
+ "grad_norm": 0.042236328125,
466
+ "learning_rate": 9.3490371923422e-05,
467
+ "loss": 0.12038854360580445,
468
+ "mean_token_accuracy": 0.9577056676149368,
469
+ "num_tokens": 1188345.0,
470
+ "step": 230
471
+ },
472
+ {
473
+ "entropy": 1.5317447245121003,
474
+ "epoch": 0.5847589424572317,
475
+ "grad_norm": 0.05615234375,
476
+ "learning_rate": 9.31549684421163e-05,
477
+ "loss": 0.12890284061431884,
478
+ "mean_token_accuracy": 0.9609759420156478,
479
+ "num_tokens": 1215187.0,
480
+ "step": 235
481
+ },
482
+ {
483
+ "entropy": 1.502908742427826,
484
+ "epoch": 0.5972006220839814,
485
+ "grad_norm": 0.048828125,
486
+ "learning_rate": 9.28117732109738e-05,
487
+ "loss": 0.12224407196044922,
488
+ "mean_token_accuracy": 0.9638051286339759,
489
+ "num_tokens": 1241282.0,
490
+ "step": 240
491
+ },
492
+ {
493
+ "entropy": 1.4564243242144586,
494
+ "epoch": 0.609642301710731,
495
+ "grad_norm": 0.04638671875,
496
+ "learning_rate": 9.246084819485004e-05,
497
+ "loss": 0.13289834260940553,
498
+ "mean_token_accuracy": 0.9601684510707855,
499
+ "num_tokens": 1268251.0,
500
+ "step": 245
501
+ },
502
+ {
503
+ "entropy": 1.4659890502691268,
504
+ "epoch": 0.6220839813374806,
505
+ "grad_norm": 0.0595703125,
506
+ "learning_rate": 9.21022567542348e-05,
507
+ "loss": 0.14783012866973877,
508
+ "mean_token_accuracy": 0.9558995455503464,
509
+ "num_tokens": 1292958.0,
510
+ "step": 250
511
+ },
512
+ {
513
+ "entropy": 1.4668870717287064,
514
+ "epoch": 0.6345256609642301,
515
+ "grad_norm": 0.057861328125,
516
+ "learning_rate": 9.173606363381219e-05,
517
+ "loss": 0.12078696489334106,
518
+ "mean_token_accuracy": 0.965465834736824,
519
+ "num_tokens": 1318689.0,
520
+ "step": 255
521
+ },
522
+ {
523
+ "entropy": 1.4572956532239913,
524
+ "epoch": 0.6469673405909798,
525
+ "grad_norm": 0.05126953125,
526
+ "learning_rate": 9.136233495077077e-05,
527
+ "loss": 0.1338449239730835,
528
+ "mean_token_accuracy": 0.9598589226603508,
529
+ "num_tokens": 1345620.0,
530
+ "step": 260
531
+ },
532
+ {
533
+ "entropy": 1.436805287003517,
534
+ "epoch": 0.6594090202177294,
535
+ "grad_norm": 0.050537109375,
536
+ "learning_rate": 9.098113818286595e-05,
537
+ "loss": 0.1269620180130005,
538
+ "mean_token_accuracy": 0.963837206363678,
539
+ "num_tokens": 1369989.0,
540
+ "step": 265
541
+ },
542
+ {
543
+ "entropy": 1.430183658003807,
544
+ "epoch": 0.671850699844479,
545
+ "grad_norm": 0.037353515625,
546
+ "learning_rate": 9.059254215623668e-05,
547
+ "loss": 0.09294362068176269,
548
+ "mean_token_accuracy": 0.9718702122569084,
549
+ "num_tokens": 1399090.0,
550
+ "step": 270
551
+ },
552
+ {
553
+ "entropy": 1.4391476839780808,
554
+ "epoch": 0.6842923794712286,
555
+ "grad_norm": 0.042236328125,
556
+ "learning_rate": 9.01966170329787e-05,
557
+ "loss": 0.11170387268066406,
558
+ "mean_token_accuracy": 0.9664130583405495,
559
+ "num_tokens": 1425851.0,
560
+ "step": 275
561
+ },
562
+ {
563
+ "entropy": 1.5080994993448258,
564
+ "epoch": 0.6967340590979783,
565
+ "grad_norm": 0.06005859375,
566
+ "learning_rate": 8.979343429847653e-05,
567
+ "loss": 0.1207460641860962,
568
+ "mean_token_accuracy": 0.96175517141819,
569
+ "num_tokens": 1450517.0,
570
+ "step": 280
571
+ },
572
+ {
573
+ "entropy": 1.4918249040842055,
574
+ "epoch": 0.7091757387247278,
575
+ "grad_norm": 0.0419921875,
576
+ "learning_rate": 8.93830667484967e-05,
577
+ "loss": 0.11671255826950074,
578
+ "mean_token_accuracy": 0.9663726434111595,
579
+ "num_tokens": 1474715.0,
580
+ "step": 285
581
+ },
582
+ {
583
+ "entropy": 1.4864625990390778,
584
+ "epoch": 0.7216174183514774,
585
+ "grad_norm": 0.044921875,
586
+ "learning_rate": 8.896558847604414e-05,
587
+ "loss": 0.12517218589782714,
588
+ "mean_token_accuracy": 0.9652746349573136,
589
+ "num_tokens": 1499442.0,
590
+ "step": 290
591
+ },
592
+ {
593
+ "entropy": 1.490417730808258,
594
+ "epoch": 0.7340590979782271,
595
+ "grad_norm": 0.037841796875,
596
+ "learning_rate": 8.854107485798458e-05,
597
+ "loss": 0.11757193803787232,
598
+ "mean_token_accuracy": 0.9664239585399628,
599
+ "num_tokens": 1523873.0,
600
+ "step": 295
601
+ },
602
+ {
603
+ "entropy": 1.4401051640510558,
604
+ "epoch": 0.7465007776049767,
605
+ "grad_norm": 0.053466796875,
606
+ "learning_rate": 8.810960254143499e-05,
607
+ "loss": 0.13470059633255005,
608
+ "mean_token_accuracy": 0.9591680407524109,
609
+ "num_tokens": 1548575.0,
610
+ "step": 300
611
+ },
612
+ {
613
+ "entropy": 1.5322502881288529,
614
+ "epoch": 0.7589424572317263,
615
+ "grad_norm": 0.053955078125,
616
+ "learning_rate": 8.767124942992475e-05,
617
+ "loss": 0.12030593156814576,
618
+ "mean_token_accuracy": 0.9647545605897904,
619
+ "num_tokens": 1575643.0,
620
+ "step": 305
621
+ },
622
+ {
623
+ "entropy": 1.458931715786457,
624
+ "epoch": 0.7713841368584758,
625
+ "grad_norm": 0.042724609375,
626
+ "learning_rate": 8.722609466932996e-05,
627
+ "loss": 0.09307305216789245,
628
+ "mean_token_accuracy": 0.9665900468826294,
629
+ "num_tokens": 1600333.0,
630
+ "step": 310
631
+ },
632
+ {
633
+ "entropy": 1.458182653784752,
634
+ "epoch": 0.7838258164852255,
635
+ "grad_norm": 0.047607421875,
636
+ "learning_rate": 8.677421863358341e-05,
637
+ "loss": 0.12296299934387207,
638
+ "mean_token_accuracy": 0.9640052378177643,
639
+ "num_tokens": 1625117.0,
640
+ "step": 315
641
+ },
642
+ {
643
+ "entropy": 1.4836479336023332,
644
+ "epoch": 0.7962674961119751,
645
+ "grad_norm": 0.05126953125,
646
+ "learning_rate": 8.631570291016284e-05,
647
+ "loss": 0.12105728387832641,
648
+ "mean_token_accuracy": 0.9649034470319748,
649
+ "num_tokens": 1649929.0,
650
+ "step": 320
651
+ },
652
+ {
653
+ "entropy": 1.5023894742131234,
654
+ "epoch": 0.8087091757387247,
655
+ "grad_norm": 0.044921875,
656
+ "learning_rate": 8.585063028536016e-05,
657
+ "loss": 0.10724372863769531,
658
+ "mean_token_accuracy": 0.965858943760395,
659
+ "num_tokens": 1675782.0,
660
+ "step": 325
661
+ },
662
+ {
663
+ "entropy": 1.4469050377607346,
664
+ "epoch": 0.8211508553654744,
665
+ "grad_norm": 0.052490234375,
666
+ "learning_rate": 8.537908472933402e-05,
667
+ "loss": 0.13695430755615234,
668
+ "mean_token_accuracy": 0.9561882585287094,
669
+ "num_tokens": 1703718.0,
670
+ "step": 330
671
+ },
672
+ {
673
+ "entropy": 1.5462682336568832,
674
+ "epoch": 0.833592534992224,
675
+ "grad_norm": 0.047607421875,
676
+ "learning_rate": 8.490115138094889e-05,
677
+ "loss": 0.14301273822784424,
678
+ "mean_token_accuracy": 0.9608543425798416,
679
+ "num_tokens": 1731614.0,
680
+ "step": 335
681
+ },
682
+ {
683
+ "entropy": 1.5303865879774095,
684
+ "epoch": 0.8460342146189735,
685
+ "grad_norm": 0.0556640625,
686
+ "learning_rate": 8.4416916532403e-05,
687
+ "loss": 0.1558545470237732,
688
+ "mean_token_accuracy": 0.9530998334288597,
689
+ "num_tokens": 1758723.0,
690
+ "step": 340
691
+ },
692
+ {
693
+ "entropy": 1.451111488044262,
694
+ "epoch": 0.8584758942457231,
695
+ "grad_norm": 0.039794921875,
696
+ "learning_rate": 8.392646761364789e-05,
697
+ "loss": 0.10284805297851562,
698
+ "mean_token_accuracy": 0.9650755852460862,
699
+ "num_tokens": 1785721.0,
700
+ "step": 345
701
+ },
702
+ {
703
+ "entropy": 1.484094935655594,
704
+ "epoch": 0.8709175738724728,
705
+ "grad_norm": 0.05419921875,
706
+ "learning_rate": 8.342989317660289e-05,
707
+ "loss": 0.10030006170272827,
708
+ "mean_token_accuracy": 0.9675216883420944,
709
+ "num_tokens": 1814257.0,
710
+ "step": 350
711
+ },
712
+ {
713
+ "entropy": 1.5280012369155884,
714
+ "epoch": 0.8833592534992224,
715
+ "grad_norm": 0.0546875,
716
+ "learning_rate": 8.292728287916665e-05,
717
+ "loss": 0.09518902897834777,
718
+ "mean_token_accuracy": 0.9697460547089577,
719
+ "num_tokens": 1838719.0,
720
+ "step": 355
721
+ },
722
+ {
723
+ "entropy": 1.4606290251016616,
724
+ "epoch": 0.895800933125972,
725
+ "grad_norm": 0.05810546875,
726
+ "learning_rate": 8.241872746902935e-05,
727
+ "loss": 0.09836371541023255,
728
+ "mean_token_accuracy": 0.9680053278803825,
729
+ "num_tokens": 1860428.0,
730
+ "step": 360
731
+ },
732
+ {
733
+ "entropy": 1.4977456852793694,
734
+ "epoch": 0.9082426127527217,
735
+ "grad_norm": 0.053466796875,
736
+ "learning_rate": 8.190431876728772e-05,
737
+ "loss": 0.11404428482055665,
738
+ "mean_token_accuracy": 0.9683067321777343,
739
+ "num_tokens": 1887249.0,
740
+ "step": 365
741
+ },
742
+ {
743
+ "entropy": 1.4481744587421417,
744
+ "epoch": 0.9206842923794712,
745
+ "grad_norm": 0.04248046875,
746
+ "learning_rate": 8.138414965186667e-05,
747
+ "loss": 0.11055492162704468,
748
+ "mean_token_accuracy": 0.9680417776107788,
749
+ "num_tokens": 1913193.0,
750
+ "step": 370
751
+ },
752
+ {
753
+ "entropy": 1.4087932407855988,
754
+ "epoch": 0.9331259720062208,
755
+ "grad_norm": 0.048583984375,
756
+ "learning_rate": 8.085831404074984e-05,
757
+ "loss": 0.08752046227455139,
758
+ "mean_token_accuracy": 0.9722029373049736,
759
+ "num_tokens": 1935245.0,
760
+ "step": 375
761
+ },
762
+ {
763
+ "entropy": 1.4568452775478362,
764
+ "epoch": 0.9455676516329704,
765
+ "grad_norm": 0.0576171875,
766
+ "learning_rate": 8.03269068750225e-05,
767
+ "loss": 0.11881341934204101,
768
+ "mean_token_accuracy": 0.959407502412796,
769
+ "num_tokens": 1961480.0,
770
+ "step": 380
771
+ },
772
+ {
773
+ "entropy": 1.4280684739351273,
774
+ "epoch": 0.9580093312597201,
775
+ "grad_norm": 0.05078125,
776
+ "learning_rate": 7.979002410172954e-05,
777
+ "loss": 0.14049121141433715,
778
+ "mean_token_accuracy": 0.9576024219393731,
779
+ "num_tokens": 1986643.0,
780
+ "step": 385
781
+ },
782
+ {
783
+ "entropy": 1.4764668315649032,
784
+ "epoch": 0.9704510108864697,
785
+ "grad_norm": 0.040283203125,
786
+ "learning_rate": 7.924776265655216e-05,
787
+ "loss": 0.11259770393371582,
788
+ "mean_token_accuracy": 0.9635465934872627,
789
+ "num_tokens": 2012509.0,
790
+ "step": 390
791
+ },
792
+ {
793
+ "entropy": 1.4508350789546967,
794
+ "epoch": 0.9828926905132193,
795
+ "grad_norm": 0.0361328125,
796
+ "learning_rate": 7.870022044630569e-05,
797
+ "loss": 0.11488029956817628,
798
+ "mean_token_accuracy": 0.9670460253953934,
799
+ "num_tokens": 2039717.0,
800
+ "step": 395
801
+ },
802
+ {
803
+ "entropy": 1.5077543556690216,
804
+ "epoch": 0.995334370139969,
805
+ "grad_norm": 0.06201171875,
806
+ "learning_rate": 7.814749633126235e-05,
807
+ "loss": 0.1424098014831543,
808
+ "mean_token_accuracy": 0.9543160945177078,
809
+ "num_tokens": 2064948.0,
810
+ "step": 400
811
+ },
812
+ {
813
+ "epoch": 1.0,
814
+ "eval_entropy": 1.4550913160425485,
815
+ "eval_loss": 0.12082157284021378,
816
+ "eval_mean_token_accuracy": 0.9625284673763668,
817
+ "eval_num_tokens": 2076268.0,
818
+ "eval_runtime": 24.7531,
819
+ "eval_samples_per_second": 12.16,
820
+ "eval_steps_per_second": 12.16,
821
+ "step": 402
822
+ },
823
+ {
824
+ "entropy": 1.4730579455693562,
825
+ "epoch": 1.0074650077760499,
826
+ "grad_norm": 0.0322265625,
827
+ "learning_rate": 7.75896901073017e-05,
828
+ "loss": 0.08911717534065247,
829
+ "mean_token_accuracy": 0.9732377681976709,
830
+ "num_tokens": 2088687.0,
831
+ "step": 405
832
+ },
833
+ {
834
+ "entropy": 1.436254122853279,
835
+ "epoch": 1.0199066874027993,
836
+ "grad_norm": 0.04931640625,
837
+ "learning_rate": 7.702690248789223e-05,
838
+ "loss": 0.10224579572677613,
839
+ "mean_token_accuracy": 0.9676861181855202,
840
+ "num_tokens": 2114020.0,
841
+ "step": 410
842
+ },
843
+ {
844
+ "entropy": 1.4225786730647088,
845
+ "epoch": 1.032348367029549,
846
+ "grad_norm": 0.0517578125,
847
+ "learning_rate": 7.645923508590726e-05,
848
+ "loss": 0.09414710998535156,
849
+ "mean_token_accuracy": 0.9725460812449456,
850
+ "num_tokens": 2143268.0,
851
+ "step": 415
852
+ },
853
+ {
854
+ "entropy": 1.4235260367393494,
855
+ "epoch": 1.0447900466562987,
856
+ "grad_norm": 0.040283203125,
857
+ "learning_rate": 7.588679039527848e-05,
858
+ "loss": 0.0781755805015564,
859
+ "mean_token_accuracy": 0.9752240985631943,
860
+ "num_tokens": 2168154.0,
861
+ "step": 420
862
+ },
863
+ {
864
+ "entropy": 1.3582488745450974,
865
+ "epoch": 1.0572317262830482,
866
+ "grad_norm": 0.03564453125,
867
+ "learning_rate": 7.530967177249036e-05,
868
+ "loss": 0.06534834504127503,
869
+ "mean_token_accuracy": 0.9809993267059326,
870
+ "num_tokens": 2195567.0,
871
+ "step": 425
872
+ },
873
+ {
874
+ "entropy": 1.4120464980602265,
875
+ "epoch": 1.0696734059097979,
876
+ "grad_norm": 0.05029296875,
877
+ "learning_rate": 7.472798341791877e-05,
878
+ "loss": 0.08980979323387146,
879
+ "mean_token_accuracy": 0.9729388952255249,
880
+ "num_tokens": 2220651.0,
881
+ "step": 430
882
+ },
883
+ {
884
+ "entropy": 1.3695552781224252,
885
+ "epoch": 1.0821150855365473,
886
+ "grad_norm": 0.04736328125,
887
+ "learning_rate": 7.414183035701749e-05,
888
+ "loss": 0.07374750971794128,
889
+ "mean_token_accuracy": 0.9773057013750076,
890
+ "num_tokens": 2244016.0,
891
+ "step": 435
892
+ },
893
+ {
894
+ "entropy": 1.361125336587429,
895
+ "epoch": 1.094556765163297,
896
+ "grad_norm": 0.040283203125,
897
+ "learning_rate": 7.355131842135543e-05,
898
+ "loss": 0.09960444569587708,
899
+ "mean_token_accuracy": 0.9707440197467804,
900
+ "num_tokens": 2269688.0,
901
+ "step": 440
902
+ },
903
+ {
904
+ "entropy": 1.4232443049550056,
905
+ "epoch": 1.1069984447900467,
906
+ "grad_norm": 0.040283203125,
907
+ "learning_rate": 7.295655422950849e-05,
908
+ "loss": 0.08172831535339356,
909
+ "mean_token_accuracy": 0.9749625563621521,
910
+ "num_tokens": 2294075.0,
911
+ "step": 445
912
+ },
913
+ {
914
+ "entropy": 1.4120786994695664,
915
+ "epoch": 1.1194401244167962,
916
+ "grad_norm": 0.0341796875,
917
+ "learning_rate": 7.235764516780927e-05,
918
+ "loss": 0.06837162375450134,
919
+ "mean_token_accuracy": 0.9771177500486374,
920
+ "num_tokens": 2319276.0,
921
+ "step": 450
922
+ },
923
+ {
924
+ "entropy": 1.4431693792343139,
925
+ "epoch": 1.1318818040435459,
926
+ "grad_norm": 0.044677734375,
927
+ "learning_rate": 7.175469937095818e-05,
928
+ "loss": 0.08680518865585327,
929
+ "mean_token_accuracy": 0.9729270681738853,
930
+ "num_tokens": 2347219.0,
931
+ "step": 455
932
+ },
933
+ {
934
+ "entropy": 1.4526385068893433,
935
+ "epoch": 1.1443234836702956,
936
+ "grad_norm": 0.10302734375,
937
+ "learning_rate": 7.114782570249943e-05,
938
+ "loss": 0.09112498164176941,
939
+ "mean_token_accuracy": 0.973096051812172,
940
+ "num_tokens": 2372584.0,
941
+ "step": 460
942
+ },
943
+ {
944
+ "entropy": 1.3945886969566346,
945
+ "epoch": 1.156765163297045,
946
+ "grad_norm": 0.04443359375,
947
+ "learning_rate": 7.053713373516538e-05,
948
+ "loss": 0.07018510103225709,
949
+ "mean_token_accuracy": 0.9799379587173462,
950
+ "num_tokens": 2398752.0,
951
+ "step": 465
952
+ },
953
+ {
954
+ "entropy": 1.3700096011161804,
955
+ "epoch": 1.1692068429237947,
956
+ "grad_norm": 0.055908203125,
957
+ "learning_rate": 6.992273373109288e-05,
958
+ "loss": 0.06986131072044373,
959
+ "mean_token_accuracy": 0.9791282191872597,
960
+ "num_tokens": 2421888.0,
961
+ "step": 470
962
+ },
963
+ {
964
+ "entropy": 1.3979035422205925,
965
+ "epoch": 1.1816485225505442,
966
+ "grad_norm": 0.04736328125,
967
+ "learning_rate": 6.930473662191517e-05,
968
+ "loss": 0.09055956602096557,
969
+ "mean_token_accuracy": 0.9743469759821892,
970
+ "num_tokens": 2448705.0,
971
+ "step": 475
972
+ },
973
+ {
974
+ "entropy": 1.3682101637125015,
975
+ "epoch": 1.194090202177294,
976
+ "grad_norm": 0.07177734375,
977
+ "learning_rate": 6.868325398873284e-05,
978
+ "loss": 0.07687475085258484,
979
+ "mean_token_accuracy": 0.9755479469895363,
980
+ "num_tokens": 2474561.0,
981
+ "step": 480
982
+ },
983
+ {
984
+ "entropy": 1.36375695168972,
985
+ "epoch": 1.2065318818040436,
986
+ "grad_norm": 0.04248046875,
987
+ "learning_rate": 6.805839804196757e-05,
988
+ "loss": 0.09423953294754028,
989
+ "mean_token_accuracy": 0.9717281922698021,
990
+ "num_tokens": 2501620.0,
991
+ "step": 485
992
+ },
993
+ {
994
+ "entropy": 1.3528606280684472,
995
+ "epoch": 1.218973561430793,
996
+ "grad_norm": 0.050048828125,
997
+ "learning_rate": 6.743028160110215e-05,
998
+ "loss": 0.07231994867324829,
999
+ "mean_token_accuracy": 0.976399302482605,
1000
+ "num_tokens": 2527481.0,
1001
+ "step": 490
1002
+ },
1003
+ {
1004
+ "entropy": 1.4269449830055236,
1005
+ "epoch": 1.2314152410575427,
1006
+ "grad_norm": 0.061279296875,
1007
+ "learning_rate": 6.679901807431073e-05,
1008
+ "loss": 0.0847695529460907,
1009
+ "mean_token_accuracy": 0.9742431849241256,
1010
+ "num_tokens": 2553527.0,
1011
+ "step": 495
1012
+ },
1013
+ {
1014
+ "entropy": 1.4285764783620833,
1015
+ "epoch": 1.2438569206842924,
1016
+ "grad_norm": 0.044677734375,
1017
+ "learning_rate": 6.616472143798261e-05,
1018
+ "loss": 0.07603438496589661,
1019
+ "mean_token_accuracy": 0.9767945379018783,
1020
+ "num_tokens": 2580242.0,
1021
+ "step": 500
1022
+ },
1023
+ {
1024
+ "entropy": 1.4113897368311883,
1025
+ "epoch": 1.256298600311042,
1026
+ "grad_norm": 0.05078125,
1027
+ "learning_rate": 6.552750621614337e-05,
1028
+ "loss": 0.09946245551109315,
1029
+ "mean_token_accuracy": 0.9701174065470696,
1030
+ "num_tokens": 2604019.0,
1031
+ "step": 505
1032
+ },
1033
+ {
1034
+ "entropy": 1.2941894769668578,
1035
+ "epoch": 1.2687402799377916,
1036
+ "grad_norm": 0.035888671875,
1037
+ "learning_rate": 6.488748745977746e-05,
1038
+ "loss": 0.0612099289894104,
1039
+ "mean_token_accuracy": 0.981476029753685,
1040
+ "num_tokens": 2628945.0,
1041
+ "step": 510
1042
+ },
1043
+ {
1044
+ "entropy": 1.4310174494981767,
1045
+ "epoch": 1.2811819595645413,
1046
+ "grad_norm": 0.042724609375,
1047
+ "learning_rate": 6.424478072605522e-05,
1048
+ "loss": 0.06989500522613526,
1049
+ "mean_token_accuracy": 0.9810906872153282,
1050
+ "num_tokens": 2652720.0,
1051
+ "step": 515
1052
+ },
1053
+ {
1054
+ "entropy": 1.3148574769496917,
1055
+ "epoch": 1.2936236391912908,
1056
+ "grad_norm": 0.049072265625,
1057
+ "learning_rate": 6.359950205746881e-05,
1058
+ "loss": 0.07661423683166504,
1059
+ "mean_token_accuracy": 0.9741629838943482,
1060
+ "num_tokens": 2677256.0,
1061
+ "step": 520
1062
+ },
1063
+ {
1064
+ "entropy": 1.3354602426290512,
1065
+ "epoch": 1.3060653188180404,
1066
+ "grad_norm": 0.04736328125,
1067
+ "learning_rate": 6.295176796088045e-05,
1068
+ "loss": 0.0708840012550354,
1069
+ "mean_token_accuracy": 0.9720481187105179,
1070
+ "num_tokens": 2705462.0,
1071
+ "step": 525
1072
+ },
1073
+ {
1074
+ "entropy": 1.3693901777267456,
1075
+ "epoch": 1.3185069984447901,
1076
+ "grad_norm": 0.037353515625,
1077
+ "learning_rate": 6.230169538648667e-05,
1078
+ "loss": 0.06346817016601562,
1079
+ "mean_token_accuracy": 0.9793296322226525,
1080
+ "num_tokens": 2731465.0,
1081
+ "step": 530
1082
+ },
1083
+ {
1084
+ "entropy": 1.3165668994188309,
1085
+ "epoch": 1.3309486780715396,
1086
+ "grad_norm": 0.0625,
1087
+ "learning_rate": 6.164940170670266e-05,
1088
+ "loss": 0.08328393697738648,
1089
+ "mean_token_accuracy": 0.971780526638031,
1090
+ "num_tokens": 2759478.0,
1091
+ "step": 535
1092
+ },
1093
+ {
1094
+ "entropy": 1.34098874181509,
1095
+ "epoch": 1.3433903576982893,
1096
+ "grad_norm": 0.045166015625,
1097
+ "learning_rate": 6.09950046949705e-05,
1098
+ "loss": 0.08074995279312133,
1099
+ "mean_token_accuracy": 0.9730972275137901,
1100
+ "num_tokens": 2783456.0,
1101
+ "step": 540
1102
+ },
1103
+ {
1104
+ "entropy": 1.385405807197094,
1105
+ "epoch": 1.355832037325039,
1106
+ "grad_norm": 0.0556640625,
1107
+ "learning_rate": 6.0338622504494604e-05,
1108
+ "loss": 0.06526267528533936,
1109
+ "mean_token_accuracy": 0.9802431628108025,
1110
+ "num_tokens": 2808812.0,
1111
+ "step": 545
1112
+ },
1113
+ {
1114
+ "entropy": 1.393546462059021,
1115
+ "epoch": 1.3682737169517885,
1116
+ "grad_norm": 0.050048828125,
1117
+ "learning_rate": 5.968037364690897e-05,
1118
+ "loss": 0.08440290689468384,
1119
+ "mean_token_accuracy": 0.9747256502509117,
1120
+ "num_tokens": 2837088.0,
1121
+ "step": 550
1122
+ },
1123
+ {
1124
+ "entropy": 1.4094155162572861,
1125
+ "epoch": 1.3807153965785381,
1126
+ "grad_norm": 0.058837890625,
1127
+ "learning_rate": 5.902037697087957e-05,
1128
+ "loss": 0.07816668152809143,
1129
+ "mean_token_accuracy": 0.9740476593375206,
1130
+ "num_tokens": 2862524.0,
1131
+ "step": 555
1132
+ },
1133
+ {
1134
+ "entropy": 1.350576937198639,
1135
+ "epoch": 1.3931570762052878,
1136
+ "grad_norm": 0.055419921875,
1137
+ "learning_rate": 5.8358751640645835e-05,
1138
+ "loss": 0.06395477056503296,
1139
+ "mean_token_accuracy": 0.9800668403506279,
1140
+ "num_tokens": 2884137.0,
1141
+ "step": 560
1142
+ },
1143
+ {
1144
+ "entropy": 1.403828603029251,
1145
+ "epoch": 1.4055987558320373,
1146
+ "grad_norm": 0.037841796875,
1147
+ "learning_rate": 5.769561711450527e-05,
1148
+ "loss": 0.0748115599155426,
1149
+ "mean_token_accuracy": 0.9773760348558426,
1150
+ "num_tokens": 2906231.0,
1151
+ "step": 565
1152
+ },
1153
+ {
1154
+ "entropy": 1.3695515617728233,
1155
+ "epoch": 1.418040435458787,
1156
+ "grad_norm": 0.050048828125,
1157
+ "learning_rate": 5.7031093123244925e-05,
1158
+ "loss": 0.08527232408523559,
1159
+ "mean_token_accuracy": 0.9715872302651405,
1160
+ "num_tokens": 2932820.0,
1161
+ "step": 570
1162
+ },
1163
+ {
1164
+ "entropy": 1.4267593204975129,
1165
+ "epoch": 1.4304821150855365,
1166
+ "grad_norm": 0.05859375,
1167
+ "learning_rate": 5.6365299648523605e-05,
1168
+ "loss": 0.10021589994430542,
1169
+ "mean_token_accuracy": 0.9709113940596581,
1170
+ "num_tokens": 2956192.0,
1171
+ "step": 575
1172
+ },
1173
+ {
1174
+ "entropy": 1.3429571866989136,
1175
+ "epoch": 1.4429237947122862,
1176
+ "grad_norm": 0.06005859375,
1177
+ "learning_rate": 5.5698356901208925e-05,
1178
+ "loss": 0.107265305519104,
1179
+ "mean_token_accuracy": 0.9646854192018509,
1180
+ "num_tokens": 2980056.0,
1181
+ "step": 580
1182
+ },
1183
+ {
1184
+ "entropy": 1.4046858251094818,
1185
+ "epoch": 1.4553654743390358,
1186
+ "grad_norm": 0.04052734375,
1187
+ "learning_rate": 5.5030385299672884e-05,
1188
+ "loss": 0.08158871531486511,
1189
+ "mean_token_accuracy": 0.9777654156088829,
1190
+ "num_tokens": 3004045.0,
1191
+ "step": 585
1192
+ },
1193
+ {
1194
+ "entropy": 1.4346278131008148,
1195
+ "epoch": 1.4678071539657853,
1196
+ "grad_norm": 0.06201171875,
1197
+ "learning_rate": 5.436150544804994e-05,
1198
+ "loss": 0.07914494276046753,
1199
+ "mean_token_accuracy": 0.9757034927606583,
1200
+ "num_tokens": 3027916.0,
1201
+ "step": 590
1202
+ },
1203
+ {
1204
+ "entropy": 1.3918647408485412,
1205
+ "epoch": 1.480248833592535,
1206
+ "grad_norm": 0.07177734375,
1207
+ "learning_rate": 5.3691838114461626e-05,
1208
+ "loss": 0.09960976839065552,
1209
+ "mean_token_accuracy": 0.9678563356399537,
1210
+ "num_tokens": 3053663.0,
1211
+ "step": 595
1212
+ },
1213
+ {
1214
+ "entropy": 1.3449461698532104,
1215
+ "epoch": 1.4926905132192845,
1216
+ "grad_norm": 0.06982421875,
1217
+ "learning_rate": 5.302150420921161e-05,
1218
+ "loss": 0.08556955456733703,
1219
+ "mean_token_accuracy": 0.9714176893234253,
1220
+ "num_tokens": 3080272.0,
1221
+ "step": 600
1222
+ },
1223
+ {
1224
+ "entropy": 1.3727866768836976,
1225
+ "epoch": 1.5051321928460342,
1226
+ "grad_norm": 0.054931640625,
1227
+ "learning_rate": 5.2350624762954884e-05,
1228
+ "loss": 0.0717516303062439,
1229
+ "mean_token_accuracy": 0.9767438977956772,
1230
+ "num_tokens": 3107201.0,
1231
+ "step": 605
1232
+ },
1233
+ {
1234
+ "entropy": 1.3760264009237289,
1235
+ "epoch": 1.5175738724727839,
1236
+ "grad_norm": 0.04931640625,
1237
+ "learning_rate": 5.1679320904845365e-05,
1238
+ "loss": 0.08696765303611756,
1239
+ "mean_token_accuracy": 0.9729200676083565,
1240
+ "num_tokens": 3135290.0,
1241
+ "step": 610
1242
+ },
1243
+ {
1244
+ "entropy": 1.3937256038188934,
1245
+ "epoch": 1.5300155520995333,
1246
+ "grad_norm": 0.04931640625,
1247
+ "learning_rate": 5.100771384066575e-05,
1248
+ "loss": 0.06904829740524292,
1249
+ "mean_token_accuracy": 0.9765424266457557,
1250
+ "num_tokens": 3161468.0,
1251
+ "step": 615
1252
+ },
1253
+ {
1254
+ "entropy": 1.3464481949806213,
1255
+ "epoch": 1.542457231726283,
1256
+ "grad_norm": 0.0556640625,
1257
+ "learning_rate": 5.033592483094344e-05,
1258
+ "loss": 0.08148046731948852,
1259
+ "mean_token_accuracy": 0.9747312605381012,
1260
+ "num_tokens": 3187972.0,
1261
+ "step": 620
1262
+ },
1263
+ {
1264
+ "entropy": 1.3713692784309388,
1265
+ "epoch": 1.5548989113530327,
1266
+ "grad_norm": 0.04443359375,
1267
+ "learning_rate": 4.966407516905657e-05,
1268
+ "loss": 0.09401994347572326,
1269
+ "mean_token_accuracy": 0.9700708135962486,
1270
+ "num_tokens": 3218206.0,
1271
+ "step": 625
1272
+ },
1273
+ {
1274
+ "entropy": 1.4130443289875985,
1275
+ "epoch": 1.5673405909797822,
1276
+ "grad_norm": 0.05517578125,
1277
+ "learning_rate": 4.899228615933427e-05,
1278
+ "loss": 0.102409827709198,
1279
+ "mean_token_accuracy": 0.9645006597042084,
1280
+ "num_tokens": 3243182.0,
1281
+ "step": 630
1282
+ },
1283
+ {
1284
+ "entropy": 1.312636035680771,
1285
+ "epoch": 1.5797822706065319,
1286
+ "grad_norm": 0.05078125,
1287
+ "learning_rate": 4.832067909515467e-05,
1288
+ "loss": 0.07581937909126282,
1289
+ "mean_token_accuracy": 0.977123475074768,
1290
+ "num_tokens": 3270355.0,
1291
+ "step": 635
1292
+ },
1293
+ {
1294
+ "entropy": 1.2894637912511826,
1295
+ "epoch": 1.5922239502332816,
1296
+ "grad_norm": 0.0546875,
1297
+ "learning_rate": 4.7649375237045135e-05,
1298
+ "loss": 0.0760753870010376,
1299
+ "mean_token_accuracy": 0.9742821797728538,
1300
+ "num_tokens": 3295761.0,
1301
+ "step": 640
1302
+ },
1303
+ {
1304
+ "entropy": 1.3615785390138626,
1305
+ "epoch": 1.604665629860031,
1306
+ "grad_norm": 0.052001953125,
1307
+ "learning_rate": 4.697849579078838e-05,
1308
+ "loss": 0.08204466700553895,
1309
+ "mean_token_accuracy": 0.9755400061607361,
1310
+ "num_tokens": 3322763.0,
1311
+ "step": 645
1312
+ },
1313
+ {
1314
+ "entropy": 1.4578467637300492,
1315
+ "epoch": 1.6171073094867807,
1316
+ "grad_norm": 0.06787109375,
1317
+ "learning_rate": 4.630816188553837e-05,
1318
+ "loss": 0.10771067142486572,
1319
+ "mean_token_accuracy": 0.9648271799087524,
1320
+ "num_tokens": 3347850.0,
1321
+ "step": 650
1322
+ },
1323
+ {
1324
+ "entropy": 1.3541809171438217,
1325
+ "epoch": 1.6295489891135304,
1326
+ "grad_norm": 0.044921875,
1327
+ "learning_rate": 4.563849455195007e-05,
1328
+ "loss": 0.08120843768119812,
1329
+ "mean_token_accuracy": 0.9748451858758926,
1330
+ "num_tokens": 3378295.0,
1331
+ "step": 655
1332
+ },
1333
+ {
1334
+ "entropy": 1.3386278599500656,
1335
+ "epoch": 1.6419906687402799,
1336
+ "grad_norm": 0.05029296875,
1337
+ "learning_rate": 4.496961470032713e-05,
1338
+ "loss": 0.07182853221893311,
1339
+ "mean_token_accuracy": 0.9755081802606582,
1340
+ "num_tokens": 3407238.0,
1341
+ "step": 660
1342
+ },
1343
+ {
1344
+ "entropy": 1.3182463720440865,
1345
+ "epoch": 1.6544323483670296,
1346
+ "grad_norm": 0.044189453125,
1347
+ "learning_rate": 4.4301643098791086e-05,
1348
+ "loss": 0.0790963888168335,
1349
+ "mean_token_accuracy": 0.9719948589801788,
1350
+ "num_tokens": 3430188.0,
1351
+ "step": 665
1352
+ },
1353
+ {
1354
+ "entropy": 1.3785580173134804,
1355
+ "epoch": 1.6668740279937793,
1356
+ "grad_norm": 0.0537109375,
1357
+ "learning_rate": 4.363470035147641e-05,
1358
+ "loss": 0.0732508659362793,
1359
+ "mean_token_accuracy": 0.9752413406968117,
1360
+ "num_tokens": 3454755.0,
1361
+ "step": 670
1362
+ },
1363
+ {
1364
+ "entropy": 1.392490154504776,
1365
+ "epoch": 1.6793157076205287,
1366
+ "grad_norm": 0.041015625,
1367
+ "learning_rate": 4.29689068767551e-05,
1368
+ "loss": 0.07593491673469543,
1369
+ "mean_token_accuracy": 0.9777896001935005,
1370
+ "num_tokens": 3481020.0,
1371
+ "step": 675
1372
+ },
1373
+ {
1374
+ "entropy": 1.333091938495636,
1375
+ "epoch": 1.6917573872472784,
1376
+ "grad_norm": 0.052734375,
1377
+ "learning_rate": 4.2304382885494753e-05,
1378
+ "loss": 0.0870925784111023,
1379
+ "mean_token_accuracy": 0.9741413682699204,
1380
+ "num_tokens": 3507708.0,
1381
+ "step": 680
1382
+ },
1383
+ {
1384
+ "entropy": 1.320798073709011,
1385
+ "epoch": 1.7041990668740281,
1386
+ "grad_norm": 0.04833984375,
1387
+ "learning_rate": 4.164124835935418e-05,
1388
+ "loss": 0.0877147912979126,
1389
+ "mean_token_accuracy": 0.9753073915839195,
1390
+ "num_tokens": 3534100.0,
1391
+ "step": 685
1392
+ },
1393
+ {
1394
+ "entropy": 1.3160912215709686,
1395
+ "epoch": 1.7166407465007776,
1396
+ "grad_norm": 0.050537109375,
1397
+ "learning_rate": 4.0979623029120436e-05,
1398
+ "loss": 0.08963274955749512,
1399
+ "mean_token_accuracy": 0.9698545068502427,
1400
+ "num_tokens": 3558716.0,
1401
+ "step": 690
1402
+ },
1403
+ {
1404
+ "entropy": 1.3380629509687423,
1405
+ "epoch": 1.729082426127527,
1406
+ "grad_norm": 0.048095703125,
1407
+ "learning_rate": 4.031962635309104e-05,
1408
+ "loss": 0.07874792218208312,
1409
+ "mean_token_accuracy": 0.9740808755159378,
1410
+ "num_tokens": 3586065.0,
1411
+ "step": 695
1412
+ },
1413
+ {
1414
+ "entropy": 1.3654002964496612,
1415
+ "epoch": 1.741524105754277,
1416
+ "grad_norm": 0.047607421875,
1417
+ "learning_rate": 3.96613774955054e-05,
1418
+ "loss": 0.08268317580223083,
1419
+ "mean_token_accuracy": 0.9741670668125153,
1420
+ "num_tokens": 3613513.0,
1421
+ "step": 700
1422
+ },
1423
+ {
1424
+ "entropy": 1.3774547845125198,
1425
+ "epoch": 1.7539657853810264,
1426
+ "grad_norm": 0.04931640625,
1427
+ "learning_rate": 3.900499530502951e-05,
1428
+ "loss": 0.08645263314247131,
1429
+ "mean_token_accuracy": 0.9758756011724472,
1430
+ "num_tokens": 3640806.0,
1431
+ "step": 705
1432
+ },
1433
+ {
1434
+ "entropy": 1.3115302637219428,
1435
+ "epoch": 1.766407465007776,
1436
+ "grad_norm": 0.050537109375,
1437
+ "learning_rate": 3.835059829329735e-05,
1438
+ "loss": 0.07381963729858398,
1439
+ "mean_token_accuracy": 0.9768764480948449,
1440
+ "num_tokens": 3665922.0,
1441
+ "step": 710
1442
+ },
1443
+ {
1444
+ "entropy": 1.3822921440005302,
1445
+ "epoch": 1.7788491446345258,
1446
+ "grad_norm": 0.043212890625,
1447
+ "learning_rate": 3.769830461351336e-05,
1448
+ "loss": 0.09703359007835388,
1449
+ "mean_token_accuracy": 0.9744590654969215,
1450
+ "num_tokens": 3694612.0,
1451
+ "step": 715
1452
+ },
1453
+ {
1454
+ "entropy": 1.3549542352557182,
1455
+ "epoch": 1.7912908242612753,
1456
+ "grad_norm": 0.054931640625,
1457
+ "learning_rate": 3.704823203911957e-05,
1458
+ "loss": 0.09285060167312623,
1459
+ "mean_token_accuracy": 0.9735767096281052,
1460
+ "num_tokens": 3718319.0,
1461
+ "step": 720
1462
+ },
1463
+ {
1464
+ "entropy": 1.3544731348752976,
1465
+ "epoch": 1.8037325038880248,
1466
+ "grad_norm": 0.07421875,
1467
+ "learning_rate": 3.6400497942531186e-05,
1468
+ "loss": 0.07869815826416016,
1469
+ "mean_token_accuracy": 0.977102306485176,
1470
+ "num_tokens": 3742125.0,
1471
+ "step": 725
1472
+ },
1473
+ {
1474
+ "entropy": 1.3644321769475938,
1475
+ "epoch": 1.8161741835147744,
1476
+ "grad_norm": 0.0546875,
1477
+ "learning_rate": 3.57552192739448e-05,
1478
+ "loss": 0.08890414834022523,
1479
+ "mean_token_accuracy": 0.973346334695816,
1480
+ "num_tokens": 3765739.0,
1481
+ "step": 730
1482
+ },
1483
+ {
1484
+ "entropy": 1.3641284555196762,
1485
+ "epoch": 1.8286158631415241,
1486
+ "grad_norm": 0.045654296875,
1487
+ "learning_rate": 3.511251254022255e-05,
1488
+ "loss": 0.11303408145904541,
1489
+ "mean_token_accuracy": 0.9671000927686692,
1490
+ "num_tokens": 3790908.0,
1491
+ "step": 735
1492
+ },
1493
+ {
1494
+ "entropy": 1.352848869562149,
1495
+ "epoch": 1.8410575427682736,
1496
+ "grad_norm": 0.046875,
1497
+ "learning_rate": 3.447249378385663e-05,
1498
+ "loss": 0.07621319890022278,
1499
+ "mean_token_accuracy": 0.9736784845590591,
1500
+ "num_tokens": 3817021.0,
1501
+ "step": 740
1502
+ },
1503
+ {
1504
+ "entropy": 1.3620782911777496,
1505
+ "epoch": 1.8534992223950233,
1506
+ "grad_norm": 0.054443359375,
1507
+ "learning_rate": 3.38352785620174e-05,
1508
+ "loss": 0.07505900859832763,
1509
+ "mean_token_accuracy": 0.9756825506687165,
1510
+ "num_tokens": 3845607.0,
1511
+ "step": 745
1512
+ },
1513
+ {
1514
+ "entropy": 1.387294201552868,
1515
+ "epoch": 1.865940902021773,
1516
+ "grad_norm": 0.040771484375,
1517
+ "learning_rate": 3.3200981925689264e-05,
1518
+ "loss": 0.07677844166755676,
1519
+ "mean_token_accuracy": 0.9746143981814385,
1520
+ "num_tokens": 3871956.0,
1521
+ "step": 750
1522
+ },
1523
+ {
1524
+ "entropy": 1.3148253604769706,
1525
+ "epoch": 1.8783825816485225,
1526
+ "grad_norm": 0.04052734375,
1527
+ "learning_rate": 3.256971839889787e-05,
1528
+ "loss": 0.062203264236450194,
1529
+ "mean_token_accuracy": 0.9806876540184021,
1530
+ "num_tokens": 3896461.0,
1531
+ "step": 755
1532
+ },
1533
+ {
1534
+ "entropy": 1.297327271103859,
1535
+ "epoch": 1.8908242612752721,
1536
+ "grad_norm": 0.043212890625,
1537
+ "learning_rate": 3.194160195803245e-05,
1538
+ "loss": 0.07807562947273254,
1539
+ "mean_token_accuracy": 0.9751886636018753,
1540
+ "num_tokens": 3924652.0,
1541
+ "step": 760
1542
+ },
1543
+ {
1544
+ "entropy": 1.2678332865238189,
1545
+ "epoch": 1.9032659409020218,
1546
+ "grad_norm": 0.04833984375,
1547
+ "learning_rate": 3.1316746011267155e-05,
1548
+ "loss": 0.0622839629650116,
1549
+ "mean_token_accuracy": 0.980354443192482,
1550
+ "num_tokens": 3950947.0,
1551
+ "step": 765
1552
+ },
1553
+ {
1554
+ "entropy": 1.3001187965273857,
1555
+ "epoch": 1.9157076205287713,
1556
+ "grad_norm": 0.05322265625,
1557
+ "learning_rate": 3.0695263378084834e-05,
1558
+ "loss": 0.07793177962303162,
1559
+ "mean_token_accuracy": 0.9762747883796692,
1560
+ "num_tokens": 3977231.0,
1561
+ "step": 770
1562
+ },
1563
+ {
1564
+ "entropy": 1.343767161667347,
1565
+ "epoch": 1.928149300155521,
1566
+ "grad_norm": 0.058349609375,
1567
+ "learning_rate": 3.0077266268907124e-05,
1568
+ "loss": 0.09248242378234864,
1569
+ "mean_token_accuracy": 0.9737435877323151,
1570
+ "num_tokens": 4003918.0,
1571
+ "step": 775
1572
+ },
1573
+ {
1574
+ "entropy": 1.2801260307431221,
1575
+ "epoch": 1.9405909797822707,
1576
+ "grad_norm": 0.0673828125,
1577
+ "learning_rate": 2.946286626483463e-05,
1578
+ "loss": 0.07414901256561279,
1579
+ "mean_token_accuracy": 0.978515362739563,
1580
+ "num_tokens": 4027613.0,
1581
+ "step": 780
1582
+ },
1583
+ {
1584
+ "entropy": 1.3166591823101044,
1585
+ "epoch": 1.9530326594090202,
1586
+ "grad_norm": 0.0634765625,
1587
+ "learning_rate": 2.8852174297500567e-05,
1588
+ "loss": 0.0782233715057373,
1589
+ "mean_token_accuracy": 0.9734146118164062,
1590
+ "num_tokens": 4053231.0,
1591
+ "step": 785
1592
+ },
1593
+ {
1594
+ "entropy": 1.2959586173295974,
1595
+ "epoch": 1.9654743390357698,
1596
+ "grad_norm": 0.05078125,
1597
+ "learning_rate": 2.8245300629041838e-05,
1598
+ "loss": 0.08309885859489441,
1599
+ "mean_token_accuracy": 0.9741686061024666,
1600
+ "num_tokens": 4081234.0,
1601
+ "step": 790
1602
+ },
1603
+ {
1604
+ "entropy": 1.362495419383049,
1605
+ "epoch": 1.9779160186625195,
1606
+ "grad_norm": 0.047119140625,
1607
+ "learning_rate": 2.7642354832190747e-05,
1608
+ "loss": 0.09300965070724487,
1609
+ "mean_token_accuracy": 0.9714553162455559,
1610
+ "num_tokens": 4106601.0,
1611
+ "step": 795
1612
+ },
1613
+ {
1614
+ "entropy": 1.324322985112667,
1615
+ "epoch": 1.990357698289269,
1616
+ "grad_norm": 0.05078125,
1617
+ "learning_rate": 2.7043445770491526e-05,
1618
+ "loss": 0.0799511969089508,
1619
+ "mean_token_accuracy": 0.9754261270165443,
1620
+ "num_tokens": 4133337.0,
1621
+ "step": 800
1622
+ },
1623
+ {
1624
+ "epoch": 2.0,
1625
+ "eval_entropy": 1.3053412522588457,
1626
+ "eval_loss": 0.10880886763334274,
1627
+ "eval_mean_token_accuracy": 0.9662994710709961,
1628
+ "eval_num_tokens": 4152536.0,
1629
+ "eval_runtime": 24.7392,
1630
+ "eval_samples_per_second": 12.167,
1631
+ "eval_steps_per_second": 12.167,
1632
+ "step": 804
1633
+ },
1634
+ {
1635
+ "entropy": 1.3139420319826176,
1636
+ "epoch": 2.00248833592535,
1637
+ "grad_norm": 0.0311279296875,
1638
+ "learning_rate": 2.644868157864458e-05,
1639
+ "loss": 0.07132983803749085,
1640
+ "mean_token_accuracy": 0.9790512231680063,
1641
+ "num_tokens": 4157848.0,
1642
+ "step": 805
1643
+ },
1644
+ {
1645
+ "entropy": 1.3346404328942298,
1646
+ "epoch": 2.0149300155520997,
1647
+ "grad_norm": 0.036376953125,
1648
+ "learning_rate": 2.5858169642982515e-05,
1649
+ "loss": 0.06443278789520264,
1650
+ "mean_token_accuracy": 0.9790809944272041,
1651
+ "num_tokens": 4183018.0,
1652
+ "step": 810
1653
+ },
1654
+ {
1655
+ "entropy": 1.3496920108795165,
1656
+ "epoch": 2.027371695178849,
1657
+ "grad_norm": 0.046142578125,
1658
+ "learning_rate": 2.5272016582081236e-05,
1659
+ "loss": 0.046033966541290286,
1660
+ "mean_token_accuracy": 0.9862025916576386,
1661
+ "num_tokens": 4207722.0,
1662
+ "step": 815
1663
+ },
1664
+ {
1665
+ "entropy": 1.2798842176795007,
1666
+ "epoch": 2.0398133748055987,
1667
+ "grad_norm": 0.033203125,
1668
+ "learning_rate": 2.4690328227509668e-05,
1669
+ "loss": 0.04474189877510071,
1670
+ "mean_token_accuracy": 0.9851935356855392,
1671
+ "num_tokens": 4233615.0,
1672
+ "step": 820
1673
+ },
1674
+ {
1675
+ "entropy": 1.292403693497181,
1676
+ "epoch": 2.0522550544323486,
1677
+ "grad_norm": 0.036376953125,
1678
+ "learning_rate": 2.411320960472152e-05,
1679
+ "loss": 0.05720994472503662,
1680
+ "mean_token_accuracy": 0.9835459992289544,
1681
+ "num_tokens": 4260265.0,
1682
+ "step": 825
1683
+ },
1684
+ {
1685
+ "entropy": 1.2822298243641854,
1686
+ "epoch": 2.064696734059098,
1687
+ "grad_norm": 0.035888671875,
1688
+ "learning_rate": 2.354076491409274e-05,
1689
+ "loss": 0.06071372032165527,
1690
+ "mean_token_accuracy": 0.9809239432215691,
1691
+ "num_tokens": 4287688.0,
1692
+ "step": 830
1693
+ },
1694
+ {
1695
+ "entropy": 1.3030796691775322,
1696
+ "epoch": 2.0771384136858475,
1697
+ "grad_norm": 0.04443359375,
1698
+ "learning_rate": 2.2973097512107796e-05,
1699
+ "loss": 0.04943784773349762,
1700
+ "mean_token_accuracy": 0.9850927606225014,
1701
+ "num_tokens": 4311396.0,
1702
+ "step": 835
1703
+ },
1704
+ {
1705
+ "entropy": 1.2815598845481873,
1706
+ "epoch": 2.0895800933125974,
1707
+ "grad_norm": 0.039794921875,
1708
+ "learning_rate": 2.2410309892698322e-05,
1709
+ "loss": 0.06365938782691956,
1710
+ "mean_token_accuracy": 0.9812412708997726,
1711
+ "num_tokens": 4338280.0,
1712
+ "step": 840
1713
+ },
1714
+ {
1715
+ "entropy": 1.2353304088115693,
1716
+ "epoch": 2.102021772939347,
1717
+ "grad_norm": 0.0228271484375,
1718
+ "learning_rate": 2.185250366873765e-05,
1719
+ "loss": 0.03775741457939148,
1720
+ "mean_token_accuracy": 0.988109527528286,
1721
+ "num_tokens": 4361954.0,
1722
+ "step": 845
1723
+ },
1724
+ {
1725
+ "entropy": 1.3121544525027276,
1726
+ "epoch": 2.1144634525660964,
1727
+ "grad_norm": 0.052734375,
1728
+ "learning_rate": 2.1299779553694323e-05,
1729
+ "loss": 0.06021370887756348,
1730
+ "mean_token_accuracy": 0.9813222840428353,
1731
+ "num_tokens": 4389868.0,
1732
+ "step": 850
1733
+ },
1734
+ {
1735
+ "entropy": 1.2844686791300775,
1736
+ "epoch": 2.126905132192846,
1737
+ "grad_norm": 0.03466796875,
1738
+ "learning_rate": 2.075223734344785e-05,
1739
+ "loss": 0.043541711568832395,
1740
+ "mean_token_accuracy": 0.9842599242925644,
1741
+ "num_tokens": 4415143.0,
1742
+ "step": 855
1743
+ },
1744
+ {
1745
+ "entropy": 1.2730493247509003,
1746
+ "epoch": 2.1393468118195957,
1747
+ "grad_norm": 0.051025390625,
1748
+ "learning_rate": 2.0209975898270454e-05,
1749
+ "loss": 0.060882335901260375,
1750
+ "mean_token_accuracy": 0.9831152334809303,
1751
+ "num_tokens": 4439690.0,
1752
+ "step": 860
1753
+ },
1754
+ {
1755
+ "entropy": 1.3221701458096504,
1756
+ "epoch": 2.151788491446345,
1757
+ "grad_norm": 0.04638671875,
1758
+ "learning_rate": 1.967309312497752e-05,
1759
+ "loss": 0.06385582089424133,
1760
+ "mean_token_accuracy": 0.980524268746376,
1761
+ "num_tokens": 4468649.0,
1762
+ "step": 865
1763
+ },
1764
+ {
1765
+ "entropy": 1.308930653333664,
1766
+ "epoch": 2.1642301710730947,
1767
+ "grad_norm": 0.0478515625,
1768
+ "learning_rate": 1.914168595925016e-05,
1769
+ "loss": 0.05137070417404175,
1770
+ "mean_token_accuracy": 0.9829948961734771,
1771
+ "num_tokens": 4494900.0,
1772
+ "step": 870
1773
+ },
1774
+ {
1775
+ "entropy": 1.278279796242714,
1776
+ "epoch": 2.1766718506998446,
1777
+ "grad_norm": 0.044921875,
1778
+ "learning_rate": 1.861585034813334e-05,
1779
+ "loss": 0.053401678800582886,
1780
+ "mean_token_accuracy": 0.9820586636662483,
1781
+ "num_tokens": 4521907.0,
1782
+ "step": 875
1783
+ },
1784
+ {
1785
+ "entropy": 1.2940535843372345,
1786
+ "epoch": 2.189113530326594,
1787
+ "grad_norm": 0.033935546875,
1788
+ "learning_rate": 1.809568123271231e-05,
1789
+ "loss": 0.05988807678222656,
1790
+ "mean_token_accuracy": 0.9810460910201073,
1791
+ "num_tokens": 4546991.0,
1792
+ "step": 880
1793
+ },
1794
+ {
1795
+ "entropy": 1.3210156977176666,
1796
+ "epoch": 2.2015552099533435,
1797
+ "grad_norm": 0.03515625,
1798
+ "learning_rate": 1.7581272530970667e-05,
1799
+ "loss": 0.05812197327613831,
1800
+ "mean_token_accuracy": 0.9826369822025299,
1801
+ "num_tokens": 4573645.0,
1802
+ "step": 885
1803
+ },
1804
+ {
1805
+ "entropy": 1.2087926417589188,
1806
+ "epoch": 2.2139968895800934,
1807
+ "grad_norm": 0.03564453125,
1808
+ "learning_rate": 1.707271712083335e-05,
1809
+ "loss": 0.059379422664642335,
1810
+ "mean_token_accuracy": 0.9827022448182106,
1811
+ "num_tokens": 4598343.0,
1812
+ "step": 890
1813
+ },
1814
+ {
1815
+ "entropy": 1.2919662535190581,
1816
+ "epoch": 2.226438569206843,
1817
+ "grad_norm": 0.05126953125,
1818
+ "learning_rate": 1.6570106823397142e-05,
1819
+ "loss": 0.05405360460281372,
1820
+ "mean_token_accuracy": 0.9803063213825226,
1821
+ "num_tokens": 4625264.0,
1822
+ "step": 895
1823
+ },
1824
+ {
1825
+ "entropy": 1.2397317215800285,
1826
+ "epoch": 2.2388802488335924,
1827
+ "grad_norm": 0.035888671875,
1828
+ "learning_rate": 1.607353238635212e-05,
1829
+ "loss": 0.05695806741714478,
1830
+ "mean_token_accuracy": 0.9809326454997063,
1831
+ "num_tokens": 4655699.0,
1832
+ "step": 900
1833
+ },
1834
+ {
1835
+ "entropy": 1.2710261449217797,
1836
+ "epoch": 2.2513219284603423,
1837
+ "grad_norm": 0.053466796875,
1838
+ "learning_rate": 1.558308346759701e-05,
1839
+ "loss": 0.05667018294334412,
1840
+ "mean_token_accuracy": 0.9820555970072746,
1841
+ "num_tokens": 4682556.0,
1842
+ "step": 905
1843
+ },
1844
+ {
1845
+ "entropy": 1.3200107291340828,
1846
+ "epoch": 2.2637636080870918,
1847
+ "grad_norm": 0.0712890625,
1848
+ "learning_rate": 1.5098848619051109e-05,
1849
+ "loss": 0.058824723958969115,
1850
+ "mean_token_accuracy": 0.9803817018866539,
1851
+ "num_tokens": 4703229.0,
1852
+ "step": 910
1853
+ },
1854
+ {
1855
+ "entropy": 1.3161411359906197,
1856
+ "epoch": 2.2762052877138412,
1857
+ "grad_norm": 0.052978515625,
1858
+ "learning_rate": 1.4620915270665992e-05,
1859
+ "loss": 0.05733857154846191,
1860
+ "mean_token_accuracy": 0.9827383399009705,
1861
+ "num_tokens": 4732396.0,
1862
+ "step": 915
1863
+ },
1864
+ {
1865
+ "entropy": 1.27952651232481,
1866
+ "epoch": 2.288646967340591,
1867
+ "grad_norm": 0.0478515625,
1868
+ "learning_rate": 1.4149369714639853e-05,
1869
+ "loss": 0.0526383638381958,
1870
+ "mean_token_accuracy": 0.9817092105746269,
1871
+ "num_tokens": 4758145.0,
1872
+ "step": 920
1873
+ },
1874
+ {
1875
+ "entropy": 1.2732232689857483,
1876
+ "epoch": 2.3010886469673406,
1877
+ "grad_norm": 0.0281982421875,
1878
+ "learning_rate": 1.3684297089837155e-05,
1879
+ "loss": 0.055611425638198854,
1880
+ "mean_token_accuracy": 0.982058934867382,
1881
+ "num_tokens": 4784880.0,
1882
+ "step": 925
1883
+ },
1884
+ {
1885
+ "entropy": 1.2462307259440422,
1886
+ "epoch": 2.31353032659409,
1887
+ "grad_norm": 0.0498046875,
1888
+ "learning_rate": 1.3225781366416595e-05,
1889
+ "loss": 0.06674134135246276,
1890
+ "mean_token_accuracy": 0.9809619382023811,
1891
+ "num_tokens": 4814123.0,
1892
+ "step": 930
1893
+ },
1894
+ {
1895
+ "entropy": 1.3400009661912917,
1896
+ "epoch": 2.32597200622084,
1897
+ "grad_norm": 0.050048828125,
1898
+ "learning_rate": 1.2773905330670038e-05,
1899
+ "loss": 0.059016406536102295,
1900
+ "mean_token_accuracy": 0.9813900917768479,
1901
+ "num_tokens": 4838037.0,
1902
+ "step": 935
1903
+ },
1904
+ {
1905
+ "entropy": 1.2777298644185067,
1906
+ "epoch": 2.3384136858475895,
1907
+ "grad_norm": 0.0419921875,
1908
+ "learning_rate": 1.2328750570075265e-05,
1909
+ "loss": 0.04491693377494812,
1910
+ "mean_token_accuracy": 0.9859692931175232,
1911
+ "num_tokens": 4865586.0,
1912
+ "step": 940
1913
+ },
1914
+ {
1915
+ "entropy": 1.284477137029171,
1916
+ "epoch": 2.350855365474339,
1917
+ "grad_norm": 0.07763671875,
1918
+ "learning_rate": 1.1890397458565022e-05,
1919
+ "loss": 0.06391626596450806,
1920
+ "mean_token_accuracy": 0.9819939568638801,
1921
+ "num_tokens": 4889503.0,
1922
+ "step": 945
1923
+ },
1924
+ {
1925
+ "entropy": 1.2908324316143989,
1926
+ "epoch": 2.3632970451010884,
1927
+ "grad_norm": 0.050048828125,
1928
+ "learning_rate": 1.1458925142015431e-05,
1929
+ "loss": 0.06202779412269592,
1930
+ "mean_token_accuracy": 0.9813487082719803,
1931
+ "num_tokens": 4918754.0,
1932
+ "step": 950
1933
+ },
1934
+ {
1935
+ "entropy": 1.277482558786869,
1936
+ "epoch": 2.3757387247278383,
1937
+ "grad_norm": 0.031982421875,
1938
+ "learning_rate": 1.103441152395588e-05,
1939
+ "loss": 0.06154012680053711,
1940
+ "mean_token_accuracy": 0.9820781499147415,
1941
+ "num_tokens": 4945316.0,
1942
+ "step": 955
1943
+ },
1944
+ {
1945
+ "entropy": 1.2095389053225518,
1946
+ "epoch": 2.388180404354588,
1947
+ "grad_norm": 0.041748046875,
1948
+ "learning_rate": 1.061693325150332e-05,
1949
+ "loss": 0.06242812871932983,
1950
+ "mean_token_accuracy": 0.9817898482084274,
1951
+ "num_tokens": 4974069.0,
1952
+ "step": 960
1953
+ },
1954
+ {
1955
+ "entropy": 1.2972484081983566,
1956
+ "epoch": 2.4006220839813377,
1957
+ "grad_norm": 0.046875,
1958
+ "learning_rate": 1.0206565701523479e-05,
1959
+ "loss": 0.05046294927597046,
1960
+ "mean_token_accuracy": 0.9853808850049972,
1961
+ "num_tokens": 4999019.0,
1962
+ "step": 965
1963
+ },
1964
+ {
1965
+ "entropy": 1.3197123885154725,
1966
+ "epoch": 2.413063763608087,
1967
+ "grad_norm": 0.054443359375,
1968
+ "learning_rate": 9.803382967021318e-06,
1969
+ "loss": 0.049368086457252505,
1970
+ "mean_token_accuracy": 0.9852947980165482,
1971
+ "num_tokens": 5023412.0,
1972
+ "step": 970
1973
+ },
1974
+ {
1975
+ "entropy": 1.3319877043366433,
1976
+ "epoch": 2.4255054432348366,
1977
+ "grad_norm": 0.0693359375,
1978
+ "learning_rate": 9.407457843763324e-06,
1979
+ "loss": 0.0752966582775116,
1980
+ "mean_token_accuracy": 0.9780165493488312,
1981
+ "num_tokens": 5050267.0,
1982
+ "step": 975
1983
+ },
1984
+ {
1985
+ "entropy": 1.3291449189186095,
1986
+ "epoch": 2.437947122861586,
1987
+ "grad_norm": 0.056396484375,
1988
+ "learning_rate": 9.01886181713405e-06,
1989
+ "loss": 0.05530819296836853,
1990
+ "mean_token_accuracy": 0.9837485626339912,
1991
+ "num_tokens": 5074502.0,
1992
+ "step": 980
1993
+ },
1994
+ {
1995
+ "entropy": 1.3494797691702842,
1996
+ "epoch": 2.450388802488336,
1997
+ "grad_norm": 0.037353515625,
1998
+ "learning_rate": 8.637665049229243e-06,
1999
+ "loss": 0.052686119079589845,
2000
+ "mean_token_accuracy": 0.9853983774781228,
2001
+ "num_tokens": 5099489.0,
2002
+ "step": 985
2003
+ },
2004
+ {
2005
+ "entropy": 1.253180342912674,
2006
+ "epoch": 2.4628304821150855,
2007
+ "grad_norm": 0.054443359375,
2008
+ "learning_rate": 8.263936366187824e-06,
2009
+ "loss": 0.06666571497917176,
2010
+ "mean_token_accuracy": 0.9831083133816719,
2011
+ "num_tokens": 5121181.0,
2012
+ "step": 990
2013
+ },
2014
+ {
2015
+ "entropy": 1.3052298992872238,
2016
+ "epoch": 2.4752721617418354,
2017
+ "grad_norm": 0.037353515625,
2018
+ "learning_rate": 7.89774324576521e-06,
2019
+ "loss": 0.046898335218429565,
2020
+ "mean_token_accuracy": 0.9847671329975128,
2021
+ "num_tokens": 5144616.0,
2022
+ "step": 995
2023
+ },
2024
+ {
2025
+ "entropy": 1.2638304322957992,
2026
+ "epoch": 2.487713841368585,
2027
+ "grad_norm": 0.03271484375,
2028
+ "learning_rate": 7.539151805149985e-06,
2029
+ "loss": 0.045440280437469484,
2030
+ "mean_token_accuracy": 0.9862535953521728,
2031
+ "num_tokens": 5173304.0,
2032
+ "step": 1000
2033
+ }
2034
+ ],
2035
+ "logging_steps": 5,
2036
+ "max_steps": 1206,
2037
+ "num_input_tokens_seen": 0,
2038
+ "num_train_epochs": 3,
2039
+ "save_steps": 500,
2040
+ "stateful_callbacks": {
2041
+ "TrainerControl": {
2042
+ "args": {
2043
+ "should_epoch_stop": false,
2044
+ "should_evaluate": false,
2045
+ "should_log": false,
2046
+ "should_save": true,
2047
+ "should_training_stop": false
2048
+ },
2049
+ "attributes": {}
2050
+ }
2051
+ },
2052
+ "total_flos": 6.189578894138573e+16,
2053
+ "train_batch_size": 1,
2054
+ "trial_name": null,
2055
+ "trial_params": null
2056
+ }
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b76582097e27a940c0a231a0d53cf8cdc986bf57bf76ad6533b70015ba5c67
3
+ size 5713
checkpoint-1206/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: numind/NuExtract-2.0-2B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:numind/NuExtract-2.0-2B
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-1206/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": "numind/NuExtract-2.0-2B",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "up_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "gate_proj",
37
+ "down_proj",
38
+ "k_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-1206/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75111344ac6827da35318c801df614a13fec222a63157a24e959fa27b46ac70d
3
+ size 36987736
checkpoint-1206/chat_template.jinja ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_placeholder = '<|vision_start|><|image_pad|><|vision_end|>' -%}
2
+ {%- for message in messages -%}
3
+ {%- if message['role'] == 'system' -%}
4
+ {{- '<|im_start|>system
5
+ ' -}}
6
+ {%- if message['content'] is string -%}
7
+ {{- message['content'] | trim -}}
8
+ {%- endif -%}
9
+ {{- '<|im_end|>
10
+ ' -}}
11
+ {%- elif message['role'] == 'user' -%}
12
+ {%- if loop.first -%}
13
+ {{- '<|im_start|>system
14
+ ' -}}
15
+ {%- if template -%}
16
+ {#--- If template, extraction task ---#}
17
+ {{- 'You are NuExtract, an information extraction tool created by NuMind.' -}}
18
+ {%- else -%}
19
+ {#--- Else, template generation task ---#}
20
+ {{- 'You are a helpful assistant.' -}}
21
+ {%- endif -%}
22
+ {{ '<|im_end|>
23
+ ' }}
24
+ {%- endif -%}
25
+ {{- '<|im_start|>' + message['role'] + '
26
+ ' -}}
27
+ {%- if template -%}
28
+ {#--- Template Section ---#}
29
+ {{- '# Template:
30
+ ' -}}
31
+ {{- template -}}
32
+ {{- '
33
+ ' -}}
34
+
35
+ {%- if examples -%}
36
+ {#--- Examples can only exist in the extraction task ---#}
37
+ {{- '# Examples:
38
+ ' -}}
39
+ {%- for example in examples -%}
40
+ {{- '## Input:
41
+ ' -}}
42
+ {%- if example['input'] is mapping and (example['input']['type'] == 'image' or example['input']['type'] == 'image_url') -%}
43
+ {{- image_placeholder | trim -}}
44
+ {%- elif example['input'] == '<image>' -%}
45
+ {#--- Keep compatibility with <image> for now ---#}
46
+ {{- image_placeholder | trim -}}
47
+ {%- else -%}
48
+ {#--- Text input example ---#}
49
+ {{- example['input'] -}}
50
+ {%- endif -%}
51
+ {{- '
52
+ ' -}}
53
+ {{- '## Output:
54
+ ' -}}
55
+ {{- example['output'] -}}
56
+ {{- '
57
+ ' -}}
58
+ {%- endfor -%}
59
+ {%- endif -%}
60
+ {{- '# Context:
61
+ ' -}}
62
+ {%- endif -%}
63
+
64
+ {%- if message['content'] is string -%}
65
+ {#--- Simple string content ---#}
66
+ {{- message['content'] | trim -}}
67
+ {%- elif message['content'] is mapping and (message['content']['type'] == 'image' or message['content']['type'] == 'image_url') -%}
68
+ {{- image_placeholder | trim -}}
69
+ {%- else -%}
70
+ {#--- List of content items (mixed text/images) ---#}
71
+ {#--- First, determine what the actual input content is (not ICL images) ---#}
72
+ {%- set ns = namespace(has_text_input=false, text_content='') -%}
73
+
74
+ {#--- Count content types and identify actual input document ---#}
75
+ {%- for content in message['content'] -%}
76
+ {%- if content is mapping and content.get('type') == 'text' -%}
77
+ {%- if content.get('text') != '<image>' -%}
78
+ {#--- Keep compatibility with <image> for now ---#}
79
+ {%- set ns.has_text_input = true -%}
80
+ {%- set ns.text_content = content['text'] -%}
81
+ {%- endif -%}
82
+ {%- elif content is string -%}
83
+ {%- if content != '<image>' -%}
84
+ {#--- Keep compatibility with <image> for now ---#}
85
+ {%- set ns.has_text_input = true -%}
86
+ {%- set ns.text_content = content -%}
87
+ {%- endif -%}
88
+ {%- endif -%}
89
+ {%- endfor -%}
90
+
91
+ {#--- Determine what to output based on actual input type ---#}
92
+ {%- if ns.has_text_input -%}
93
+ {#--- Main input is text, so output the text content ---#}
94
+ {{- ns.text_content | trim -}}
95
+ {%- else -%}
96
+ {#--- Main input is image or <image> placeholder ---#}
97
+ {%- set ns2 = namespace(found_image=false) -%}
98
+ {%- for content in message['content'] -%}
99
+ {%- if content is mapping and (content.get('type') == 'image' or content.get('type') == 'image_url') and not ns2.found_image -%}
100
+ {{- image_placeholder | trim -}}
101
+ {%- set ns2.found_image = true -%}
102
+ {%- elif content is mapping and content.get('type') == 'text' and content.get('text') == '<image>' and not ns2.found_image -%}
103
+ {#--- Keep compatibility with <image> for now ---#}
104
+ {{- image_placeholder | trim -}}
105
+ {%- set ns2.found_image = true -%}
106
+ {%- elif content is string and content == '<image>' and not ns2.found_image -%}
107
+ {#--- Keep compatibility with <image> for now ---#}
108
+ {{- image_placeholder | trim -}}
109
+ {%- set ns2.found_image = true -%}
110
+ {%- endif -%}
111
+ {%- endfor -%}
112
+ {%- endif -%}
113
+ {%- endif -%}
114
+ {{- '<|im_end|>
115
+ '}}
116
+
117
+ {%- elif message['role'] == 'assistant' -%}
118
+ {{- '<|im_start|>assistant
119
+ ' -}}
120
+ {%- if message['content'] is string -%}
121
+ {{- message['content'] | trim -}}
122
+ {%- elif message['content'] is iterable and message['content'] is not string -%}
123
+ {%- for content in message['content'] -%}
124
+ {%- if content is mapping and content.get('type') == 'text' -%}
125
+ {{- content['text'] | trim -}}
126
+ {%- elif content is string -%}
127
+ {{- content | trim -}}
128
+ {%- endif -%}
129
+ {%- endfor -%}
130
+ {%- endif -%}
131
+ {{- '<|im_end|>
132
+ ' -}}
133
+ {%- endif -%}
134
+ {%- endfor -%}
135
+ {%- if add_generation_prompt -%}
136
+ {{- '<|im_start|>assistant
137
+ ' -}}
138
+ {%- endif -%}
checkpoint-1206/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f0cfb0f30c22bf8617409e96248871065ed248abe62399d13d128c94275e423
3
+ size 37974661
checkpoint-1206/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.48145466,
10
+ 0.4578275,
11
+ 0.40821073
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.26862954,
16
+ 0.26130258,
17
+ 0.27577711
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 14,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 23000000,
25
+ "shortest_edge": 200704
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen2_5_VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": false,
38
+ "image_mean": [
39
+ 0.48145466,
40
+ 0.4578275,
41
+ 0.40821073
42
+ ],
43
+ "image_processor_type": "Qwen2VLImageProcessor",
44
+ "image_std": [
45
+ 0.26862954,
46
+ 0.26130258,
47
+ 0.27577711
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 14,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 23000000,
58
+ "shortest_edge": 200704
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen2VLVideoProcessor"
62
+ }
63
+ }
checkpoint-1206/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57c507d4737f8fd4956b786b54960e0705ec80a763e92e698acb6ee8fbaf248f
3
+ size 14645
checkpoint-1206/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97bd5c49788fb1087c4805233ee40c9595252b330c52d191e3568fcd3d120784
3
+ size 1465
checkpoint-1206/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7aabe7a3b44651592a99607bb33066e6965260336be9218cccd53af161491d
3
+ size 11422060
checkpoint-1206/tokenizer_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_commit_hash": null,
3
+ "add_prefix_space": false,
4
+ "backend": "tokenizers",
5
+ "bos_token": null,
6
+ "clean_up_tokenization_spaces": false,
7
+ "eos_token": "<|im_end|>",
8
+ "errors": "replace",
9
+ "is_local": false,
10
+ "max_length": null,
11
+ "max_pixels": 23000000,
12
+ "min_pixels": 200704,
13
+ "model_max_length": 131072,
14
+ "pad_to_multiple_of": null,
15
+ "pad_token": "<|endoftext|>",
16
+ "pad_token_type_id": 0,
17
+ "padding_side": "right",
18
+ "processor_class": "Qwen2_5_VLProcessor",
19
+ "split_special_tokens": false,
20
+ "tokenizer_class": "Qwen2Tokenizer",
21
+ "unk_token": null
22
+ }
checkpoint-1206/trainer_state.json ADDED
@@ -0,0 +1,2466 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 3.0,
6
+ "eval_steps": 500,
7
+ "global_step": 1206,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.7456206619739532,
14
+ "epoch": 0.012441679626749611,
15
+ "grad_norm": 0.048583984375,
16
+ "learning_rate": 1.0810810810810812e-05,
17
+ "loss": 0.31386559009552,
18
+ "mean_token_accuracy": 0.9072110533714295,
19
+ "num_tokens": 27963.0,
20
+ "step": 5
21
+ },
22
+ {
23
+ "entropy": 1.8172702223062516,
24
+ "epoch": 0.024883359253499222,
25
+ "grad_norm": 0.0537109375,
26
+ "learning_rate": 2.4324324324324327e-05,
27
+ "loss": 0.28579437732696533,
28
+ "mean_token_accuracy": 0.9151854813098907,
29
+ "num_tokens": 51393.0,
30
+ "step": 10
31
+ },
32
+ {
33
+ "entropy": 1.7869735598564147,
34
+ "epoch": 0.03732503888024884,
35
+ "grad_norm": 0.046875,
36
+ "learning_rate": 3.783783783783784e-05,
37
+ "loss": 0.26468374729156496,
38
+ "mean_token_accuracy": 0.9194357767701149,
39
+ "num_tokens": 76323.0,
40
+ "step": 15
41
+ },
42
+ {
43
+ "entropy": 1.7407771855592729,
44
+ "epoch": 0.049766718506998445,
45
+ "grad_norm": 0.0546875,
46
+ "learning_rate": 5.135135135135135e-05,
47
+ "loss": 0.22699759006500245,
48
+ "mean_token_accuracy": 0.936237809062004,
49
+ "num_tokens": 101144.0,
50
+ "step": 20
51
+ },
52
+ {
53
+ "entropy": 1.8171133548021317,
54
+ "epoch": 0.06220839813374806,
55
+ "grad_norm": 0.06787109375,
56
+ "learning_rate": 6.486486486486487e-05,
57
+ "loss": 0.21160719394683838,
58
+ "mean_token_accuracy": 0.9410519078373909,
59
+ "num_tokens": 125653.0,
60
+ "step": 25
61
+ },
62
+ {
63
+ "entropy": 1.6494354471564292,
64
+ "epoch": 0.07465007776049767,
65
+ "grad_norm": 0.068359375,
66
+ "learning_rate": 7.837837837837838e-05,
67
+ "loss": 0.1776595950126648,
68
+ "mean_token_accuracy": 0.9463573560118675,
69
+ "num_tokens": 150968.0,
70
+ "step": 30
71
+ },
72
+ {
73
+ "entropy": 1.5880378365516663,
74
+ "epoch": 0.08709175738724728,
75
+ "grad_norm": 0.076171875,
76
+ "learning_rate": 9.18918918918919e-05,
77
+ "loss": 0.18801350593566896,
78
+ "mean_token_accuracy": 0.9474205821752548,
79
+ "num_tokens": 176859.0,
80
+ "step": 35
81
+ },
82
+ {
83
+ "entropy": 1.5649296075105668,
84
+ "epoch": 0.09953343701399689,
85
+ "grad_norm": 0.064453125,
86
+ "learning_rate": 9.99992777797229e-05,
87
+ "loss": 0.18648279905319215,
88
+ "mean_token_accuracy": 0.9436241507530212,
89
+ "num_tokens": 198909.0,
90
+ "step": 40
91
+ },
92
+ {
93
+ "entropy": 1.5894027322530746,
94
+ "epoch": 0.1119751166407465,
95
+ "grad_norm": 0.05322265625,
96
+ "learning_rate": 9.999115304121457e-05,
97
+ "loss": 0.18634642362594606,
98
+ "mean_token_accuracy": 0.9470892950892449,
99
+ "num_tokens": 228344.0,
100
+ "step": 45
101
+ },
102
+ {
103
+ "entropy": 1.596228164434433,
104
+ "epoch": 0.12441679626749612,
105
+ "grad_norm": 0.0478515625,
106
+ "learning_rate": 9.997400226068578e-05,
107
+ "loss": 0.14496899843215943,
108
+ "mean_token_accuracy": 0.9579829111695289,
109
+ "num_tokens": 257062.0,
110
+ "step": 50
111
+ },
112
+ {
113
+ "entropy": 1.509284293651581,
114
+ "epoch": 0.1368584758942457,
115
+ "grad_norm": 0.03369140625,
116
+ "learning_rate": 9.994782853475774e-05,
117
+ "loss": 0.14144277572631836,
118
+ "mean_token_accuracy": 0.9537434980273247,
119
+ "num_tokens": 283149.0,
120
+ "step": 55
121
+ },
122
+ {
123
+ "entropy": 1.5500743955373764,
124
+ "epoch": 0.14930015552099535,
125
+ "grad_norm": 0.0546875,
126
+ "learning_rate": 9.99126365891696e-05,
127
+ "loss": 0.15906004905700682,
128
+ "mean_token_accuracy": 0.9526497855782509,
129
+ "num_tokens": 313192.0,
130
+ "step": 60
131
+ },
132
+ {
133
+ "entropy": 1.5956889361143112,
134
+ "epoch": 0.16174183514774496,
135
+ "grad_norm": 0.061279296875,
136
+ "learning_rate": 9.986843277792523e-05,
137
+ "loss": 0.17970917224884034,
138
+ "mean_token_accuracy": 0.9503620356321335,
139
+ "num_tokens": 340137.0,
140
+ "step": 65
141
+ },
142
+ {
143
+ "entropy": 1.6294057995080948,
144
+ "epoch": 0.17418351477449456,
145
+ "grad_norm": 0.055908203125,
146
+ "learning_rate": 9.9815225082146e-05,
147
+ "loss": 0.14261267185211182,
148
+ "mean_token_accuracy": 0.9562160760164261,
149
+ "num_tokens": 364984.0,
150
+ "step": 70
151
+ },
152
+ {
153
+ "entropy": 1.589295208454132,
154
+ "epoch": 0.18662519440124417,
155
+ "grad_norm": 0.053466796875,
156
+ "learning_rate": 9.975302310862964e-05,
157
+ "loss": 0.1694250226020813,
158
+ "mean_token_accuracy": 0.9456220239400863,
159
+ "num_tokens": 390651.0,
160
+ "step": 75
161
+ },
162
+ {
163
+ "entropy": 1.583991777896881,
164
+ "epoch": 0.19906687402799378,
165
+ "grad_norm": 0.0478515625,
166
+ "learning_rate": 9.968183808811586e-05,
167
+ "loss": 0.17054636478424073,
168
+ "mean_token_accuracy": 0.9493257701396942,
169
+ "num_tokens": 418166.0,
170
+ "step": 80
171
+ },
172
+ {
173
+ "entropy": 1.5742847174406052,
174
+ "epoch": 0.2115085536547434,
175
+ "grad_norm": 0.06103515625,
176
+ "learning_rate": 9.960168287325852e-05,
177
+ "loss": 0.17596685886383057,
178
+ "mean_token_accuracy": 0.9445611819624901,
179
+ "num_tokens": 442501.0,
180
+ "step": 85
181
+ },
182
+ {
183
+ "entropy": 1.5073494076728822,
184
+ "epoch": 0.223950233281493,
185
+ "grad_norm": 0.06640625,
186
+ "learning_rate": 9.951257193630507e-05,
187
+ "loss": 0.13867353200912474,
188
+ "mean_token_accuracy": 0.9568744376301765,
189
+ "num_tokens": 468083.0,
190
+ "step": 90
191
+ },
192
+ {
193
+ "entropy": 1.5407251685857772,
194
+ "epoch": 0.2363919129082426,
195
+ "grad_norm": 0.0673828125,
196
+ "learning_rate": 9.941452136648359e-05,
197
+ "loss": 0.13775357007980346,
198
+ "mean_token_accuracy": 0.9594547316431999,
199
+ "num_tokens": 491914.0,
200
+ "step": 95
201
+ },
202
+ {
203
+ "entropy": 1.4568117886781693,
204
+ "epoch": 0.24883359253499224,
205
+ "grad_norm": 0.045166015625,
206
+ "learning_rate": 9.930754886709772e-05,
207
+ "loss": 0.13010139465332032,
208
+ "mean_token_accuracy": 0.9607375919818878,
209
+ "num_tokens": 518984.0,
210
+ "step": 100
211
+ },
212
+ {
213
+ "entropy": 1.4679558753967286,
214
+ "epoch": 0.26127527216174184,
215
+ "grad_norm": 0.0517578125,
216
+ "learning_rate": 9.919167375233041e-05,
217
+ "loss": 0.15394901037216185,
218
+ "mean_token_accuracy": 0.9542355045676232,
219
+ "num_tokens": 544627.0,
220
+ "step": 105
221
+ },
222
+ {
223
+ "entropy": 1.5308140426874162,
224
+ "epoch": 0.2737169517884914,
225
+ "grad_norm": 0.053955078125,
226
+ "learning_rate": 9.906691694375656e-05,
227
+ "loss": 0.14595698118209838,
228
+ "mean_token_accuracy": 0.9553182557225227,
229
+ "num_tokens": 568970.0,
230
+ "step": 110
231
+ },
232
+ {
233
+ "entropy": 1.5124749779701232,
234
+ "epoch": 0.28615863141524106,
235
+ "grad_norm": 0.08056640625,
236
+ "learning_rate": 9.893330096656574e-05,
237
+ "loss": 0.1251847267150879,
238
+ "mean_token_accuracy": 0.9631539225578308,
239
+ "num_tokens": 594854.0,
240
+ "step": 115
241
+ },
242
+ {
243
+ "entropy": 1.5146708011627197,
244
+ "epoch": 0.2986003110419907,
245
+ "grad_norm": 0.053955078125,
246
+ "learning_rate": 9.879084994549503e-05,
247
+ "loss": 0.12504571676254272,
248
+ "mean_token_accuracy": 0.9637450009584427,
249
+ "num_tokens": 621481.0,
250
+ "step": 120
251
+ },
252
+ {
253
+ "entropy": 1.5158167153596878,
254
+ "epoch": 0.3110419906687403,
255
+ "grad_norm": 0.03271484375,
256
+ "learning_rate": 9.863958960047335e-05,
257
+ "loss": 0.11272231340408326,
258
+ "mean_token_accuracy": 0.9642089486122132,
259
+ "num_tokens": 648057.0,
260
+ "step": 125
261
+ },
262
+ {
263
+ "entropy": 1.4378292948007583,
264
+ "epoch": 0.3234836702954899,
265
+ "grad_norm": 0.05078125,
266
+ "learning_rate": 9.847954724197757e-05,
267
+ "loss": 0.1520946979522705,
268
+ "mean_token_accuracy": 0.9551170215010643,
269
+ "num_tokens": 676272.0,
270
+ "step": 130
271
+ },
272
+ {
273
+ "entropy": 1.4547880798578263,
274
+ "epoch": 0.3359253499222395,
275
+ "grad_norm": 0.039794921875,
276
+ "learning_rate": 9.831075176610163e-05,
277
+ "loss": 0.13464858531951904,
278
+ "mean_token_accuracy": 0.9599997282028199,
279
+ "num_tokens": 702496.0,
280
+ "step": 135
281
+ },
282
+ {
283
+ "entropy": 1.5038821995258331,
284
+ "epoch": 0.3483670295489891,
285
+ "grad_norm": 0.058349609375,
286
+ "learning_rate": 9.813323364933915e-05,
287
+ "loss": 0.13690755367279053,
288
+ "mean_token_accuracy": 0.9559143736958504,
289
+ "num_tokens": 726296.0,
290
+ "step": 140
291
+ },
292
+ {
293
+ "entropy": 1.5725213587284088,
294
+ "epoch": 0.3608087091757387,
295
+ "grad_norm": 0.05615234375,
296
+ "learning_rate": 9.794702494308093e-05,
297
+ "loss": 0.14729396104812623,
298
+ "mean_token_accuracy": 0.9551976174116135,
299
+ "num_tokens": 752371.0,
300
+ "step": 145
301
+ },
302
+ {
303
+ "entropy": 1.4945250004529953,
304
+ "epoch": 0.37325038880248834,
305
+ "grad_norm": 0.0478515625,
306
+ "learning_rate": 9.775215926782788e-05,
307
+ "loss": 0.1206730842590332,
308
+ "mean_token_accuracy": 0.9687894850969314,
309
+ "num_tokens": 775896.0,
310
+ "step": 150
311
+ },
312
+ {
313
+ "entropy": 1.4557270616292954,
314
+ "epoch": 0.3856920684292379,
315
+ "grad_norm": 0.05419921875,
316
+ "learning_rate": 9.754867180712082e-05,
317
+ "loss": 0.1341879963874817,
318
+ "mean_token_accuracy": 0.9626043424010277,
319
+ "num_tokens": 798172.0,
320
+ "step": 155
321
+ },
322
+ {
323
+ "entropy": 1.4879502207040787,
324
+ "epoch": 0.39813374805598756,
325
+ "grad_norm": 0.05224609375,
326
+ "learning_rate": 9.733659930118793e-05,
327
+ "loss": 0.13069820404052734,
328
+ "mean_token_accuracy": 0.9548368141055107,
329
+ "num_tokens": 824452.0,
330
+ "step": 160
331
+ },
332
+ {
333
+ "entropy": 1.5602718144655228,
334
+ "epoch": 0.4105754276827372,
335
+ "grad_norm": 0.044189453125,
336
+ "learning_rate": 9.711598004031131e-05,
337
+ "loss": 0.13032547235488892,
338
+ "mean_token_accuracy": 0.9589100196957588,
339
+ "num_tokens": 849316.0,
340
+ "step": 165
341
+ },
342
+ {
343
+ "entropy": 1.488172698020935,
344
+ "epoch": 0.4230171073094868,
345
+ "grad_norm": 0.03466796875,
346
+ "learning_rate": 9.688685385791339e-05,
347
+ "loss": 0.13182138204574584,
348
+ "mean_token_accuracy": 0.9608529090881348,
349
+ "num_tokens": 878357.0,
350
+ "step": 170
351
+ },
352
+ {
353
+ "entropy": 1.4886444747447967,
354
+ "epoch": 0.4354587869362364,
355
+ "grad_norm": 0.044189453125,
356
+ "learning_rate": 9.664926212336505e-05,
357
+ "loss": 0.1238294005393982,
358
+ "mean_token_accuracy": 0.960505859553814,
359
+ "num_tokens": 904192.0,
360
+ "step": 175
361
+ },
362
+ {
363
+ "entropy": 1.5064076393842698,
364
+ "epoch": 0.447900466562986,
365
+ "grad_norm": 0.0458984375,
366
+ "learning_rate": 9.640324773451622e-05,
367
+ "loss": 0.167707359790802,
368
+ "mean_token_accuracy": 0.9532883360981941,
369
+ "num_tokens": 930575.0,
370
+ "step": 180
371
+ },
372
+ {
373
+ "entropy": 1.445479767024517,
374
+ "epoch": 0.4603421461897356,
375
+ "grad_norm": 0.048583984375,
376
+ "learning_rate": 9.614885510995047e-05,
377
+ "loss": 0.12214440107345581,
378
+ "mean_token_accuracy": 0.9636711940169335,
379
+ "num_tokens": 954713.0,
380
+ "step": 185
381
+ },
382
+ {
383
+ "entropy": 1.508093237876892,
384
+ "epoch": 0.4727838258164852,
385
+ "grad_norm": 0.052734375,
386
+ "learning_rate": 9.588613018096529e-05,
387
+ "loss": 0.13071714639663695,
388
+ "mean_token_accuracy": 0.9601568162441254,
389
+ "num_tokens": 981241.0,
390
+ "step": 190
391
+ },
392
+ {
393
+ "entropy": 1.4727303981781006,
394
+ "epoch": 0.48522550544323484,
395
+ "grad_norm": 0.052978515625,
396
+ "learning_rate": 9.561512038327882e-05,
397
+ "loss": 0.11298023462295533,
398
+ "mean_token_accuracy": 0.9675653219223023,
399
+ "num_tokens": 1007954.0,
400
+ "step": 195
401
+ },
402
+ {
403
+ "entropy": 1.463455791771412,
404
+ "epoch": 0.4976671850699845,
405
+ "grad_norm": 0.050537109375,
406
+ "learning_rate": 9.533587464846548e-05,
407
+ "loss": 0.13673393726348876,
408
+ "mean_token_accuracy": 0.9588131874799728,
409
+ "num_tokens": 1037256.0,
410
+ "step": 200
411
+ },
412
+ {
413
+ "entropy": 1.455343420803547,
414
+ "epoch": 0.5101088646967341,
415
+ "grad_norm": 0.060302734375,
416
+ "learning_rate": 9.504844339512095e-05,
417
+ "loss": 0.16279250383377075,
418
+ "mean_token_accuracy": 0.952251310646534,
419
+ "num_tokens": 1059784.0,
420
+ "step": 205
421
+ },
422
+ {
423
+ "entropy": 1.512709778547287,
424
+ "epoch": 0.5225505443234837,
425
+ "grad_norm": 0.042724609375,
426
+ "learning_rate": 9.475287851975925e-05,
427
+ "loss": 0.10544586181640625,
428
+ "mean_token_accuracy": 0.9677229434251785,
429
+ "num_tokens": 1082209.0,
430
+ "step": 210
431
+ },
432
+ {
433
+ "entropy": 1.462220585346222,
434
+ "epoch": 0.5349922239502333,
435
+ "grad_norm": 0.0400390625,
436
+ "learning_rate": 9.444923338744239e-05,
437
+ "loss": 0.11979058980941773,
438
+ "mean_token_accuracy": 0.9626576647162437,
439
+ "num_tokens": 1110595.0,
440
+ "step": 215
441
+ },
442
+ {
443
+ "entropy": 1.4548005178570746,
444
+ "epoch": 0.5474339035769828,
445
+ "grad_norm": 0.04345703125,
446
+ "learning_rate": 9.413756282214537e-05,
447
+ "loss": 0.1187555432319641,
448
+ "mean_token_accuracy": 0.9617565467953682,
449
+ "num_tokens": 1135832.0,
450
+ "step": 220
451
+ },
452
+ {
453
+ "entropy": 1.493788743019104,
454
+ "epoch": 0.5598755832037325,
455
+ "grad_norm": 0.06591796875,
456
+ "learning_rate": 9.381792309685746e-05,
457
+ "loss": 0.15725988149642944,
458
+ "mean_token_accuracy": 0.9544133111834526,
459
+ "num_tokens": 1163621.0,
460
+ "step": 225
461
+ },
462
+ {
463
+ "entropy": 1.4669800892472267,
464
+ "epoch": 0.5723172628304821,
465
+ "grad_norm": 0.042236328125,
466
+ "learning_rate": 9.3490371923422e-05,
467
+ "loss": 0.12038854360580445,
468
+ "mean_token_accuracy": 0.9577056676149368,
469
+ "num_tokens": 1188345.0,
470
+ "step": 230
471
+ },
472
+ {
473
+ "entropy": 1.5317447245121003,
474
+ "epoch": 0.5847589424572317,
475
+ "grad_norm": 0.05615234375,
476
+ "learning_rate": 9.31549684421163e-05,
477
+ "loss": 0.12890284061431884,
478
+ "mean_token_accuracy": 0.9609759420156478,
479
+ "num_tokens": 1215187.0,
480
+ "step": 235
481
+ },
482
+ {
483
+ "entropy": 1.502908742427826,
484
+ "epoch": 0.5972006220839814,
485
+ "grad_norm": 0.048828125,
486
+ "learning_rate": 9.28117732109738e-05,
487
+ "loss": 0.12224407196044922,
488
+ "mean_token_accuracy": 0.9638051286339759,
489
+ "num_tokens": 1241282.0,
490
+ "step": 240
491
+ },
492
+ {
493
+ "entropy": 1.4564243242144586,
494
+ "epoch": 0.609642301710731,
495
+ "grad_norm": 0.04638671875,
496
+ "learning_rate": 9.246084819485004e-05,
497
+ "loss": 0.13289834260940553,
498
+ "mean_token_accuracy": 0.9601684510707855,
499
+ "num_tokens": 1268251.0,
500
+ "step": 245
501
+ },
502
+ {
503
+ "entropy": 1.4659890502691268,
504
+ "epoch": 0.6220839813374806,
505
+ "grad_norm": 0.0595703125,
506
+ "learning_rate": 9.21022567542348e-05,
507
+ "loss": 0.14783012866973877,
508
+ "mean_token_accuracy": 0.9558995455503464,
509
+ "num_tokens": 1292958.0,
510
+ "step": 250
511
+ },
512
+ {
513
+ "entropy": 1.4668870717287064,
514
+ "epoch": 0.6345256609642301,
515
+ "grad_norm": 0.057861328125,
516
+ "learning_rate": 9.173606363381219e-05,
517
+ "loss": 0.12078696489334106,
518
+ "mean_token_accuracy": 0.965465834736824,
519
+ "num_tokens": 1318689.0,
520
+ "step": 255
521
+ },
522
+ {
523
+ "entropy": 1.4572956532239913,
524
+ "epoch": 0.6469673405909798,
525
+ "grad_norm": 0.05126953125,
526
+ "learning_rate": 9.136233495077077e-05,
527
+ "loss": 0.1338449239730835,
528
+ "mean_token_accuracy": 0.9598589226603508,
529
+ "num_tokens": 1345620.0,
530
+ "step": 260
531
+ },
532
+ {
533
+ "entropy": 1.436805287003517,
534
+ "epoch": 0.6594090202177294,
535
+ "grad_norm": 0.050537109375,
536
+ "learning_rate": 9.098113818286595e-05,
537
+ "loss": 0.1269620180130005,
538
+ "mean_token_accuracy": 0.963837206363678,
539
+ "num_tokens": 1369989.0,
540
+ "step": 265
541
+ },
542
+ {
543
+ "entropy": 1.430183658003807,
544
+ "epoch": 0.671850699844479,
545
+ "grad_norm": 0.037353515625,
546
+ "learning_rate": 9.059254215623668e-05,
547
+ "loss": 0.09294362068176269,
548
+ "mean_token_accuracy": 0.9718702122569084,
549
+ "num_tokens": 1399090.0,
550
+ "step": 270
551
+ },
552
+ {
553
+ "entropy": 1.4391476839780808,
554
+ "epoch": 0.6842923794712286,
555
+ "grad_norm": 0.042236328125,
556
+ "learning_rate": 9.01966170329787e-05,
557
+ "loss": 0.11170387268066406,
558
+ "mean_token_accuracy": 0.9664130583405495,
559
+ "num_tokens": 1425851.0,
560
+ "step": 275
561
+ },
562
+ {
563
+ "entropy": 1.5080994993448258,
564
+ "epoch": 0.6967340590979783,
565
+ "grad_norm": 0.06005859375,
566
+ "learning_rate": 8.979343429847653e-05,
567
+ "loss": 0.1207460641860962,
568
+ "mean_token_accuracy": 0.96175517141819,
569
+ "num_tokens": 1450517.0,
570
+ "step": 280
571
+ },
572
+ {
573
+ "entropy": 1.4918249040842055,
574
+ "epoch": 0.7091757387247278,
575
+ "grad_norm": 0.0419921875,
576
+ "learning_rate": 8.93830667484967e-05,
577
+ "loss": 0.11671255826950074,
578
+ "mean_token_accuracy": 0.9663726434111595,
579
+ "num_tokens": 1474715.0,
580
+ "step": 285
581
+ },
582
+ {
583
+ "entropy": 1.4864625990390778,
584
+ "epoch": 0.7216174183514774,
585
+ "grad_norm": 0.044921875,
586
+ "learning_rate": 8.896558847604414e-05,
587
+ "loss": 0.12517218589782714,
588
+ "mean_token_accuracy": 0.9652746349573136,
589
+ "num_tokens": 1499442.0,
590
+ "step": 290
591
+ },
592
+ {
593
+ "entropy": 1.490417730808258,
594
+ "epoch": 0.7340590979782271,
595
+ "grad_norm": 0.037841796875,
596
+ "learning_rate": 8.854107485798458e-05,
597
+ "loss": 0.11757193803787232,
598
+ "mean_token_accuracy": 0.9664239585399628,
599
+ "num_tokens": 1523873.0,
600
+ "step": 295
601
+ },
602
+ {
603
+ "entropy": 1.4401051640510558,
604
+ "epoch": 0.7465007776049767,
605
+ "grad_norm": 0.053466796875,
606
+ "learning_rate": 8.810960254143499e-05,
607
+ "loss": 0.13470059633255005,
608
+ "mean_token_accuracy": 0.9591680407524109,
609
+ "num_tokens": 1548575.0,
610
+ "step": 300
611
+ },
612
+ {
613
+ "entropy": 1.5322502881288529,
614
+ "epoch": 0.7589424572317263,
615
+ "grad_norm": 0.053955078125,
616
+ "learning_rate": 8.767124942992475e-05,
617
+ "loss": 0.12030593156814576,
618
+ "mean_token_accuracy": 0.9647545605897904,
619
+ "num_tokens": 1575643.0,
620
+ "step": 305
621
+ },
622
+ {
623
+ "entropy": 1.458931715786457,
624
+ "epoch": 0.7713841368584758,
625
+ "grad_norm": 0.042724609375,
626
+ "learning_rate": 8.722609466932996e-05,
627
+ "loss": 0.09307305216789245,
628
+ "mean_token_accuracy": 0.9665900468826294,
629
+ "num_tokens": 1600333.0,
630
+ "step": 310
631
+ },
632
+ {
633
+ "entropy": 1.458182653784752,
634
+ "epoch": 0.7838258164852255,
635
+ "grad_norm": 0.047607421875,
636
+ "learning_rate": 8.677421863358341e-05,
637
+ "loss": 0.12296299934387207,
638
+ "mean_token_accuracy": 0.9640052378177643,
639
+ "num_tokens": 1625117.0,
640
+ "step": 315
641
+ },
642
+ {
643
+ "entropy": 1.4836479336023332,
644
+ "epoch": 0.7962674961119751,
645
+ "grad_norm": 0.05126953125,
646
+ "learning_rate": 8.631570291016284e-05,
647
+ "loss": 0.12105728387832641,
648
+ "mean_token_accuracy": 0.9649034470319748,
649
+ "num_tokens": 1649929.0,
650
+ "step": 320
651
+ },
652
+ {
653
+ "entropy": 1.5023894742131234,
654
+ "epoch": 0.8087091757387247,
655
+ "grad_norm": 0.044921875,
656
+ "learning_rate": 8.585063028536016e-05,
657
+ "loss": 0.10724372863769531,
658
+ "mean_token_accuracy": 0.965858943760395,
659
+ "num_tokens": 1675782.0,
660
+ "step": 325
661
+ },
662
+ {
663
+ "entropy": 1.4469050377607346,
664
+ "epoch": 0.8211508553654744,
665
+ "grad_norm": 0.052490234375,
666
+ "learning_rate": 8.537908472933402e-05,
667
+ "loss": 0.13695430755615234,
668
+ "mean_token_accuracy": 0.9561882585287094,
669
+ "num_tokens": 1703718.0,
670
+ "step": 330
671
+ },
672
+ {
673
+ "entropy": 1.5462682336568832,
674
+ "epoch": 0.833592534992224,
675
+ "grad_norm": 0.047607421875,
676
+ "learning_rate": 8.490115138094889e-05,
677
+ "loss": 0.14301273822784424,
678
+ "mean_token_accuracy": 0.9608543425798416,
679
+ "num_tokens": 1731614.0,
680
+ "step": 335
681
+ },
682
+ {
683
+ "entropy": 1.5303865879774095,
684
+ "epoch": 0.8460342146189735,
685
+ "grad_norm": 0.0556640625,
686
+ "learning_rate": 8.4416916532403e-05,
687
+ "loss": 0.1558545470237732,
688
+ "mean_token_accuracy": 0.9530998334288597,
689
+ "num_tokens": 1758723.0,
690
+ "step": 340
691
+ },
692
+ {
693
+ "entropy": 1.451111488044262,
694
+ "epoch": 0.8584758942457231,
695
+ "grad_norm": 0.039794921875,
696
+ "learning_rate": 8.392646761364789e-05,
697
+ "loss": 0.10284805297851562,
698
+ "mean_token_accuracy": 0.9650755852460862,
699
+ "num_tokens": 1785721.0,
700
+ "step": 345
701
+ },
702
+ {
703
+ "entropy": 1.484094935655594,
704
+ "epoch": 0.8709175738724728,
705
+ "grad_norm": 0.05419921875,
706
+ "learning_rate": 8.342989317660289e-05,
707
+ "loss": 0.10030006170272827,
708
+ "mean_token_accuracy": 0.9675216883420944,
709
+ "num_tokens": 1814257.0,
710
+ "step": 350
711
+ },
712
+ {
713
+ "entropy": 1.5280012369155884,
714
+ "epoch": 0.8833592534992224,
715
+ "grad_norm": 0.0546875,
716
+ "learning_rate": 8.292728287916665e-05,
717
+ "loss": 0.09518902897834777,
718
+ "mean_token_accuracy": 0.9697460547089577,
719
+ "num_tokens": 1838719.0,
720
+ "step": 355
721
+ },
722
+ {
723
+ "entropy": 1.4606290251016616,
724
+ "epoch": 0.895800933125972,
725
+ "grad_norm": 0.05810546875,
726
+ "learning_rate": 8.241872746902935e-05,
727
+ "loss": 0.09836371541023255,
728
+ "mean_token_accuracy": 0.9680053278803825,
729
+ "num_tokens": 1860428.0,
730
+ "step": 360
731
+ },
732
+ {
733
+ "entropy": 1.4977456852793694,
734
+ "epoch": 0.9082426127527217,
735
+ "grad_norm": 0.053466796875,
736
+ "learning_rate": 8.190431876728772e-05,
737
+ "loss": 0.11404428482055665,
738
+ "mean_token_accuracy": 0.9683067321777343,
739
+ "num_tokens": 1887249.0,
740
+ "step": 365
741
+ },
742
+ {
743
+ "entropy": 1.4481744587421417,
744
+ "epoch": 0.9206842923794712,
745
+ "grad_norm": 0.04248046875,
746
+ "learning_rate": 8.138414965186667e-05,
747
+ "loss": 0.11055492162704468,
748
+ "mean_token_accuracy": 0.9680417776107788,
749
+ "num_tokens": 1913193.0,
750
+ "step": 370
751
+ },
752
+ {
753
+ "entropy": 1.4087932407855988,
754
+ "epoch": 0.9331259720062208,
755
+ "grad_norm": 0.048583984375,
756
+ "learning_rate": 8.085831404074984e-05,
757
+ "loss": 0.08752046227455139,
758
+ "mean_token_accuracy": 0.9722029373049736,
759
+ "num_tokens": 1935245.0,
760
+ "step": 375
761
+ },
762
+ {
763
+ "entropy": 1.4568452775478362,
764
+ "epoch": 0.9455676516329704,
765
+ "grad_norm": 0.0576171875,
766
+ "learning_rate": 8.03269068750225e-05,
767
+ "loss": 0.11881341934204101,
768
+ "mean_token_accuracy": 0.959407502412796,
769
+ "num_tokens": 1961480.0,
770
+ "step": 380
771
+ },
772
+ {
773
+ "entropy": 1.4280684739351273,
774
+ "epoch": 0.9580093312597201,
775
+ "grad_norm": 0.05078125,
776
+ "learning_rate": 7.979002410172954e-05,
777
+ "loss": 0.14049121141433715,
778
+ "mean_token_accuracy": 0.9576024219393731,
779
+ "num_tokens": 1986643.0,
780
+ "step": 385
781
+ },
782
+ {
783
+ "entropy": 1.4764668315649032,
784
+ "epoch": 0.9704510108864697,
785
+ "grad_norm": 0.040283203125,
786
+ "learning_rate": 7.924776265655216e-05,
787
+ "loss": 0.11259770393371582,
788
+ "mean_token_accuracy": 0.9635465934872627,
789
+ "num_tokens": 2012509.0,
790
+ "step": 390
791
+ },
792
+ {
793
+ "entropy": 1.4508350789546967,
794
+ "epoch": 0.9828926905132193,
795
+ "grad_norm": 0.0361328125,
796
+ "learning_rate": 7.870022044630569e-05,
797
+ "loss": 0.11488029956817628,
798
+ "mean_token_accuracy": 0.9670460253953934,
799
+ "num_tokens": 2039717.0,
800
+ "step": 395
801
+ },
802
+ {
803
+ "entropy": 1.5077543556690216,
804
+ "epoch": 0.995334370139969,
805
+ "grad_norm": 0.06201171875,
806
+ "learning_rate": 7.814749633126235e-05,
807
+ "loss": 0.1424098014831543,
808
+ "mean_token_accuracy": 0.9543160945177078,
809
+ "num_tokens": 2064948.0,
810
+ "step": 400
811
+ },
812
+ {
813
+ "epoch": 1.0,
814
+ "eval_entropy": 1.4550913160425485,
815
+ "eval_loss": 0.12082157284021378,
816
+ "eval_mean_token_accuracy": 0.9625284673763668,
817
+ "eval_num_tokens": 2076268.0,
818
+ "eval_runtime": 24.7531,
819
+ "eval_samples_per_second": 12.16,
820
+ "eval_steps_per_second": 12.16,
821
+ "step": 402
822
+ },
823
+ {
824
+ "entropy": 1.4730579455693562,
825
+ "epoch": 1.0074650077760499,
826
+ "grad_norm": 0.0322265625,
827
+ "learning_rate": 7.75896901073017e-05,
828
+ "loss": 0.08911717534065247,
829
+ "mean_token_accuracy": 0.9732377681976709,
830
+ "num_tokens": 2088687.0,
831
+ "step": 405
832
+ },
833
+ {
834
+ "entropy": 1.436254122853279,
835
+ "epoch": 1.0199066874027993,
836
+ "grad_norm": 0.04931640625,
837
+ "learning_rate": 7.702690248789223e-05,
838
+ "loss": 0.10224579572677613,
839
+ "mean_token_accuracy": 0.9676861181855202,
840
+ "num_tokens": 2114020.0,
841
+ "step": 410
842
+ },
843
+ {
844
+ "entropy": 1.4225786730647088,
845
+ "epoch": 1.032348367029549,
846
+ "grad_norm": 0.0517578125,
847
+ "learning_rate": 7.645923508590726e-05,
848
+ "loss": 0.09414710998535156,
849
+ "mean_token_accuracy": 0.9725460812449456,
850
+ "num_tokens": 2143268.0,
851
+ "step": 415
852
+ },
853
+ {
854
+ "entropy": 1.4235260367393494,
855
+ "epoch": 1.0447900466562987,
856
+ "grad_norm": 0.040283203125,
857
+ "learning_rate": 7.588679039527848e-05,
858
+ "loss": 0.0781755805015564,
859
+ "mean_token_accuracy": 0.9752240985631943,
860
+ "num_tokens": 2168154.0,
861
+ "step": 420
862
+ },
863
+ {
864
+ "entropy": 1.3582488745450974,
865
+ "epoch": 1.0572317262830482,
866
+ "grad_norm": 0.03564453125,
867
+ "learning_rate": 7.530967177249036e-05,
868
+ "loss": 0.06534834504127503,
869
+ "mean_token_accuracy": 0.9809993267059326,
870
+ "num_tokens": 2195567.0,
871
+ "step": 425
872
+ },
873
+ {
874
+ "entropy": 1.4120464980602265,
875
+ "epoch": 1.0696734059097979,
876
+ "grad_norm": 0.05029296875,
877
+ "learning_rate": 7.472798341791877e-05,
878
+ "loss": 0.08980979323387146,
879
+ "mean_token_accuracy": 0.9729388952255249,
880
+ "num_tokens": 2220651.0,
881
+ "step": 430
882
+ },
883
+ {
884
+ "entropy": 1.3695552781224252,
885
+ "epoch": 1.0821150855365473,
886
+ "grad_norm": 0.04736328125,
887
+ "learning_rate": 7.414183035701749e-05,
888
+ "loss": 0.07374750971794128,
889
+ "mean_token_accuracy": 0.9773057013750076,
890
+ "num_tokens": 2244016.0,
891
+ "step": 435
892
+ },
893
+ {
894
+ "entropy": 1.361125336587429,
895
+ "epoch": 1.094556765163297,
896
+ "grad_norm": 0.040283203125,
897
+ "learning_rate": 7.355131842135543e-05,
898
+ "loss": 0.09960444569587708,
899
+ "mean_token_accuracy": 0.9707440197467804,
900
+ "num_tokens": 2269688.0,
901
+ "step": 440
902
+ },
903
+ {
904
+ "entropy": 1.4232443049550056,
905
+ "epoch": 1.1069984447900467,
906
+ "grad_norm": 0.040283203125,
907
+ "learning_rate": 7.295655422950849e-05,
908
+ "loss": 0.08172831535339356,
909
+ "mean_token_accuracy": 0.9749625563621521,
910
+ "num_tokens": 2294075.0,
911
+ "step": 445
912
+ },
913
+ {
914
+ "entropy": 1.4120786994695664,
915
+ "epoch": 1.1194401244167962,
916
+ "grad_norm": 0.0341796875,
917
+ "learning_rate": 7.235764516780927e-05,
918
+ "loss": 0.06837162375450134,
919
+ "mean_token_accuracy": 0.9771177500486374,
920
+ "num_tokens": 2319276.0,
921
+ "step": 450
922
+ },
923
+ {
924
+ "entropy": 1.4431693792343139,
925
+ "epoch": 1.1318818040435459,
926
+ "grad_norm": 0.044677734375,
927
+ "learning_rate": 7.175469937095818e-05,
928
+ "loss": 0.08680518865585327,
929
+ "mean_token_accuracy": 0.9729270681738853,
930
+ "num_tokens": 2347219.0,
931
+ "step": 455
932
+ },
933
+ {
934
+ "entropy": 1.4526385068893433,
935
+ "epoch": 1.1443234836702956,
936
+ "grad_norm": 0.10302734375,
937
+ "learning_rate": 7.114782570249943e-05,
938
+ "loss": 0.09112498164176941,
939
+ "mean_token_accuracy": 0.973096051812172,
940
+ "num_tokens": 2372584.0,
941
+ "step": 460
942
+ },
943
+ {
944
+ "entropy": 1.3945886969566346,
945
+ "epoch": 1.156765163297045,
946
+ "grad_norm": 0.04443359375,
947
+ "learning_rate": 7.053713373516538e-05,
948
+ "loss": 0.07018510103225709,
949
+ "mean_token_accuracy": 0.9799379587173462,
950
+ "num_tokens": 2398752.0,
951
+ "step": 465
952
+ },
953
+ {
954
+ "entropy": 1.3700096011161804,
955
+ "epoch": 1.1692068429237947,
956
+ "grad_norm": 0.055908203125,
957
+ "learning_rate": 6.992273373109288e-05,
958
+ "loss": 0.06986131072044373,
959
+ "mean_token_accuracy": 0.9791282191872597,
960
+ "num_tokens": 2421888.0,
961
+ "step": 470
962
+ },
963
+ {
964
+ "entropy": 1.3979035422205925,
965
+ "epoch": 1.1816485225505442,
966
+ "grad_norm": 0.04736328125,
967
+ "learning_rate": 6.930473662191517e-05,
968
+ "loss": 0.09055956602096557,
969
+ "mean_token_accuracy": 0.9743469759821892,
970
+ "num_tokens": 2448705.0,
971
+ "step": 475
972
+ },
973
+ {
974
+ "entropy": 1.3682101637125015,
975
+ "epoch": 1.194090202177294,
976
+ "grad_norm": 0.07177734375,
977
+ "learning_rate": 6.868325398873284e-05,
978
+ "loss": 0.07687475085258484,
979
+ "mean_token_accuracy": 0.9755479469895363,
980
+ "num_tokens": 2474561.0,
981
+ "step": 480
982
+ },
983
+ {
984
+ "entropy": 1.36375695168972,
985
+ "epoch": 1.2065318818040436,
986
+ "grad_norm": 0.04248046875,
987
+ "learning_rate": 6.805839804196757e-05,
988
+ "loss": 0.09423953294754028,
989
+ "mean_token_accuracy": 0.9717281922698021,
990
+ "num_tokens": 2501620.0,
991
+ "step": 485
992
+ },
993
+ {
994
+ "entropy": 1.3528606280684472,
995
+ "epoch": 1.218973561430793,
996
+ "grad_norm": 0.050048828125,
997
+ "learning_rate": 6.743028160110215e-05,
998
+ "loss": 0.07231994867324829,
999
+ "mean_token_accuracy": 0.976399302482605,
1000
+ "num_tokens": 2527481.0,
1001
+ "step": 490
1002
+ },
1003
+ {
1004
+ "entropy": 1.4269449830055236,
1005
+ "epoch": 1.2314152410575427,
1006
+ "grad_norm": 0.061279296875,
1007
+ "learning_rate": 6.679901807431073e-05,
1008
+ "loss": 0.0847695529460907,
1009
+ "mean_token_accuracy": 0.9742431849241256,
1010
+ "num_tokens": 2553527.0,
1011
+ "step": 495
1012
+ },
1013
+ {
1014
+ "entropy": 1.4285764783620833,
1015
+ "epoch": 1.2438569206842924,
1016
+ "grad_norm": 0.044677734375,
1017
+ "learning_rate": 6.616472143798261e-05,
1018
+ "loss": 0.07603438496589661,
1019
+ "mean_token_accuracy": 0.9767945379018783,
1020
+ "num_tokens": 2580242.0,
1021
+ "step": 500
1022
+ },
1023
+ {
1024
+ "entropy": 1.4113897368311883,
1025
+ "epoch": 1.256298600311042,
1026
+ "grad_norm": 0.05078125,
1027
+ "learning_rate": 6.552750621614337e-05,
1028
+ "loss": 0.09946245551109315,
1029
+ "mean_token_accuracy": 0.9701174065470696,
1030
+ "num_tokens": 2604019.0,
1031
+ "step": 505
1032
+ },
1033
+ {
1034
+ "entropy": 1.2941894769668578,
1035
+ "epoch": 1.2687402799377916,
1036
+ "grad_norm": 0.035888671875,
1037
+ "learning_rate": 6.488748745977746e-05,
1038
+ "loss": 0.0612099289894104,
1039
+ "mean_token_accuracy": 0.981476029753685,
1040
+ "num_tokens": 2628945.0,
1041
+ "step": 510
1042
+ },
1043
+ {
1044
+ "entropy": 1.4310174494981767,
1045
+ "epoch": 1.2811819595645413,
1046
+ "grad_norm": 0.042724609375,
1047
+ "learning_rate": 6.424478072605522e-05,
1048
+ "loss": 0.06989500522613526,
1049
+ "mean_token_accuracy": 0.9810906872153282,
1050
+ "num_tokens": 2652720.0,
1051
+ "step": 515
1052
+ },
1053
+ {
1054
+ "entropy": 1.3148574769496917,
1055
+ "epoch": 1.2936236391912908,
1056
+ "grad_norm": 0.049072265625,
1057
+ "learning_rate": 6.359950205746881e-05,
1058
+ "loss": 0.07661423683166504,
1059
+ "mean_token_accuracy": 0.9741629838943482,
1060
+ "num_tokens": 2677256.0,
1061
+ "step": 520
1062
+ },
1063
+ {
1064
+ "entropy": 1.3354602426290512,
1065
+ "epoch": 1.3060653188180404,
1066
+ "grad_norm": 0.04736328125,
1067
+ "learning_rate": 6.295176796088045e-05,
1068
+ "loss": 0.0708840012550354,
1069
+ "mean_token_accuracy": 0.9720481187105179,
1070
+ "num_tokens": 2705462.0,
1071
+ "step": 525
1072
+ },
1073
+ {
1074
+ "entropy": 1.3693901777267456,
1075
+ "epoch": 1.3185069984447901,
1076
+ "grad_norm": 0.037353515625,
1077
+ "learning_rate": 6.230169538648667e-05,
1078
+ "loss": 0.06346817016601562,
1079
+ "mean_token_accuracy": 0.9793296322226525,
1080
+ "num_tokens": 2731465.0,
1081
+ "step": 530
1082
+ },
1083
+ {
1084
+ "entropy": 1.3165668994188309,
1085
+ "epoch": 1.3309486780715396,
1086
+ "grad_norm": 0.0625,
1087
+ "learning_rate": 6.164940170670266e-05,
1088
+ "loss": 0.08328393697738648,
1089
+ "mean_token_accuracy": 0.971780526638031,
1090
+ "num_tokens": 2759478.0,
1091
+ "step": 535
1092
+ },
1093
+ {
1094
+ "entropy": 1.34098874181509,
1095
+ "epoch": 1.3433903576982893,
1096
+ "grad_norm": 0.045166015625,
1097
+ "learning_rate": 6.09950046949705e-05,
1098
+ "loss": 0.08074995279312133,
1099
+ "mean_token_accuracy": 0.9730972275137901,
1100
+ "num_tokens": 2783456.0,
1101
+ "step": 540
1102
+ },
1103
+ {
1104
+ "entropy": 1.385405807197094,
1105
+ "epoch": 1.355832037325039,
1106
+ "grad_norm": 0.0556640625,
1107
+ "learning_rate": 6.0338622504494604e-05,
1108
+ "loss": 0.06526267528533936,
1109
+ "mean_token_accuracy": 0.9802431628108025,
1110
+ "num_tokens": 2808812.0,
1111
+ "step": 545
1112
+ },
1113
+ {
1114
+ "entropy": 1.393546462059021,
1115
+ "epoch": 1.3682737169517885,
1116
+ "grad_norm": 0.050048828125,
1117
+ "learning_rate": 5.968037364690897e-05,
1118
+ "loss": 0.08440290689468384,
1119
+ "mean_token_accuracy": 0.9747256502509117,
1120
+ "num_tokens": 2837088.0,
1121
+ "step": 550
1122
+ },
1123
+ {
1124
+ "entropy": 1.4094155162572861,
1125
+ "epoch": 1.3807153965785381,
1126
+ "grad_norm": 0.058837890625,
1127
+ "learning_rate": 5.902037697087957e-05,
1128
+ "loss": 0.07816668152809143,
1129
+ "mean_token_accuracy": 0.9740476593375206,
1130
+ "num_tokens": 2862524.0,
1131
+ "step": 555
1132
+ },
1133
+ {
1134
+ "entropy": 1.350576937198639,
1135
+ "epoch": 1.3931570762052878,
1136
+ "grad_norm": 0.055419921875,
1137
+ "learning_rate": 5.8358751640645835e-05,
1138
+ "loss": 0.06395477056503296,
1139
+ "mean_token_accuracy": 0.9800668403506279,
1140
+ "num_tokens": 2884137.0,
1141
+ "step": 560
1142
+ },
1143
+ {
1144
+ "entropy": 1.403828603029251,
1145
+ "epoch": 1.4055987558320373,
1146
+ "grad_norm": 0.037841796875,
1147
+ "learning_rate": 5.769561711450527e-05,
1148
+ "loss": 0.0748115599155426,
1149
+ "mean_token_accuracy": 0.9773760348558426,
1150
+ "num_tokens": 2906231.0,
1151
+ "step": 565
1152
+ },
1153
+ {
1154
+ "entropy": 1.3695515617728233,
1155
+ "epoch": 1.418040435458787,
1156
+ "grad_norm": 0.050048828125,
1157
+ "learning_rate": 5.7031093123244925e-05,
1158
+ "loss": 0.08527232408523559,
1159
+ "mean_token_accuracy": 0.9715872302651405,
1160
+ "num_tokens": 2932820.0,
1161
+ "step": 570
1162
+ },
1163
+ {
1164
+ "entropy": 1.4267593204975129,
1165
+ "epoch": 1.4304821150855365,
1166
+ "grad_norm": 0.05859375,
1167
+ "learning_rate": 5.6365299648523605e-05,
1168
+ "loss": 0.10021589994430542,
1169
+ "mean_token_accuracy": 0.9709113940596581,
1170
+ "num_tokens": 2956192.0,
1171
+ "step": 575
1172
+ },
1173
+ {
1174
+ "entropy": 1.3429571866989136,
1175
+ "epoch": 1.4429237947122862,
1176
+ "grad_norm": 0.06005859375,
1177
+ "learning_rate": 5.5698356901208925e-05,
1178
+ "loss": 0.107265305519104,
1179
+ "mean_token_accuracy": 0.9646854192018509,
1180
+ "num_tokens": 2980056.0,
1181
+ "step": 580
1182
+ },
1183
+ {
1184
+ "entropy": 1.4046858251094818,
1185
+ "epoch": 1.4553654743390358,
1186
+ "grad_norm": 0.04052734375,
1187
+ "learning_rate": 5.5030385299672884e-05,
1188
+ "loss": 0.08158871531486511,
1189
+ "mean_token_accuracy": 0.9777654156088829,
1190
+ "num_tokens": 3004045.0,
1191
+ "step": 585
1192
+ },
1193
+ {
1194
+ "entropy": 1.4346278131008148,
1195
+ "epoch": 1.4678071539657853,
1196
+ "grad_norm": 0.06201171875,
1197
+ "learning_rate": 5.436150544804994e-05,
1198
+ "loss": 0.07914494276046753,
1199
+ "mean_token_accuracy": 0.9757034927606583,
1200
+ "num_tokens": 3027916.0,
1201
+ "step": 590
1202
+ },
1203
+ {
1204
+ "entropy": 1.3918647408485412,
1205
+ "epoch": 1.480248833592535,
1206
+ "grad_norm": 0.07177734375,
1207
+ "learning_rate": 5.3691838114461626e-05,
1208
+ "loss": 0.09960976839065552,
1209
+ "mean_token_accuracy": 0.9678563356399537,
1210
+ "num_tokens": 3053663.0,
1211
+ "step": 595
1212
+ },
1213
+ {
1214
+ "entropy": 1.3449461698532104,
1215
+ "epoch": 1.4926905132192845,
1216
+ "grad_norm": 0.06982421875,
1217
+ "learning_rate": 5.302150420921161e-05,
1218
+ "loss": 0.08556955456733703,
1219
+ "mean_token_accuracy": 0.9714176893234253,
1220
+ "num_tokens": 3080272.0,
1221
+ "step": 600
1222
+ },
1223
+ {
1224
+ "entropy": 1.3727866768836976,
1225
+ "epoch": 1.5051321928460342,
1226
+ "grad_norm": 0.054931640625,
1227
+ "learning_rate": 5.2350624762954884e-05,
1228
+ "loss": 0.0717516303062439,
1229
+ "mean_token_accuracy": 0.9767438977956772,
1230
+ "num_tokens": 3107201.0,
1231
+ "step": 605
1232
+ },
1233
+ {
1234
+ "entropy": 1.3760264009237289,
1235
+ "epoch": 1.5175738724727839,
1236
+ "grad_norm": 0.04931640625,
1237
+ "learning_rate": 5.1679320904845365e-05,
1238
+ "loss": 0.08696765303611756,
1239
+ "mean_token_accuracy": 0.9729200676083565,
1240
+ "num_tokens": 3135290.0,
1241
+ "step": 610
1242
+ },
1243
+ {
1244
+ "entropy": 1.3937256038188934,
1245
+ "epoch": 1.5300155520995333,
1246
+ "grad_norm": 0.04931640625,
1247
+ "learning_rate": 5.100771384066575e-05,
1248
+ "loss": 0.06904829740524292,
1249
+ "mean_token_accuracy": 0.9765424266457557,
1250
+ "num_tokens": 3161468.0,
1251
+ "step": 615
1252
+ },
1253
+ {
1254
+ "entropy": 1.3464481949806213,
1255
+ "epoch": 1.542457231726283,
1256
+ "grad_norm": 0.0556640625,
1257
+ "learning_rate": 5.033592483094344e-05,
1258
+ "loss": 0.08148046731948852,
1259
+ "mean_token_accuracy": 0.9747312605381012,
1260
+ "num_tokens": 3187972.0,
1261
+ "step": 620
1262
+ },
1263
+ {
1264
+ "entropy": 1.3713692784309388,
1265
+ "epoch": 1.5548989113530327,
1266
+ "grad_norm": 0.04443359375,
1267
+ "learning_rate": 4.966407516905657e-05,
1268
+ "loss": 0.09401994347572326,
1269
+ "mean_token_accuracy": 0.9700708135962486,
1270
+ "num_tokens": 3218206.0,
1271
+ "step": 625
1272
+ },
1273
+ {
1274
+ "entropy": 1.4130443289875985,
1275
+ "epoch": 1.5673405909797822,
1276
+ "grad_norm": 0.05517578125,
1277
+ "learning_rate": 4.899228615933427e-05,
1278
+ "loss": 0.102409827709198,
1279
+ "mean_token_accuracy": 0.9645006597042084,
1280
+ "num_tokens": 3243182.0,
1281
+ "step": 630
1282
+ },
1283
+ {
1284
+ "entropy": 1.312636035680771,
1285
+ "epoch": 1.5797822706065319,
1286
+ "grad_norm": 0.05078125,
1287
+ "learning_rate": 4.832067909515467e-05,
1288
+ "loss": 0.07581937909126282,
1289
+ "mean_token_accuracy": 0.977123475074768,
1290
+ "num_tokens": 3270355.0,
1291
+ "step": 635
1292
+ },
1293
+ {
1294
+ "entropy": 1.2894637912511826,
1295
+ "epoch": 1.5922239502332816,
1296
+ "grad_norm": 0.0546875,
1297
+ "learning_rate": 4.7649375237045135e-05,
1298
+ "loss": 0.0760753870010376,
1299
+ "mean_token_accuracy": 0.9742821797728538,
1300
+ "num_tokens": 3295761.0,
1301
+ "step": 640
1302
+ },
1303
+ {
1304
+ "entropy": 1.3615785390138626,
1305
+ "epoch": 1.604665629860031,
1306
+ "grad_norm": 0.052001953125,
1307
+ "learning_rate": 4.697849579078838e-05,
1308
+ "loss": 0.08204466700553895,
1309
+ "mean_token_accuracy": 0.9755400061607361,
1310
+ "num_tokens": 3322763.0,
1311
+ "step": 645
1312
+ },
1313
+ {
1314
+ "entropy": 1.4578467637300492,
1315
+ "epoch": 1.6171073094867807,
1316
+ "grad_norm": 0.06787109375,
1317
+ "learning_rate": 4.630816188553837e-05,
1318
+ "loss": 0.10771067142486572,
1319
+ "mean_token_accuracy": 0.9648271799087524,
1320
+ "num_tokens": 3347850.0,
1321
+ "step": 650
1322
+ },
1323
+ {
1324
+ "entropy": 1.3541809171438217,
1325
+ "epoch": 1.6295489891135304,
1326
+ "grad_norm": 0.044921875,
1327
+ "learning_rate": 4.563849455195007e-05,
1328
+ "loss": 0.08120843768119812,
1329
+ "mean_token_accuracy": 0.9748451858758926,
1330
+ "num_tokens": 3378295.0,
1331
+ "step": 655
1332
+ },
1333
+ {
1334
+ "entropy": 1.3386278599500656,
1335
+ "epoch": 1.6419906687402799,
1336
+ "grad_norm": 0.05029296875,
1337
+ "learning_rate": 4.496961470032713e-05,
1338
+ "loss": 0.07182853221893311,
1339
+ "mean_token_accuracy": 0.9755081802606582,
1340
+ "num_tokens": 3407238.0,
1341
+ "step": 660
1342
+ },
1343
+ {
1344
+ "entropy": 1.3182463720440865,
1345
+ "epoch": 1.6544323483670296,
1346
+ "grad_norm": 0.044189453125,
1347
+ "learning_rate": 4.4301643098791086e-05,
1348
+ "loss": 0.0790963888168335,
1349
+ "mean_token_accuracy": 0.9719948589801788,
1350
+ "num_tokens": 3430188.0,
1351
+ "step": 665
1352
+ },
1353
+ {
1354
+ "entropy": 1.3785580173134804,
1355
+ "epoch": 1.6668740279937793,
1356
+ "grad_norm": 0.0537109375,
1357
+ "learning_rate": 4.363470035147641e-05,
1358
+ "loss": 0.0732508659362793,
1359
+ "mean_token_accuracy": 0.9752413406968117,
1360
+ "num_tokens": 3454755.0,
1361
+ "step": 670
1362
+ },
1363
+ {
1364
+ "entropy": 1.392490154504776,
1365
+ "epoch": 1.6793157076205287,
1366
+ "grad_norm": 0.041015625,
1367
+ "learning_rate": 4.29689068767551e-05,
1368
+ "loss": 0.07593491673469543,
1369
+ "mean_token_accuracy": 0.9777896001935005,
1370
+ "num_tokens": 3481020.0,
1371
+ "step": 675
1372
+ },
1373
+ {
1374
+ "entropy": 1.333091938495636,
1375
+ "epoch": 1.6917573872472784,
1376
+ "grad_norm": 0.052734375,
1377
+ "learning_rate": 4.2304382885494753e-05,
1378
+ "loss": 0.0870925784111023,
1379
+ "mean_token_accuracy": 0.9741413682699204,
1380
+ "num_tokens": 3507708.0,
1381
+ "step": 680
1382
+ },
1383
+ {
1384
+ "entropy": 1.320798073709011,
1385
+ "epoch": 1.7041990668740281,
1386
+ "grad_norm": 0.04833984375,
1387
+ "learning_rate": 4.164124835935418e-05,
1388
+ "loss": 0.0877147912979126,
1389
+ "mean_token_accuracy": 0.9753073915839195,
1390
+ "num_tokens": 3534100.0,
1391
+ "step": 685
1392
+ },
1393
+ {
1394
+ "entropy": 1.3160912215709686,
1395
+ "epoch": 1.7166407465007776,
1396
+ "grad_norm": 0.050537109375,
1397
+ "learning_rate": 4.0979623029120436e-05,
1398
+ "loss": 0.08963274955749512,
1399
+ "mean_token_accuracy": 0.9698545068502427,
1400
+ "num_tokens": 3558716.0,
1401
+ "step": 690
1402
+ },
1403
+ {
1404
+ "entropy": 1.3380629509687423,
1405
+ "epoch": 1.729082426127527,
1406
+ "grad_norm": 0.048095703125,
1407
+ "learning_rate": 4.031962635309104e-05,
1408
+ "loss": 0.07874792218208312,
1409
+ "mean_token_accuracy": 0.9740808755159378,
1410
+ "num_tokens": 3586065.0,
1411
+ "step": 695
1412
+ },
1413
+ {
1414
+ "entropy": 1.3654002964496612,
1415
+ "epoch": 1.741524105754277,
1416
+ "grad_norm": 0.047607421875,
1417
+ "learning_rate": 3.96613774955054e-05,
1418
+ "loss": 0.08268317580223083,
1419
+ "mean_token_accuracy": 0.9741670668125153,
1420
+ "num_tokens": 3613513.0,
1421
+ "step": 700
1422
+ },
1423
+ {
1424
+ "entropy": 1.3774547845125198,
1425
+ "epoch": 1.7539657853810264,
1426
+ "grad_norm": 0.04931640625,
1427
+ "learning_rate": 3.900499530502951e-05,
1428
+ "loss": 0.08645263314247131,
1429
+ "mean_token_accuracy": 0.9758756011724472,
1430
+ "num_tokens": 3640806.0,
1431
+ "step": 705
1432
+ },
1433
+ {
1434
+ "entropy": 1.3115302637219428,
1435
+ "epoch": 1.766407465007776,
1436
+ "grad_norm": 0.050537109375,
1437
+ "learning_rate": 3.835059829329735e-05,
1438
+ "loss": 0.07381963729858398,
1439
+ "mean_token_accuracy": 0.9768764480948449,
1440
+ "num_tokens": 3665922.0,
1441
+ "step": 710
1442
+ },
1443
+ {
1444
+ "entropy": 1.3822921440005302,
1445
+ "epoch": 1.7788491446345258,
1446
+ "grad_norm": 0.043212890625,
1447
+ "learning_rate": 3.769830461351336e-05,
1448
+ "loss": 0.09703359007835388,
1449
+ "mean_token_accuracy": 0.9744590654969215,
1450
+ "num_tokens": 3694612.0,
1451
+ "step": 715
1452
+ },
1453
+ {
1454
+ "entropy": 1.3549542352557182,
1455
+ "epoch": 1.7912908242612753,
1456
+ "grad_norm": 0.054931640625,
1457
+ "learning_rate": 3.704823203911957e-05,
1458
+ "loss": 0.09285060167312623,
1459
+ "mean_token_accuracy": 0.9735767096281052,
1460
+ "num_tokens": 3718319.0,
1461
+ "step": 720
1462
+ },
1463
+ {
1464
+ "entropy": 1.3544731348752976,
1465
+ "epoch": 1.8037325038880248,
1466
+ "grad_norm": 0.07421875,
1467
+ "learning_rate": 3.6400497942531186e-05,
1468
+ "loss": 0.07869815826416016,
1469
+ "mean_token_accuracy": 0.977102306485176,
1470
+ "num_tokens": 3742125.0,
1471
+ "step": 725
1472
+ },
1473
+ {
1474
+ "entropy": 1.3644321769475938,
1475
+ "epoch": 1.8161741835147744,
1476
+ "grad_norm": 0.0546875,
1477
+ "learning_rate": 3.57552192739448e-05,
1478
+ "loss": 0.08890414834022523,
1479
+ "mean_token_accuracy": 0.973346334695816,
1480
+ "num_tokens": 3765739.0,
1481
+ "step": 730
1482
+ },
1483
+ {
1484
+ "entropy": 1.3641284555196762,
1485
+ "epoch": 1.8286158631415241,
1486
+ "grad_norm": 0.045654296875,
1487
+ "learning_rate": 3.511251254022255e-05,
1488
+ "loss": 0.11303408145904541,
1489
+ "mean_token_accuracy": 0.9671000927686692,
1490
+ "num_tokens": 3790908.0,
1491
+ "step": 735
1492
+ },
1493
+ {
1494
+ "entropy": 1.352848869562149,
1495
+ "epoch": 1.8410575427682736,
1496
+ "grad_norm": 0.046875,
1497
+ "learning_rate": 3.447249378385663e-05,
1498
+ "loss": 0.07621319890022278,
1499
+ "mean_token_accuracy": 0.9736784845590591,
1500
+ "num_tokens": 3817021.0,
1501
+ "step": 740
1502
+ },
1503
+ {
1504
+ "entropy": 1.3620782911777496,
1505
+ "epoch": 1.8534992223950233,
1506
+ "grad_norm": 0.054443359375,
1507
+ "learning_rate": 3.38352785620174e-05,
1508
+ "loss": 0.07505900859832763,
1509
+ "mean_token_accuracy": 0.9756825506687165,
1510
+ "num_tokens": 3845607.0,
1511
+ "step": 745
1512
+ },
1513
+ {
1514
+ "entropy": 1.387294201552868,
1515
+ "epoch": 1.865940902021773,
1516
+ "grad_norm": 0.040771484375,
1517
+ "learning_rate": 3.3200981925689264e-05,
1518
+ "loss": 0.07677844166755676,
1519
+ "mean_token_accuracy": 0.9746143981814385,
1520
+ "num_tokens": 3871956.0,
1521
+ "step": 750
1522
+ },
1523
+ {
1524
+ "entropy": 1.3148253604769706,
1525
+ "epoch": 1.8783825816485225,
1526
+ "grad_norm": 0.04052734375,
1527
+ "learning_rate": 3.256971839889787e-05,
1528
+ "loss": 0.062203264236450194,
1529
+ "mean_token_accuracy": 0.9806876540184021,
1530
+ "num_tokens": 3896461.0,
1531
+ "step": 755
1532
+ },
1533
+ {
1534
+ "entropy": 1.297327271103859,
1535
+ "epoch": 1.8908242612752721,
1536
+ "grad_norm": 0.043212890625,
1537
+ "learning_rate": 3.194160195803245e-05,
1538
+ "loss": 0.07807562947273254,
1539
+ "mean_token_accuracy": 0.9751886636018753,
1540
+ "num_tokens": 3924652.0,
1541
+ "step": 760
1542
+ },
1543
+ {
1544
+ "entropy": 1.2678332865238189,
1545
+ "epoch": 1.9032659409020218,
1546
+ "grad_norm": 0.04833984375,
1547
+ "learning_rate": 3.1316746011267155e-05,
1548
+ "loss": 0.0622839629650116,
1549
+ "mean_token_accuracy": 0.980354443192482,
1550
+ "num_tokens": 3950947.0,
1551
+ "step": 765
1552
+ },
1553
+ {
1554
+ "entropy": 1.3001187965273857,
1555
+ "epoch": 1.9157076205287713,
1556
+ "grad_norm": 0.05322265625,
1557
+ "learning_rate": 3.0695263378084834e-05,
1558
+ "loss": 0.07793177962303162,
1559
+ "mean_token_accuracy": 0.9762747883796692,
1560
+ "num_tokens": 3977231.0,
1561
+ "step": 770
1562
+ },
1563
+ {
1564
+ "entropy": 1.343767161667347,
1565
+ "epoch": 1.928149300155521,
1566
+ "grad_norm": 0.058349609375,
1567
+ "learning_rate": 3.0077266268907124e-05,
1568
+ "loss": 0.09248242378234864,
1569
+ "mean_token_accuracy": 0.9737435877323151,
1570
+ "num_tokens": 4003918.0,
1571
+ "step": 775
1572
+ },
1573
+ {
1574
+ "entropy": 1.2801260307431221,
1575
+ "epoch": 1.9405909797822707,
1576
+ "grad_norm": 0.0673828125,
1577
+ "learning_rate": 2.946286626483463e-05,
1578
+ "loss": 0.07414901256561279,
1579
+ "mean_token_accuracy": 0.978515362739563,
1580
+ "num_tokens": 4027613.0,
1581
+ "step": 780
1582
+ },
1583
+ {
1584
+ "entropy": 1.3166591823101044,
1585
+ "epoch": 1.9530326594090202,
1586
+ "grad_norm": 0.0634765625,
1587
+ "learning_rate": 2.8852174297500567e-05,
1588
+ "loss": 0.0782233715057373,
1589
+ "mean_token_accuracy": 0.9734146118164062,
1590
+ "num_tokens": 4053231.0,
1591
+ "step": 785
1592
+ },
1593
+ {
1594
+ "entropy": 1.2959586173295974,
1595
+ "epoch": 1.9654743390357698,
1596
+ "grad_norm": 0.05078125,
1597
+ "learning_rate": 2.8245300629041838e-05,
1598
+ "loss": 0.08309885859489441,
1599
+ "mean_token_accuracy": 0.9741686061024666,
1600
+ "num_tokens": 4081234.0,
1601
+ "step": 790
1602
+ },
1603
+ {
1604
+ "entropy": 1.362495419383049,
1605
+ "epoch": 1.9779160186625195,
1606
+ "grad_norm": 0.047119140625,
1607
+ "learning_rate": 2.7642354832190747e-05,
1608
+ "loss": 0.09300965070724487,
1609
+ "mean_token_accuracy": 0.9714553162455559,
1610
+ "num_tokens": 4106601.0,
1611
+ "step": 795
1612
+ },
1613
+ {
1614
+ "entropy": 1.324322985112667,
1615
+ "epoch": 1.990357698289269,
1616
+ "grad_norm": 0.05078125,
1617
+ "learning_rate": 2.7043445770491526e-05,
1618
+ "loss": 0.0799511969089508,
1619
+ "mean_token_accuracy": 0.9754261270165443,
1620
+ "num_tokens": 4133337.0,
1621
+ "step": 800
1622
+ },
1623
+ {
1624
+ "epoch": 2.0,
1625
+ "eval_entropy": 1.3053412522588457,
1626
+ "eval_loss": 0.10880886763334274,
1627
+ "eval_mean_token_accuracy": 0.9662994710709961,
1628
+ "eval_num_tokens": 4152536.0,
1629
+ "eval_runtime": 24.7392,
1630
+ "eval_samples_per_second": 12.167,
1631
+ "eval_steps_per_second": 12.167,
1632
+ "step": 804
1633
+ },
1634
+ {
1635
+ "entropy": 1.3139420319826176,
1636
+ "epoch": 2.00248833592535,
1637
+ "grad_norm": 0.0311279296875,
1638
+ "learning_rate": 2.644868157864458e-05,
1639
+ "loss": 0.07132983803749085,
1640
+ "mean_token_accuracy": 0.9790512231680063,
1641
+ "num_tokens": 4157848.0,
1642
+ "step": 805
1643
+ },
1644
+ {
1645
+ "entropy": 1.3346404328942298,
1646
+ "epoch": 2.0149300155520997,
1647
+ "grad_norm": 0.036376953125,
1648
+ "learning_rate": 2.5858169642982515e-05,
1649
+ "loss": 0.06443278789520264,
1650
+ "mean_token_accuracy": 0.9790809944272041,
1651
+ "num_tokens": 4183018.0,
1652
+ "step": 810
1653
+ },
1654
+ {
1655
+ "entropy": 1.3496920108795165,
1656
+ "epoch": 2.027371695178849,
1657
+ "grad_norm": 0.046142578125,
1658
+ "learning_rate": 2.5272016582081236e-05,
1659
+ "loss": 0.046033966541290286,
1660
+ "mean_token_accuracy": 0.9862025916576386,
1661
+ "num_tokens": 4207722.0,
1662
+ "step": 815
1663
+ },
1664
+ {
1665
+ "entropy": 1.2798842176795007,
1666
+ "epoch": 2.0398133748055987,
1667
+ "grad_norm": 0.033203125,
1668
+ "learning_rate": 2.4690328227509668e-05,
1669
+ "loss": 0.04474189877510071,
1670
+ "mean_token_accuracy": 0.9851935356855392,
1671
+ "num_tokens": 4233615.0,
1672
+ "step": 820
1673
+ },
1674
+ {
1675
+ "entropy": 1.292403693497181,
1676
+ "epoch": 2.0522550544323486,
1677
+ "grad_norm": 0.036376953125,
1678
+ "learning_rate": 2.411320960472152e-05,
1679
+ "loss": 0.05720994472503662,
1680
+ "mean_token_accuracy": 0.9835459992289544,
1681
+ "num_tokens": 4260265.0,
1682
+ "step": 825
1683
+ },
1684
+ {
1685
+ "entropy": 1.2822298243641854,
1686
+ "epoch": 2.064696734059098,
1687
+ "grad_norm": 0.035888671875,
1688
+ "learning_rate": 2.354076491409274e-05,
1689
+ "loss": 0.06071372032165527,
1690
+ "mean_token_accuracy": 0.9809239432215691,
1691
+ "num_tokens": 4287688.0,
1692
+ "step": 830
1693
+ },
1694
+ {
1695
+ "entropy": 1.3030796691775322,
1696
+ "epoch": 2.0771384136858475,
1697
+ "grad_norm": 0.04443359375,
1698
+ "learning_rate": 2.2973097512107796e-05,
1699
+ "loss": 0.04943784773349762,
1700
+ "mean_token_accuracy": 0.9850927606225014,
1701
+ "num_tokens": 4311396.0,
1702
+ "step": 835
1703
+ },
1704
+ {
1705
+ "entropy": 1.2815598845481873,
1706
+ "epoch": 2.0895800933125974,
1707
+ "grad_norm": 0.039794921875,
1708
+ "learning_rate": 2.2410309892698322e-05,
1709
+ "loss": 0.06365938782691956,
1710
+ "mean_token_accuracy": 0.9812412708997726,
1711
+ "num_tokens": 4338280.0,
1712
+ "step": 840
1713
+ },
1714
+ {
1715
+ "entropy": 1.2353304088115693,
1716
+ "epoch": 2.102021772939347,
1717
+ "grad_norm": 0.0228271484375,
1718
+ "learning_rate": 2.185250366873765e-05,
1719
+ "loss": 0.03775741457939148,
1720
+ "mean_token_accuracy": 0.988109527528286,
1721
+ "num_tokens": 4361954.0,
1722
+ "step": 845
1723
+ },
1724
+ {
1725
+ "entropy": 1.3121544525027276,
1726
+ "epoch": 2.1144634525660964,
1727
+ "grad_norm": 0.052734375,
1728
+ "learning_rate": 2.1299779553694323e-05,
1729
+ "loss": 0.06021370887756348,
1730
+ "mean_token_accuracy": 0.9813222840428353,
1731
+ "num_tokens": 4389868.0,
1732
+ "step": 850
1733
+ },
1734
+ {
1735
+ "entropy": 1.2844686791300775,
1736
+ "epoch": 2.126905132192846,
1737
+ "grad_norm": 0.03466796875,
1738
+ "learning_rate": 2.075223734344785e-05,
1739
+ "loss": 0.043541711568832395,
1740
+ "mean_token_accuracy": 0.9842599242925644,
1741
+ "num_tokens": 4415143.0,
1742
+ "step": 855
1743
+ },
1744
+ {
1745
+ "entropy": 1.2730493247509003,
1746
+ "epoch": 2.1393468118195957,
1747
+ "grad_norm": 0.051025390625,
1748
+ "learning_rate": 2.0209975898270454e-05,
1749
+ "loss": 0.060882335901260375,
1750
+ "mean_token_accuracy": 0.9831152334809303,
1751
+ "num_tokens": 4439690.0,
1752
+ "step": 860
1753
+ },
1754
+ {
1755
+ "entropy": 1.3221701458096504,
1756
+ "epoch": 2.151788491446345,
1757
+ "grad_norm": 0.04638671875,
1758
+ "learning_rate": 1.967309312497752e-05,
1759
+ "loss": 0.06385582089424133,
1760
+ "mean_token_accuracy": 0.980524268746376,
1761
+ "num_tokens": 4468649.0,
1762
+ "step": 865
1763
+ },
1764
+ {
1765
+ "entropy": 1.308930653333664,
1766
+ "epoch": 2.1642301710730947,
1767
+ "grad_norm": 0.0478515625,
1768
+ "learning_rate": 1.914168595925016e-05,
1769
+ "loss": 0.05137070417404175,
1770
+ "mean_token_accuracy": 0.9829948961734771,
1771
+ "num_tokens": 4494900.0,
1772
+ "step": 870
1773
+ },
1774
+ {
1775
+ "entropy": 1.278279796242714,
1776
+ "epoch": 2.1766718506998446,
1777
+ "grad_norm": 0.044921875,
1778
+ "learning_rate": 1.861585034813334e-05,
1779
+ "loss": 0.053401678800582886,
1780
+ "mean_token_accuracy": 0.9820586636662483,
1781
+ "num_tokens": 4521907.0,
1782
+ "step": 875
1783
+ },
1784
+ {
1785
+ "entropy": 1.2940535843372345,
1786
+ "epoch": 2.189113530326594,
1787
+ "grad_norm": 0.033935546875,
1788
+ "learning_rate": 1.809568123271231e-05,
1789
+ "loss": 0.05988807678222656,
1790
+ "mean_token_accuracy": 0.9810460910201073,
1791
+ "num_tokens": 4546991.0,
1792
+ "step": 880
1793
+ },
1794
+ {
1795
+ "entropy": 1.3210156977176666,
1796
+ "epoch": 2.2015552099533435,
1797
+ "grad_norm": 0.03515625,
1798
+ "learning_rate": 1.7581272530970667e-05,
1799
+ "loss": 0.05812197327613831,
1800
+ "mean_token_accuracy": 0.9826369822025299,
1801
+ "num_tokens": 4573645.0,
1802
+ "step": 885
1803
+ },
1804
+ {
1805
+ "entropy": 1.2087926417589188,
1806
+ "epoch": 2.2139968895800934,
1807
+ "grad_norm": 0.03564453125,
1808
+ "learning_rate": 1.707271712083335e-05,
1809
+ "loss": 0.059379422664642335,
1810
+ "mean_token_accuracy": 0.9827022448182106,
1811
+ "num_tokens": 4598343.0,
1812
+ "step": 890
1813
+ },
1814
+ {
1815
+ "entropy": 1.2919662535190581,
1816
+ "epoch": 2.226438569206843,
1817
+ "grad_norm": 0.05126953125,
1818
+ "learning_rate": 1.6570106823397142e-05,
1819
+ "loss": 0.05405360460281372,
1820
+ "mean_token_accuracy": 0.9803063213825226,
1821
+ "num_tokens": 4625264.0,
1822
+ "step": 895
1823
+ },
1824
+ {
1825
+ "entropy": 1.2397317215800285,
1826
+ "epoch": 2.2388802488335924,
1827
+ "grad_norm": 0.035888671875,
1828
+ "learning_rate": 1.607353238635212e-05,
1829
+ "loss": 0.05695806741714478,
1830
+ "mean_token_accuracy": 0.9809326454997063,
1831
+ "num_tokens": 4655699.0,
1832
+ "step": 900
1833
+ },
1834
+ {
1835
+ "entropy": 1.2710261449217797,
1836
+ "epoch": 2.2513219284603423,
1837
+ "grad_norm": 0.053466796875,
1838
+ "learning_rate": 1.558308346759701e-05,
1839
+ "loss": 0.05667018294334412,
1840
+ "mean_token_accuracy": 0.9820555970072746,
1841
+ "num_tokens": 4682556.0,
1842
+ "step": 905
1843
+ },
1844
+ {
1845
+ "entropy": 1.3200107291340828,
1846
+ "epoch": 2.2637636080870918,
1847
+ "grad_norm": 0.0712890625,
1848
+ "learning_rate": 1.5098848619051109e-05,
1849
+ "loss": 0.058824723958969115,
1850
+ "mean_token_accuracy": 0.9803817018866539,
1851
+ "num_tokens": 4703229.0,
1852
+ "step": 910
1853
+ },
1854
+ {
1855
+ "entropy": 1.3161411359906197,
1856
+ "epoch": 2.2762052877138412,
1857
+ "grad_norm": 0.052978515625,
1858
+ "learning_rate": 1.4620915270665992e-05,
1859
+ "loss": 0.05733857154846191,
1860
+ "mean_token_accuracy": 0.9827383399009705,
1861
+ "num_tokens": 4732396.0,
1862
+ "step": 915
1863
+ },
1864
+ {
1865
+ "entropy": 1.27952651232481,
1866
+ "epoch": 2.288646967340591,
1867
+ "grad_norm": 0.0478515625,
1868
+ "learning_rate": 1.4149369714639853e-05,
1869
+ "loss": 0.0526383638381958,
1870
+ "mean_token_accuracy": 0.9817092105746269,
1871
+ "num_tokens": 4758145.0,
1872
+ "step": 920
1873
+ },
1874
+ {
1875
+ "entropy": 1.2732232689857483,
1876
+ "epoch": 2.3010886469673406,
1877
+ "grad_norm": 0.0281982421875,
1878
+ "learning_rate": 1.3684297089837155e-05,
1879
+ "loss": 0.055611425638198854,
1880
+ "mean_token_accuracy": 0.982058934867382,
1881
+ "num_tokens": 4784880.0,
1882
+ "step": 925
1883
+ },
1884
+ {
1885
+ "entropy": 1.2462307259440422,
1886
+ "epoch": 2.31353032659409,
1887
+ "grad_norm": 0.0498046875,
1888
+ "learning_rate": 1.3225781366416595e-05,
1889
+ "loss": 0.06674134135246276,
1890
+ "mean_token_accuracy": 0.9809619382023811,
1891
+ "num_tokens": 4814123.0,
1892
+ "step": 930
1893
+ },
1894
+ {
1895
+ "entropy": 1.3400009661912917,
1896
+ "epoch": 2.32597200622084,
1897
+ "grad_norm": 0.050048828125,
1898
+ "learning_rate": 1.2773905330670038e-05,
1899
+ "loss": 0.059016406536102295,
1900
+ "mean_token_accuracy": 0.9813900917768479,
1901
+ "num_tokens": 4838037.0,
1902
+ "step": 935
1903
+ },
1904
+ {
1905
+ "entropy": 1.2777298644185067,
1906
+ "epoch": 2.3384136858475895,
1907
+ "grad_norm": 0.0419921875,
1908
+ "learning_rate": 1.2328750570075265e-05,
1909
+ "loss": 0.04491693377494812,
1910
+ "mean_token_accuracy": 0.9859692931175232,
1911
+ "num_tokens": 4865586.0,
1912
+ "step": 940
1913
+ },
1914
+ {
1915
+ "entropy": 1.284477137029171,
1916
+ "epoch": 2.350855365474339,
1917
+ "grad_norm": 0.07763671875,
1918
+ "learning_rate": 1.1890397458565022e-05,
1919
+ "loss": 0.06391626596450806,
1920
+ "mean_token_accuracy": 0.9819939568638801,
1921
+ "num_tokens": 4889503.0,
1922
+ "step": 945
1923
+ },
1924
+ {
1925
+ "entropy": 1.2908324316143989,
1926
+ "epoch": 2.3632970451010884,
1927
+ "grad_norm": 0.050048828125,
1928
+ "learning_rate": 1.1458925142015431e-05,
1929
+ "loss": 0.06202779412269592,
1930
+ "mean_token_accuracy": 0.9813487082719803,
1931
+ "num_tokens": 4918754.0,
1932
+ "step": 950
1933
+ },
1934
+ {
1935
+ "entropy": 1.277482558786869,
1936
+ "epoch": 2.3757387247278383,
1937
+ "grad_norm": 0.031982421875,
1938
+ "learning_rate": 1.103441152395588e-05,
1939
+ "loss": 0.06154012680053711,
1940
+ "mean_token_accuracy": 0.9820781499147415,
1941
+ "num_tokens": 4945316.0,
1942
+ "step": 955
1943
+ },
1944
+ {
1945
+ "entropy": 1.2095389053225518,
1946
+ "epoch": 2.388180404354588,
1947
+ "grad_norm": 0.041748046875,
1948
+ "learning_rate": 1.061693325150332e-05,
1949
+ "loss": 0.06242812871932983,
1950
+ "mean_token_accuracy": 0.9817898482084274,
1951
+ "num_tokens": 4974069.0,
1952
+ "step": 960
1953
+ },
1954
+ {
1955
+ "entropy": 1.2972484081983566,
1956
+ "epoch": 2.4006220839813377,
1957
+ "grad_norm": 0.046875,
1958
+ "learning_rate": 1.0206565701523479e-05,
1959
+ "loss": 0.05046294927597046,
1960
+ "mean_token_accuracy": 0.9853808850049972,
1961
+ "num_tokens": 4999019.0,
1962
+ "step": 965
1963
+ },
1964
+ {
1965
+ "entropy": 1.3197123885154725,
1966
+ "epoch": 2.413063763608087,
1967
+ "grad_norm": 0.054443359375,
1968
+ "learning_rate": 9.803382967021318e-06,
1969
+ "loss": 0.049368086457252505,
1970
+ "mean_token_accuracy": 0.9852947980165482,
1971
+ "num_tokens": 5023412.0,
1972
+ "step": 970
1973
+ },
1974
+ {
1975
+ "entropy": 1.3319877043366433,
1976
+ "epoch": 2.4255054432348366,
1977
+ "grad_norm": 0.0693359375,
1978
+ "learning_rate": 9.407457843763324e-06,
1979
+ "loss": 0.0752966582775116,
1980
+ "mean_token_accuracy": 0.9780165493488312,
1981
+ "num_tokens": 5050267.0,
1982
+ "step": 975
1983
+ },
1984
+ {
1985
+ "entropy": 1.3291449189186095,
1986
+ "epoch": 2.437947122861586,
1987
+ "grad_norm": 0.056396484375,
1988
+ "learning_rate": 9.01886181713405e-06,
1989
+ "loss": 0.05530819296836853,
1990
+ "mean_token_accuracy": 0.9837485626339912,
1991
+ "num_tokens": 5074502.0,
1992
+ "step": 980
1993
+ },
1994
+ {
1995
+ "entropy": 1.3494797691702842,
1996
+ "epoch": 2.450388802488336,
1997
+ "grad_norm": 0.037353515625,
1998
+ "learning_rate": 8.637665049229243e-06,
1999
+ "loss": 0.052686119079589845,
2000
+ "mean_token_accuracy": 0.9853983774781228,
2001
+ "num_tokens": 5099489.0,
2002
+ "step": 985
2003
+ },
2004
+ {
2005
+ "entropy": 1.253180342912674,
2006
+ "epoch": 2.4628304821150855,
2007
+ "grad_norm": 0.054443359375,
2008
+ "learning_rate": 8.263936366187824e-06,
2009
+ "loss": 0.06666571497917176,
2010
+ "mean_token_accuracy": 0.9831083133816719,
2011
+ "num_tokens": 5121181.0,
2012
+ "step": 990
2013
+ },
2014
+ {
2015
+ "entropy": 1.3052298992872238,
2016
+ "epoch": 2.4752721617418354,
2017
+ "grad_norm": 0.037353515625,
2018
+ "learning_rate": 7.89774324576521e-06,
2019
+ "loss": 0.046898335218429565,
2020
+ "mean_token_accuracy": 0.9847671329975128,
2021
+ "num_tokens": 5144616.0,
2022
+ "step": 995
2023
+ },
2024
+ {
2025
+ "entropy": 1.2638304322957992,
2026
+ "epoch": 2.487713841368585,
2027
+ "grad_norm": 0.03271484375,
2028
+ "learning_rate": 7.539151805149985e-06,
2029
+ "loss": 0.045440280437469484,
2030
+ "mean_token_accuracy": 0.9862535953521728,
2031
+ "num_tokens": 5173304.0,
2032
+ "step": 1000
2033
+ },
2034
+ {
2035
+ "entropy": 1.2472808972001075,
2036
+ "epoch": 2.5001555209953343,
2037
+ "grad_norm": 0.05078125,
2038
+ "learning_rate": 7.188226789026209e-06,
2039
+ "loss": 0.05064120888710022,
2040
+ "mean_token_accuracy": 0.9852252557873726,
2041
+ "num_tokens": 5199260.0,
2042
+ "step": 1005
2043
+ },
2044
+ {
2045
+ "entropy": 1.2181950062513351,
2046
+ "epoch": 2.512597200622084,
2047
+ "grad_norm": 0.03662109375,
2048
+ "learning_rate": 6.8450315578836965e-06,
2049
+ "loss": 0.04357019364833832,
2050
+ "mean_token_accuracy": 0.9878018543124198,
2051
+ "num_tokens": 5225257.0,
2052
+ "step": 1010
2053
+ },
2054
+ {
2055
+ "entropy": 1.2247688069939613,
2056
+ "epoch": 2.5250388802488337,
2057
+ "grad_norm": 0.05908203125,
2058
+ "learning_rate": 6.509628076578006e-06,
2059
+ "loss": 0.04824144542217255,
2060
+ "mean_token_accuracy": 0.9864720001816749,
2061
+ "num_tokens": 5248640.0,
2062
+ "step": 1015
2063
+ },
2064
+ {
2065
+ "entropy": 1.336793726682663,
2066
+ "epoch": 2.537480559875583,
2067
+ "grad_norm": 0.041259765625,
2068
+ "learning_rate": 6.182076903142536e-06,
2069
+ "loss": 0.0592013418674469,
2070
+ "mean_token_accuracy": 0.9802371919155121,
2071
+ "num_tokens": 5273818.0,
2072
+ "step": 1020
2073
+ },
2074
+ {
2075
+ "entropy": 1.2980262845754624,
2076
+ "epoch": 2.5499222395023327,
2077
+ "grad_norm": 0.060546875,
2078
+ "learning_rate": 5.86243717785463e-06,
2079
+ "loss": 0.07260814309120178,
2080
+ "mean_token_accuracy": 0.9779389306902886,
2081
+ "num_tokens": 5297288.0,
2082
+ "step": 1025
2083
+ },
2084
+ {
2085
+ "entropy": 1.3199328914284707,
2086
+ "epoch": 2.5623639191290826,
2087
+ "grad_norm": 0.0322265625,
2088
+ "learning_rate": 5.550766612557623e-06,
2089
+ "loss": 0.052888506650924684,
2090
+ "mean_token_accuracy": 0.9840954542160034,
2091
+ "num_tokens": 5323105.0,
2092
+ "step": 1030
2093
+ },
2094
+ {
2095
+ "entropy": 1.212834571301937,
2096
+ "epoch": 2.574805598755832,
2097
+ "grad_norm": 0.04931640625,
2098
+ "learning_rate": 5.247121480240763e-06,
2099
+ "loss": 0.05025215744972229,
2100
+ "mean_token_accuracy": 0.9859568744897842,
2101
+ "num_tokens": 5349976.0,
2102
+ "step": 1035
2103
+ },
2104
+ {
2105
+ "entropy": 1.2222013637423514,
2106
+ "epoch": 2.5872472783825815,
2107
+ "grad_norm": 0.0390625,
2108
+ "learning_rate": 4.951556604879048e-06,
2109
+ "loss": 0.0416751354932785,
2110
+ "mean_token_accuracy": 0.9878290638327598,
2111
+ "num_tokens": 5376611.0,
2112
+ "step": 1040
2113
+ },
2114
+ {
2115
+ "entropy": 1.2588894337415695,
2116
+ "epoch": 2.5996889580093314,
2117
+ "grad_norm": 0.043701171875,
2118
+ "learning_rate": 4.664125351534537e-06,
2119
+ "loss": 0.05584250688552857,
2120
+ "mean_token_accuracy": 0.9814404875040055,
2121
+ "num_tokens": 5405173.0,
2122
+ "step": 1045
2123
+ },
2124
+ {
2125
+ "entropy": 1.2924429386854173,
2126
+ "epoch": 2.612130637636081,
2127
+ "grad_norm": 0.058349609375,
2128
+ "learning_rate": 4.384879616721182e-06,
2129
+ "loss": 0.06444652080535888,
2130
+ "mean_token_accuracy": 0.9828690186142921,
2131
+ "num_tokens": 5430741.0,
2132
+ "step": 1050
2133
+ },
2134
+ {
2135
+ "entropy": 1.2675760596990586,
2136
+ "epoch": 2.6245723172628304,
2137
+ "grad_norm": 0.0458984375,
2138
+ "learning_rate": 4.113869819034727e-06,
2139
+ "loss": 0.06400873661041259,
2140
+ "mean_token_accuracy": 0.9813549533486366,
2141
+ "num_tokens": 5457007.0,
2142
+ "step": 1055
2143
+ },
2144
+ {
2145
+ "entropy": 1.3134230434894563,
2146
+ "epoch": 2.6370139968895803,
2147
+ "grad_norm": 0.043212890625,
2148
+ "learning_rate": 3.851144890049535e-06,
2149
+ "loss": 0.034584978222846986,
2150
+ "mean_token_accuracy": 0.9877016335725785,
2151
+ "num_tokens": 5480882.0,
2152
+ "step": 1060
2153
+ },
2154
+ {
2155
+ "entropy": 1.2463923379778863,
2156
+ "epoch": 2.6494556765163297,
2157
+ "grad_norm": 0.04345703125,
2158
+ "learning_rate": 3.5967522654837994e-06,
2159
+ "loss": 0.04645509421825409,
2160
+ "mean_token_accuracy": 0.9869309529662132,
2161
+ "num_tokens": 5505629.0,
2162
+ "step": 1065
2163
+ },
2164
+ {
2165
+ "entropy": 1.2719882696866989,
2166
+ "epoch": 2.661897356143079,
2167
+ "grad_norm": 0.046142578125,
2168
+ "learning_rate": 3.350737876634957e-06,
2169
+ "loss": 0.055052381753921506,
2170
+ "mean_token_accuracy": 0.9827572226524353,
2171
+ "num_tokens": 5533711.0,
2172
+ "step": 1070
2173
+ },
2174
+ {
2175
+ "entropy": 1.2736148864030838,
2176
+ "epoch": 2.6743390357698287,
2177
+ "grad_norm": 0.037109375,
2178
+ "learning_rate": 3.1131461420866313e-06,
2179
+ "loss": 0.05363653302192688,
2180
+ "mean_token_accuracy": 0.9812890663743019,
2181
+ "num_tokens": 5561153.0,
2182
+ "step": 1075
2183
+ },
2184
+ {
2185
+ "entropy": 1.2958104774355887,
2186
+ "epoch": 2.6867807153965786,
2187
+ "grad_norm": 0.048828125,
2188
+ "learning_rate": 2.8840199596887105e-06,
2189
+ "loss": 0.054463303089141844,
2190
+ "mean_token_accuracy": 0.9833293497562409,
2191
+ "num_tokens": 5585461.0,
2192
+ "step": 1080
2193
+ },
2194
+ {
2195
+ "entropy": 1.2556652486324311,
2196
+ "epoch": 2.699222395023328,
2197
+ "grad_norm": 0.04638671875,
2198
+ "learning_rate": 2.663400698812074e-06,
2199
+ "loss": 0.05533112287521362,
2200
+ "mean_token_accuracy": 0.9832669913768768,
2201
+ "num_tokens": 5614981.0,
2202
+ "step": 1085
2203
+ },
2204
+ {
2205
+ "entropy": 1.2375948414206506,
2206
+ "epoch": 2.711664074650078,
2207
+ "grad_norm": 0.0419921875,
2208
+ "learning_rate": 2.4513281928791985e-06,
2209
+ "loss": 0.04163530468940735,
2210
+ "mean_token_accuracy": 0.9874510899186134,
2211
+ "num_tokens": 5641773.0,
2212
+ "step": 1090
2213
+ },
2214
+ {
2215
+ "entropy": 1.2753075495362283,
2216
+ "epoch": 2.7241057542768274,
2217
+ "grad_norm": 0.049560546875,
2218
+ "learning_rate": 2.2478407321721296e-06,
2219
+ "loss": 0.058247965574264524,
2220
+ "mean_token_accuracy": 0.981316888332367,
2221
+ "num_tokens": 5669049.0,
2222
+ "step": 1095
2223
+ },
2224
+ {
2225
+ "entropy": 1.2350706443190576,
2226
+ "epoch": 2.736547433903577,
2227
+ "grad_norm": 0.037353515625,
2228
+ "learning_rate": 2.0529750569190763e-06,
2229
+ "loss": 0.06670538783073425,
2230
+ "mean_token_accuracy": 0.9805434107780456,
2231
+ "num_tokens": 5694713.0,
2232
+ "step": 1100
2233
+ },
2234
+ {
2235
+ "entropy": 1.3031635895371436,
2236
+ "epoch": 2.7489891135303264,
2237
+ "grad_norm": 0.043212890625,
2238
+ "learning_rate": 1.8667663506608534e-06,
2239
+ "loss": 0.06874535083770753,
2240
+ "mean_token_accuracy": 0.9813943326473236,
2241
+ "num_tokens": 5720385.0,
2242
+ "step": 1105
2243
+ },
2244
+ {
2245
+ "entropy": 1.2971147924661637,
2246
+ "epoch": 2.7614307931570763,
2247
+ "grad_norm": 0.040771484375,
2248
+ "learning_rate": 1.6892482338983828e-06,
2249
+ "loss": 0.04181385338306427,
2250
+ "mean_token_accuracy": 0.9848969042301178,
2251
+ "num_tokens": 5746503.0,
2252
+ "step": 1110
2253
+ },
2254
+ {
2255
+ "entropy": 1.2740083515644074,
2256
+ "epoch": 2.7738724727838258,
2257
+ "grad_norm": 0.050048828125,
2258
+ "learning_rate": 1.5204527580224337e-06,
2259
+ "loss": 0.062212252616882326,
2260
+ "mean_token_accuracy": 0.9814715966582298,
2261
+ "num_tokens": 5772786.0,
2262
+ "step": 1115
2263
+ },
2264
+ {
2265
+ "entropy": 1.2509995222091674,
2266
+ "epoch": 2.7863141524105757,
2267
+ "grad_norm": 0.058837890625,
2268
+ "learning_rate": 1.3604103995266682e-06,
2269
+ "loss": 0.05331828594207764,
2270
+ "mean_token_accuracy": 0.981832081079483,
2271
+ "num_tokens": 5798040.0,
2272
+ "step": 1120
2273
+ },
2274
+ {
2275
+ "entropy": 1.2227709844708443,
2276
+ "epoch": 2.798755832037325,
2277
+ "grad_norm": 0.03173828125,
2278
+ "learning_rate": 1.2091500545049706e-06,
2279
+ "loss": 0.04361798167228699,
2280
+ "mean_token_accuracy": 0.9867074429988861,
2281
+ "num_tokens": 5824550.0,
2282
+ "step": 1125
2283
+ },
2284
+ {
2285
+ "entropy": 1.2401750206947326,
2286
+ "epoch": 2.8111975116640746,
2287
+ "grad_norm": 0.0556640625,
2288
+ "learning_rate": 1.0666990334342707e-06,
2289
+ "loss": 0.061069542169570924,
2290
+ "mean_token_accuracy": 0.9831201821565628,
2291
+ "num_tokens": 5850795.0,
2292
+ "step": 1130
2293
+ },
2294
+ {
2295
+ "entropy": 1.2588699147105218,
2296
+ "epoch": 2.823639191290824,
2297
+ "grad_norm": 0.058837890625,
2298
+ "learning_rate": 9.330830562434445e-07,
2299
+ "loss": 0.04628670811653137,
2300
+ "mean_token_accuracy": 0.9860796064138413,
2301
+ "num_tokens": 5873475.0,
2302
+ "step": 1135
2303
+ },
2304
+ {
2305
+ "entropy": 1.2346306607127189,
2306
+ "epoch": 2.836080870917574,
2307
+ "grad_norm": 0.058349609375,
2308
+ "learning_rate": 8.083262476696051e-07,
2309
+ "loss": 0.04909757375717163,
2310
+ "mean_token_accuracy": 0.983722123503685,
2311
+ "num_tokens": 5898165.0,
2312
+ "step": 1140
2313
+ },
2314
+ {
2315
+ "entropy": 1.1937159553170205,
2316
+ "epoch": 2.8485225505443235,
2317
+ "grad_norm": 0.045654296875,
2318
+ "learning_rate": 6.924511329022831e-07,
2319
+ "loss": 0.040495744347572325,
2320
+ "mean_token_accuracy": 0.9897799164056778,
2321
+ "num_tokens": 5922973.0,
2322
+ "step": 1145
2323
+ },
2324
+ {
2325
+ "entropy": 1.254883785545826,
2326
+ "epoch": 2.860964230171073,
2327
+ "grad_norm": 0.0546875,
2328
+ "learning_rate": 5.85478633516412e-07,
2329
+ "loss": 0.06383077502250671,
2330
+ "mean_token_accuracy": 0.980024679005146,
2331
+ "num_tokens": 5947992.0,
2332
+ "step": 1150
2333
+ },
2334
+ {
2335
+ "entropy": 1.2277784809470176,
2336
+ "epoch": 2.873405909797823,
2337
+ "grad_norm": 0.0380859375,
2338
+ "learning_rate": 4.874280636949225e-07,
2339
+ "loss": 0.07050376534461975,
2340
+ "mean_token_accuracy": 0.9783104926347732,
2341
+ "num_tokens": 5977052.0,
2342
+ "step": 1155
2343
+ },
2344
+ {
2345
+ "entropy": 1.2470836490392685,
2346
+ "epoch": 2.8858475894245723,
2347
+ "grad_norm": 0.038330078125,
2348
+ "learning_rate": 3.983171267414876e-07,
2349
+ "loss": 0.058488309383392334,
2350
+ "mean_token_accuracy": 0.9789799645543098,
2351
+ "num_tokens": 6005890.0,
2352
+ "step": 1160
2353
+ },
2354
+ {
2355
+ "entropy": 1.234851485490799,
2356
+ "epoch": 2.898289269051322,
2357
+ "grad_norm": 0.042724609375,
2358
+ "learning_rate": 3.1816191188415166e-07,
2359
+ "loss": 0.046985325217247007,
2360
+ "mean_token_accuracy": 0.9848568633198738,
2361
+ "num_tokens": 6032772.0,
2362
+ "step": 1165
2363
+ },
2364
+ {
2365
+ "entropy": 1.2423007264733315,
2366
+ "epoch": 2.9107309486780717,
2367
+ "grad_norm": 0.050048828125,
2368
+ "learning_rate": 2.469768913703707e-07,
2369
+ "loss": 0.04711828827857971,
2370
+ "mean_token_accuracy": 0.9853164970874786,
2371
+ "num_tokens": 6055333.0,
2372
+ "step": 1170
2373
+ },
2374
+ {
2375
+ "entropy": 1.2636106505990028,
2376
+ "epoch": 2.923172628304821,
2377
+ "grad_norm": 0.03173828125,
2378
+ "learning_rate": 1.8477491785400813e-07,
2379
+ "loss": 0.05374208092689514,
2380
+ "mean_token_accuracy": 0.9832712143659592,
2381
+ "num_tokens": 6081293.0,
2382
+ "step": 1175
2383
+ },
2384
+ {
2385
+ "entropy": 1.276752583682537,
2386
+ "epoch": 2.9356143079315706,
2387
+ "grad_norm": 0.05078125,
2388
+ "learning_rate": 1.3156722207476324e-07,
2389
+ "loss": 0.0528965175151825,
2390
+ "mean_token_accuracy": 0.9834408789873124,
2391
+ "num_tokens": 6102892.0,
2392
+ "step": 1180
2393
+ },
2394
+ {
2395
+ "entropy": 1.281411574780941,
2396
+ "epoch": 2.9480559875583205,
2397
+ "grad_norm": 0.0537109375,
2398
+ "learning_rate": 8.736341083041e-08,
2399
+ "loss": 0.06098886728286743,
2400
+ "mean_token_accuracy": 0.983394218981266,
2401
+ "num_tokens": 6128039.0,
2402
+ "step": 1185
2403
+ },
2404
+ {
2405
+ "entropy": 1.2323307275772095,
2406
+ "epoch": 2.96049766718507,
2407
+ "grad_norm": 0.042236328125,
2408
+ "learning_rate": 5.217146524226779e-08,
2409
+ "loss": 0.059885329008102416,
2410
+ "mean_token_accuracy": 0.9809183284640313,
2411
+ "num_tokens": 6153194.0,
2412
+ "step": 1190
2413
+ },
2414
+ {
2415
+ "entropy": 1.3001432150602341,
2416
+ "epoch": 2.9729393468118195,
2417
+ "grad_norm": 0.04638671875,
2418
+ "learning_rate": 2.599773931422078e-08,
2419
+ "loss": 0.05909959077835083,
2420
+ "mean_token_accuracy": 0.9834809839725495,
2421
+ "num_tokens": 6176012.0,
2422
+ "step": 1195
2423
+ },
2424
+ {
2425
+ "entropy": 1.279952661693096,
2426
+ "epoch": 2.985381026438569,
2427
+ "grad_norm": 0.05078125,
2428
+ "learning_rate": 8.846958785418968e-09,
2429
+ "loss": 0.05961666703224182,
2430
+ "mean_token_accuracy": 0.9833701640367508,
2431
+ "num_tokens": 6200123.0,
2432
+ "step": 1200
2433
+ },
2434
+ {
2435
+ "entropy": 1.2743590876460076,
2436
+ "epoch": 2.997822706065319,
2437
+ "grad_norm": 0.04638671875,
2438
+ "learning_rate": 7.222202770995612e-10,
2439
+ "loss": 0.06714363694190979,
2440
+ "mean_token_accuracy": 0.9778998792171478,
2441
+ "num_tokens": 6224618.0,
2442
+ "step": 1205
2443
+ }
2444
+ ],
2445
+ "logging_steps": 5,
2446
+ "max_steps": 1206,
2447
+ "num_input_tokens_seen": 0,
2448
+ "num_train_epochs": 3,
2449
+ "save_steps": 500,
2450
+ "stateful_callbacks": {
2451
+ "TrainerControl": {
2452
+ "args": {
2453
+ "should_epoch_stop": false,
2454
+ "should_evaluate": false,
2455
+ "should_log": false,
2456
+ "should_save": true,
2457
+ "should_training_stop": true
2458
+ },
2459
+ "attributes": {}
2460
+ }
2461
+ },
2462
+ "total_flos": 7.452427650516173e+16,
2463
+ "train_batch_size": 1,
2464
+ "trial_name": null,
2465
+ "trial_params": null
2466
+ }
checkpoint-1206/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b76582097e27a940c0a231a0d53cf8cdc986bf57bf76ad6533b70015ba5c67
3
+ size 5713
checkpoint-500/README.md ADDED
@@ -0,0 +1,209 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: numind/NuExtract-2.0-2B
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:numind/NuExtract-2.0-2B
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-500/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": "numind/NuExtract-2.0-2B",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 32,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 16,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "up_proj",
33
+ "o_proj",
34
+ "q_proj",
35
+ "v_proj",
36
+ "gate_proj",
37
+ "down_proj",
38
+ "k_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-500/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:583d7963c36352b61380aeb767b07f74e84e4c5df9e08964553668ed47e16894
3
+ size 36987736
checkpoint-500/chat_template.jinja ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- set image_placeholder = '<|vision_start|><|image_pad|><|vision_end|>' -%}
2
+ {%- for message in messages -%}
3
+ {%- if message['role'] == 'system' -%}
4
+ {{- '<|im_start|>system
5
+ ' -}}
6
+ {%- if message['content'] is string -%}
7
+ {{- message['content'] | trim -}}
8
+ {%- endif -%}
9
+ {{- '<|im_end|>
10
+ ' -}}
11
+ {%- elif message['role'] == 'user' -%}
12
+ {%- if loop.first -%}
13
+ {{- '<|im_start|>system
14
+ ' -}}
15
+ {%- if template -%}
16
+ {#--- If template, extraction task ---#}
17
+ {{- 'You are NuExtract, an information extraction tool created by NuMind.' -}}
18
+ {%- else -%}
19
+ {#--- Else, template generation task ---#}
20
+ {{- 'You are a helpful assistant.' -}}
21
+ {%- endif -%}
22
+ {{ '<|im_end|>
23
+ ' }}
24
+ {%- endif -%}
25
+ {{- '<|im_start|>' + message['role'] + '
26
+ ' -}}
27
+ {%- if template -%}
28
+ {#--- Template Section ---#}
29
+ {{- '# Template:
30
+ ' -}}
31
+ {{- template -}}
32
+ {{- '
33
+ ' -}}
34
+
35
+ {%- if examples -%}
36
+ {#--- Examples can only exist in the extraction task ---#}
37
+ {{- '# Examples:
38
+ ' -}}
39
+ {%- for example in examples -%}
40
+ {{- '## Input:
41
+ ' -}}
42
+ {%- if example['input'] is mapping and (example['input']['type'] == 'image' or example['input']['type'] == 'image_url') -%}
43
+ {{- image_placeholder | trim -}}
44
+ {%- elif example['input'] == '<image>' -%}
45
+ {#--- Keep compatibility with <image> for now ---#}
46
+ {{- image_placeholder | trim -}}
47
+ {%- else -%}
48
+ {#--- Text input example ---#}
49
+ {{- example['input'] -}}
50
+ {%- endif -%}
51
+ {{- '
52
+ ' -}}
53
+ {{- '## Output:
54
+ ' -}}
55
+ {{- example['output'] -}}
56
+ {{- '
57
+ ' -}}
58
+ {%- endfor -%}
59
+ {%- endif -%}
60
+ {{- '# Context:
61
+ ' -}}
62
+ {%- endif -%}
63
+
64
+ {%- if message['content'] is string -%}
65
+ {#--- Simple string content ---#}
66
+ {{- message['content'] | trim -}}
67
+ {%- elif message['content'] is mapping and (message['content']['type'] == 'image' or message['content']['type'] == 'image_url') -%}
68
+ {{- image_placeholder | trim -}}
69
+ {%- else -%}
70
+ {#--- List of content items (mixed text/images) ---#}
71
+ {#--- First, determine what the actual input content is (not ICL images) ---#}
72
+ {%- set ns = namespace(has_text_input=false, text_content='') -%}
73
+
74
+ {#--- Count content types and identify actual input document ---#}
75
+ {%- for content in message['content'] -%}
76
+ {%- if content is mapping and content.get('type') == 'text' -%}
77
+ {%- if content.get('text') != '<image>' -%}
78
+ {#--- Keep compatibility with <image> for now ---#}
79
+ {%- set ns.has_text_input = true -%}
80
+ {%- set ns.text_content = content['text'] -%}
81
+ {%- endif -%}
82
+ {%- elif content is string -%}
83
+ {%- if content != '<image>' -%}
84
+ {#--- Keep compatibility with <image> for now ---#}
85
+ {%- set ns.has_text_input = true -%}
86
+ {%- set ns.text_content = content -%}
87
+ {%- endif -%}
88
+ {%- endif -%}
89
+ {%- endfor -%}
90
+
91
+ {#--- Determine what to output based on actual input type ---#}
92
+ {%- if ns.has_text_input -%}
93
+ {#--- Main input is text, so output the text content ---#}
94
+ {{- ns.text_content | trim -}}
95
+ {%- else -%}
96
+ {#--- Main input is image or <image> placeholder ---#}
97
+ {%- set ns2 = namespace(found_image=false) -%}
98
+ {%- for content in message['content'] -%}
99
+ {%- if content is mapping and (content.get('type') == 'image' or content.get('type') == 'image_url') and not ns2.found_image -%}
100
+ {{- image_placeholder | trim -}}
101
+ {%- set ns2.found_image = true -%}
102
+ {%- elif content is mapping and content.get('type') == 'text' and content.get('text') == '<image>' and not ns2.found_image -%}
103
+ {#--- Keep compatibility with <image> for now ---#}
104
+ {{- image_placeholder | trim -}}
105
+ {%- set ns2.found_image = true -%}
106
+ {%- elif content is string and content == '<image>' and not ns2.found_image -%}
107
+ {#--- Keep compatibility with <image> for now ---#}
108
+ {{- image_placeholder | trim -}}
109
+ {%- set ns2.found_image = true -%}
110
+ {%- endif -%}
111
+ {%- endfor -%}
112
+ {%- endif -%}
113
+ {%- endif -%}
114
+ {{- '<|im_end|>
115
+ '}}
116
+
117
+ {%- elif message['role'] == 'assistant' -%}
118
+ {{- '<|im_start|>assistant
119
+ ' -}}
120
+ {%- if message['content'] is string -%}
121
+ {{- message['content'] | trim -}}
122
+ {%- elif message['content'] is iterable and message['content'] is not string -%}
123
+ {%- for content in message['content'] -%}
124
+ {%- if content is mapping and content.get('type') == 'text' -%}
125
+ {{- content['text'] | trim -}}
126
+ {%- elif content is string -%}
127
+ {{- content | trim -}}
128
+ {%- endif -%}
129
+ {%- endfor -%}
130
+ {%- endif -%}
131
+ {{- '<|im_end|>
132
+ ' -}}
133
+ {%- endif -%}
134
+ {%- endfor -%}
135
+ {%- if add_generation_prompt -%}
136
+ {{- '<|im_start|>assistant
137
+ ' -}}
138
+ {%- endif -%}
checkpoint-500/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dbbe91749a9747fdf30600532c529ca9d9faf68b81ffbf8c29c7b09a67bdba1
3
+ size 37974661
checkpoint-500/processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.48145466,
10
+ 0.4578275,
11
+ 0.40821073
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.26862954,
16
+ 0.26130258,
17
+ 0.27577711
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 14,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 23000000,
25
+ "shortest_edge": 200704
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen2_5_VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": false,
38
+ "image_mean": [
39
+ 0.48145466,
40
+ 0.4578275,
41
+ 0.40821073
42
+ ],
43
+ "image_processor_type": "Qwen2VLImageProcessor",
44
+ "image_std": [
45
+ 0.26862954,
46
+ 0.26130258,
47
+ 0.27577711
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 14,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 23000000,
58
+ "shortest_edge": 200704
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen2VLVideoProcessor"
62
+ }
63
+ }
checkpoint-500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3507a55b80ea938133601ff2b9607fb4b918a167b9a4501101de08f54d5bc446
3
+ size 14645
checkpoint-500/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6e62b5f44547ed2054439a643f15a54551684d83daa00770b073ca8671c7cfb
3
+ size 1465
checkpoint-500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7aabe7a3b44651592a99607bb33066e6965260336be9218cccd53af161491d
3
+ size 11422060
checkpoint-500/tokenizer_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_commit_hash": null,
3
+ "add_prefix_space": false,
4
+ "backend": "tokenizers",
5
+ "bos_token": null,
6
+ "clean_up_tokenization_spaces": false,
7
+ "eos_token": "<|im_end|>",
8
+ "errors": "replace",
9
+ "is_local": false,
10
+ "max_length": null,
11
+ "max_pixels": 23000000,
12
+ "min_pixels": 200704,
13
+ "model_max_length": 131072,
14
+ "pad_to_multiple_of": null,
15
+ "pad_token": "<|endoftext|>",
16
+ "pad_token_type_id": 0,
17
+ "padding_side": "right",
18
+ "processor_class": "Qwen2_5_VLProcessor",
19
+ "split_special_tokens": false,
20
+ "tokenizer_class": "Qwen2Tokenizer",
21
+ "unk_token": null
22
+ }
checkpoint-500/trainer_state.json ADDED
@@ -0,0 +1,1045 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.2438569206842924,
6
+ "eval_steps": 500,
7
+ "global_step": 500,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "entropy": 1.7456206619739532,
14
+ "epoch": 0.012441679626749611,
15
+ "grad_norm": 0.048583984375,
16
+ "learning_rate": 1.0810810810810812e-05,
17
+ "loss": 0.31386559009552,
18
+ "mean_token_accuracy": 0.9072110533714295,
19
+ "num_tokens": 27963.0,
20
+ "step": 5
21
+ },
22
+ {
23
+ "entropy": 1.8172702223062516,
24
+ "epoch": 0.024883359253499222,
25
+ "grad_norm": 0.0537109375,
26
+ "learning_rate": 2.4324324324324327e-05,
27
+ "loss": 0.28579437732696533,
28
+ "mean_token_accuracy": 0.9151854813098907,
29
+ "num_tokens": 51393.0,
30
+ "step": 10
31
+ },
32
+ {
33
+ "entropy": 1.7869735598564147,
34
+ "epoch": 0.03732503888024884,
35
+ "grad_norm": 0.046875,
36
+ "learning_rate": 3.783783783783784e-05,
37
+ "loss": 0.26468374729156496,
38
+ "mean_token_accuracy": 0.9194357767701149,
39
+ "num_tokens": 76323.0,
40
+ "step": 15
41
+ },
42
+ {
43
+ "entropy": 1.7407771855592729,
44
+ "epoch": 0.049766718506998445,
45
+ "grad_norm": 0.0546875,
46
+ "learning_rate": 5.135135135135135e-05,
47
+ "loss": 0.22699759006500245,
48
+ "mean_token_accuracy": 0.936237809062004,
49
+ "num_tokens": 101144.0,
50
+ "step": 20
51
+ },
52
+ {
53
+ "entropy": 1.8171133548021317,
54
+ "epoch": 0.06220839813374806,
55
+ "grad_norm": 0.06787109375,
56
+ "learning_rate": 6.486486486486487e-05,
57
+ "loss": 0.21160719394683838,
58
+ "mean_token_accuracy": 0.9410519078373909,
59
+ "num_tokens": 125653.0,
60
+ "step": 25
61
+ },
62
+ {
63
+ "entropy": 1.6494354471564292,
64
+ "epoch": 0.07465007776049767,
65
+ "grad_norm": 0.068359375,
66
+ "learning_rate": 7.837837837837838e-05,
67
+ "loss": 0.1776595950126648,
68
+ "mean_token_accuracy": 0.9463573560118675,
69
+ "num_tokens": 150968.0,
70
+ "step": 30
71
+ },
72
+ {
73
+ "entropy": 1.5880378365516663,
74
+ "epoch": 0.08709175738724728,
75
+ "grad_norm": 0.076171875,
76
+ "learning_rate": 9.18918918918919e-05,
77
+ "loss": 0.18801350593566896,
78
+ "mean_token_accuracy": 0.9474205821752548,
79
+ "num_tokens": 176859.0,
80
+ "step": 35
81
+ },
82
+ {
83
+ "entropy": 1.5649296075105668,
84
+ "epoch": 0.09953343701399689,
85
+ "grad_norm": 0.064453125,
86
+ "learning_rate": 9.99992777797229e-05,
87
+ "loss": 0.18648279905319215,
88
+ "mean_token_accuracy": 0.9436241507530212,
89
+ "num_tokens": 198909.0,
90
+ "step": 40
91
+ },
92
+ {
93
+ "entropy": 1.5894027322530746,
94
+ "epoch": 0.1119751166407465,
95
+ "grad_norm": 0.05322265625,
96
+ "learning_rate": 9.999115304121457e-05,
97
+ "loss": 0.18634642362594606,
98
+ "mean_token_accuracy": 0.9470892950892449,
99
+ "num_tokens": 228344.0,
100
+ "step": 45
101
+ },
102
+ {
103
+ "entropy": 1.596228164434433,
104
+ "epoch": 0.12441679626749612,
105
+ "grad_norm": 0.0478515625,
106
+ "learning_rate": 9.997400226068578e-05,
107
+ "loss": 0.14496899843215943,
108
+ "mean_token_accuracy": 0.9579829111695289,
109
+ "num_tokens": 257062.0,
110
+ "step": 50
111
+ },
112
+ {
113
+ "entropy": 1.509284293651581,
114
+ "epoch": 0.1368584758942457,
115
+ "grad_norm": 0.03369140625,
116
+ "learning_rate": 9.994782853475774e-05,
117
+ "loss": 0.14144277572631836,
118
+ "mean_token_accuracy": 0.9537434980273247,
119
+ "num_tokens": 283149.0,
120
+ "step": 55
121
+ },
122
+ {
123
+ "entropy": 1.5500743955373764,
124
+ "epoch": 0.14930015552099535,
125
+ "grad_norm": 0.0546875,
126
+ "learning_rate": 9.99126365891696e-05,
127
+ "loss": 0.15906004905700682,
128
+ "mean_token_accuracy": 0.9526497855782509,
129
+ "num_tokens": 313192.0,
130
+ "step": 60
131
+ },
132
+ {
133
+ "entropy": 1.5956889361143112,
134
+ "epoch": 0.16174183514774496,
135
+ "grad_norm": 0.061279296875,
136
+ "learning_rate": 9.986843277792523e-05,
137
+ "loss": 0.17970917224884034,
138
+ "mean_token_accuracy": 0.9503620356321335,
139
+ "num_tokens": 340137.0,
140
+ "step": 65
141
+ },
142
+ {
143
+ "entropy": 1.6294057995080948,
144
+ "epoch": 0.17418351477449456,
145
+ "grad_norm": 0.055908203125,
146
+ "learning_rate": 9.9815225082146e-05,
147
+ "loss": 0.14261267185211182,
148
+ "mean_token_accuracy": 0.9562160760164261,
149
+ "num_tokens": 364984.0,
150
+ "step": 70
151
+ },
152
+ {
153
+ "entropy": 1.589295208454132,
154
+ "epoch": 0.18662519440124417,
155
+ "grad_norm": 0.053466796875,
156
+ "learning_rate": 9.975302310862964e-05,
157
+ "loss": 0.1694250226020813,
158
+ "mean_token_accuracy": 0.9456220239400863,
159
+ "num_tokens": 390651.0,
160
+ "step": 75
161
+ },
162
+ {
163
+ "entropy": 1.583991777896881,
164
+ "epoch": 0.19906687402799378,
165
+ "grad_norm": 0.0478515625,
166
+ "learning_rate": 9.968183808811586e-05,
167
+ "loss": 0.17054636478424073,
168
+ "mean_token_accuracy": 0.9493257701396942,
169
+ "num_tokens": 418166.0,
170
+ "step": 80
171
+ },
172
+ {
173
+ "entropy": 1.5742847174406052,
174
+ "epoch": 0.2115085536547434,
175
+ "grad_norm": 0.06103515625,
176
+ "learning_rate": 9.960168287325852e-05,
177
+ "loss": 0.17596685886383057,
178
+ "mean_token_accuracy": 0.9445611819624901,
179
+ "num_tokens": 442501.0,
180
+ "step": 85
181
+ },
182
+ {
183
+ "entropy": 1.5073494076728822,
184
+ "epoch": 0.223950233281493,
185
+ "grad_norm": 0.06640625,
186
+ "learning_rate": 9.951257193630507e-05,
187
+ "loss": 0.13867353200912474,
188
+ "mean_token_accuracy": 0.9568744376301765,
189
+ "num_tokens": 468083.0,
190
+ "step": 90
191
+ },
192
+ {
193
+ "entropy": 1.5407251685857772,
194
+ "epoch": 0.2363919129082426,
195
+ "grad_norm": 0.0673828125,
196
+ "learning_rate": 9.941452136648359e-05,
197
+ "loss": 0.13775357007980346,
198
+ "mean_token_accuracy": 0.9594547316431999,
199
+ "num_tokens": 491914.0,
200
+ "step": 95
201
+ },
202
+ {
203
+ "entropy": 1.4568117886781693,
204
+ "epoch": 0.24883359253499224,
205
+ "grad_norm": 0.045166015625,
206
+ "learning_rate": 9.930754886709772e-05,
207
+ "loss": 0.13010139465332032,
208
+ "mean_token_accuracy": 0.9607375919818878,
209
+ "num_tokens": 518984.0,
210
+ "step": 100
211
+ },
212
+ {
213
+ "entropy": 1.4679558753967286,
214
+ "epoch": 0.26127527216174184,
215
+ "grad_norm": 0.0517578125,
216
+ "learning_rate": 9.919167375233041e-05,
217
+ "loss": 0.15394901037216185,
218
+ "mean_token_accuracy": 0.9542355045676232,
219
+ "num_tokens": 544627.0,
220
+ "step": 105
221
+ },
222
+ {
223
+ "entropy": 1.5308140426874162,
224
+ "epoch": 0.2737169517884914,
225
+ "grad_norm": 0.053955078125,
226
+ "learning_rate": 9.906691694375656e-05,
227
+ "loss": 0.14595698118209838,
228
+ "mean_token_accuracy": 0.9553182557225227,
229
+ "num_tokens": 568970.0,
230
+ "step": 110
231
+ },
232
+ {
233
+ "entropy": 1.5124749779701232,
234
+ "epoch": 0.28615863141524106,
235
+ "grad_norm": 0.08056640625,
236
+ "learning_rate": 9.893330096656574e-05,
237
+ "loss": 0.1251847267150879,
238
+ "mean_token_accuracy": 0.9631539225578308,
239
+ "num_tokens": 594854.0,
240
+ "step": 115
241
+ },
242
+ {
243
+ "entropy": 1.5146708011627197,
244
+ "epoch": 0.2986003110419907,
245
+ "grad_norm": 0.053955078125,
246
+ "learning_rate": 9.879084994549503e-05,
247
+ "loss": 0.12504571676254272,
248
+ "mean_token_accuracy": 0.9637450009584427,
249
+ "num_tokens": 621481.0,
250
+ "step": 120
251
+ },
252
+ {
253
+ "entropy": 1.5158167153596878,
254
+ "epoch": 0.3110419906687403,
255
+ "grad_norm": 0.03271484375,
256
+ "learning_rate": 9.863958960047335e-05,
257
+ "loss": 0.11272231340408326,
258
+ "mean_token_accuracy": 0.9642089486122132,
259
+ "num_tokens": 648057.0,
260
+ "step": 125
261
+ },
262
+ {
263
+ "entropy": 1.4378292948007583,
264
+ "epoch": 0.3234836702954899,
265
+ "grad_norm": 0.05078125,
266
+ "learning_rate": 9.847954724197757e-05,
267
+ "loss": 0.1520946979522705,
268
+ "mean_token_accuracy": 0.9551170215010643,
269
+ "num_tokens": 676272.0,
270
+ "step": 130
271
+ },
272
+ {
273
+ "entropy": 1.4547880798578263,
274
+ "epoch": 0.3359253499222395,
275
+ "grad_norm": 0.039794921875,
276
+ "learning_rate": 9.831075176610163e-05,
277
+ "loss": 0.13464858531951904,
278
+ "mean_token_accuracy": 0.9599997282028199,
279
+ "num_tokens": 702496.0,
280
+ "step": 135
281
+ },
282
+ {
283
+ "entropy": 1.5038821995258331,
284
+ "epoch": 0.3483670295489891,
285
+ "grad_norm": 0.058349609375,
286
+ "learning_rate": 9.813323364933915e-05,
287
+ "loss": 0.13690755367279053,
288
+ "mean_token_accuracy": 0.9559143736958504,
289
+ "num_tokens": 726296.0,
290
+ "step": 140
291
+ },
292
+ {
293
+ "entropy": 1.5725213587284088,
294
+ "epoch": 0.3608087091757387,
295
+ "grad_norm": 0.05615234375,
296
+ "learning_rate": 9.794702494308093e-05,
297
+ "loss": 0.14729396104812623,
298
+ "mean_token_accuracy": 0.9551976174116135,
299
+ "num_tokens": 752371.0,
300
+ "step": 145
301
+ },
302
+ {
303
+ "entropy": 1.4945250004529953,
304
+ "epoch": 0.37325038880248834,
305
+ "grad_norm": 0.0478515625,
306
+ "learning_rate": 9.775215926782788e-05,
307
+ "loss": 0.1206730842590332,
308
+ "mean_token_accuracy": 0.9687894850969314,
309
+ "num_tokens": 775896.0,
310
+ "step": 150
311
+ },
312
+ {
313
+ "entropy": 1.4557270616292954,
314
+ "epoch": 0.3856920684292379,
315
+ "grad_norm": 0.05419921875,
316
+ "learning_rate": 9.754867180712082e-05,
317
+ "loss": 0.1341879963874817,
318
+ "mean_token_accuracy": 0.9626043424010277,
319
+ "num_tokens": 798172.0,
320
+ "step": 155
321
+ },
322
+ {
323
+ "entropy": 1.4879502207040787,
324
+ "epoch": 0.39813374805598756,
325
+ "grad_norm": 0.05224609375,
326
+ "learning_rate": 9.733659930118793e-05,
327
+ "loss": 0.13069820404052734,
328
+ "mean_token_accuracy": 0.9548368141055107,
329
+ "num_tokens": 824452.0,
330
+ "step": 160
331
+ },
332
+ {
333
+ "entropy": 1.5602718144655228,
334
+ "epoch": 0.4105754276827372,
335
+ "grad_norm": 0.044189453125,
336
+ "learning_rate": 9.711598004031131e-05,
337
+ "loss": 0.13032547235488892,
338
+ "mean_token_accuracy": 0.9589100196957588,
339
+ "num_tokens": 849316.0,
340
+ "step": 165
341
+ },
342
+ {
343
+ "entropy": 1.488172698020935,
344
+ "epoch": 0.4230171073094868,
345
+ "grad_norm": 0.03466796875,
346
+ "learning_rate": 9.688685385791339e-05,
347
+ "loss": 0.13182138204574584,
348
+ "mean_token_accuracy": 0.9608529090881348,
349
+ "num_tokens": 878357.0,
350
+ "step": 170
351
+ },
352
+ {
353
+ "entropy": 1.4886444747447967,
354
+ "epoch": 0.4354587869362364,
355
+ "grad_norm": 0.044189453125,
356
+ "learning_rate": 9.664926212336505e-05,
357
+ "loss": 0.1238294005393982,
358
+ "mean_token_accuracy": 0.960505859553814,
359
+ "num_tokens": 904192.0,
360
+ "step": 175
361
+ },
362
+ {
363
+ "entropy": 1.5064076393842698,
364
+ "epoch": 0.447900466562986,
365
+ "grad_norm": 0.0458984375,
366
+ "learning_rate": 9.640324773451622e-05,
367
+ "loss": 0.167707359790802,
368
+ "mean_token_accuracy": 0.9532883360981941,
369
+ "num_tokens": 930575.0,
370
+ "step": 180
371
+ },
372
+ {
373
+ "entropy": 1.445479767024517,
374
+ "epoch": 0.4603421461897356,
375
+ "grad_norm": 0.048583984375,
376
+ "learning_rate": 9.614885510995047e-05,
377
+ "loss": 0.12214440107345581,
378
+ "mean_token_accuracy": 0.9636711940169335,
379
+ "num_tokens": 954713.0,
380
+ "step": 185
381
+ },
382
+ {
383
+ "entropy": 1.508093237876892,
384
+ "epoch": 0.4727838258164852,
385
+ "grad_norm": 0.052734375,
386
+ "learning_rate": 9.588613018096529e-05,
387
+ "loss": 0.13071714639663695,
388
+ "mean_token_accuracy": 0.9601568162441254,
389
+ "num_tokens": 981241.0,
390
+ "step": 190
391
+ },
392
+ {
393
+ "entropy": 1.4727303981781006,
394
+ "epoch": 0.48522550544323484,
395
+ "grad_norm": 0.052978515625,
396
+ "learning_rate": 9.561512038327882e-05,
397
+ "loss": 0.11298023462295533,
398
+ "mean_token_accuracy": 0.9675653219223023,
399
+ "num_tokens": 1007954.0,
400
+ "step": 195
401
+ },
402
+ {
403
+ "entropy": 1.463455791771412,
404
+ "epoch": 0.4976671850699845,
405
+ "grad_norm": 0.050537109375,
406
+ "learning_rate": 9.533587464846548e-05,
407
+ "loss": 0.13673393726348876,
408
+ "mean_token_accuracy": 0.9588131874799728,
409
+ "num_tokens": 1037256.0,
410
+ "step": 200
411
+ },
412
+ {
413
+ "entropy": 1.455343420803547,
414
+ "epoch": 0.5101088646967341,
415
+ "grad_norm": 0.060302734375,
416
+ "learning_rate": 9.504844339512095e-05,
417
+ "loss": 0.16279250383377075,
418
+ "mean_token_accuracy": 0.952251310646534,
419
+ "num_tokens": 1059784.0,
420
+ "step": 205
421
+ },
422
+ {
423
+ "entropy": 1.512709778547287,
424
+ "epoch": 0.5225505443234837,
425
+ "grad_norm": 0.042724609375,
426
+ "learning_rate": 9.475287851975925e-05,
427
+ "loss": 0.10544586181640625,
428
+ "mean_token_accuracy": 0.9677229434251785,
429
+ "num_tokens": 1082209.0,
430
+ "step": 210
431
+ },
432
+ {
433
+ "entropy": 1.462220585346222,
434
+ "epoch": 0.5349922239502333,
435
+ "grad_norm": 0.0400390625,
436
+ "learning_rate": 9.444923338744239e-05,
437
+ "loss": 0.11979058980941773,
438
+ "mean_token_accuracy": 0.9626576647162437,
439
+ "num_tokens": 1110595.0,
440
+ "step": 215
441
+ },
442
+ {
443
+ "entropy": 1.4548005178570746,
444
+ "epoch": 0.5474339035769828,
445
+ "grad_norm": 0.04345703125,
446
+ "learning_rate": 9.413756282214537e-05,
447
+ "loss": 0.1187555432319641,
448
+ "mean_token_accuracy": 0.9617565467953682,
449
+ "num_tokens": 1135832.0,
450
+ "step": 220
451
+ },
452
+ {
453
+ "entropy": 1.493788743019104,
454
+ "epoch": 0.5598755832037325,
455
+ "grad_norm": 0.06591796875,
456
+ "learning_rate": 9.381792309685746e-05,
457
+ "loss": 0.15725988149642944,
458
+ "mean_token_accuracy": 0.9544133111834526,
459
+ "num_tokens": 1163621.0,
460
+ "step": 225
461
+ },
462
+ {
463
+ "entropy": 1.4669800892472267,
464
+ "epoch": 0.5723172628304821,
465
+ "grad_norm": 0.042236328125,
466
+ "learning_rate": 9.3490371923422e-05,
467
+ "loss": 0.12038854360580445,
468
+ "mean_token_accuracy": 0.9577056676149368,
469
+ "num_tokens": 1188345.0,
470
+ "step": 230
471
+ },
472
+ {
473
+ "entropy": 1.5317447245121003,
474
+ "epoch": 0.5847589424572317,
475
+ "grad_norm": 0.05615234375,
476
+ "learning_rate": 9.31549684421163e-05,
477
+ "loss": 0.12890284061431884,
478
+ "mean_token_accuracy": 0.9609759420156478,
479
+ "num_tokens": 1215187.0,
480
+ "step": 235
481
+ },
482
+ {
483
+ "entropy": 1.502908742427826,
484
+ "epoch": 0.5972006220839814,
485
+ "grad_norm": 0.048828125,
486
+ "learning_rate": 9.28117732109738e-05,
487
+ "loss": 0.12224407196044922,
488
+ "mean_token_accuracy": 0.9638051286339759,
489
+ "num_tokens": 1241282.0,
490
+ "step": 240
491
+ },
492
+ {
493
+ "entropy": 1.4564243242144586,
494
+ "epoch": 0.609642301710731,
495
+ "grad_norm": 0.04638671875,
496
+ "learning_rate": 9.246084819485004e-05,
497
+ "loss": 0.13289834260940553,
498
+ "mean_token_accuracy": 0.9601684510707855,
499
+ "num_tokens": 1268251.0,
500
+ "step": 245
501
+ },
502
+ {
503
+ "entropy": 1.4659890502691268,
504
+ "epoch": 0.6220839813374806,
505
+ "grad_norm": 0.0595703125,
506
+ "learning_rate": 9.21022567542348e-05,
507
+ "loss": 0.14783012866973877,
508
+ "mean_token_accuracy": 0.9558995455503464,
509
+ "num_tokens": 1292958.0,
510
+ "step": 250
511
+ },
512
+ {
513
+ "entropy": 1.4668870717287064,
514
+ "epoch": 0.6345256609642301,
515
+ "grad_norm": 0.057861328125,
516
+ "learning_rate": 9.173606363381219e-05,
517
+ "loss": 0.12078696489334106,
518
+ "mean_token_accuracy": 0.965465834736824,
519
+ "num_tokens": 1318689.0,
520
+ "step": 255
521
+ },
522
+ {
523
+ "entropy": 1.4572956532239913,
524
+ "epoch": 0.6469673405909798,
525
+ "grad_norm": 0.05126953125,
526
+ "learning_rate": 9.136233495077077e-05,
527
+ "loss": 0.1338449239730835,
528
+ "mean_token_accuracy": 0.9598589226603508,
529
+ "num_tokens": 1345620.0,
530
+ "step": 260
531
+ },
532
+ {
533
+ "entropy": 1.436805287003517,
534
+ "epoch": 0.6594090202177294,
535
+ "grad_norm": 0.050537109375,
536
+ "learning_rate": 9.098113818286595e-05,
537
+ "loss": 0.1269620180130005,
538
+ "mean_token_accuracy": 0.963837206363678,
539
+ "num_tokens": 1369989.0,
540
+ "step": 265
541
+ },
542
+ {
543
+ "entropy": 1.430183658003807,
544
+ "epoch": 0.671850699844479,
545
+ "grad_norm": 0.037353515625,
546
+ "learning_rate": 9.059254215623668e-05,
547
+ "loss": 0.09294362068176269,
548
+ "mean_token_accuracy": 0.9718702122569084,
549
+ "num_tokens": 1399090.0,
550
+ "step": 270
551
+ },
552
+ {
553
+ "entropy": 1.4391476839780808,
554
+ "epoch": 0.6842923794712286,
555
+ "grad_norm": 0.042236328125,
556
+ "learning_rate": 9.01966170329787e-05,
557
+ "loss": 0.11170387268066406,
558
+ "mean_token_accuracy": 0.9664130583405495,
559
+ "num_tokens": 1425851.0,
560
+ "step": 275
561
+ },
562
+ {
563
+ "entropy": 1.5080994993448258,
564
+ "epoch": 0.6967340590979783,
565
+ "grad_norm": 0.06005859375,
566
+ "learning_rate": 8.979343429847653e-05,
567
+ "loss": 0.1207460641860962,
568
+ "mean_token_accuracy": 0.96175517141819,
569
+ "num_tokens": 1450517.0,
570
+ "step": 280
571
+ },
572
+ {
573
+ "entropy": 1.4918249040842055,
574
+ "epoch": 0.7091757387247278,
575
+ "grad_norm": 0.0419921875,
576
+ "learning_rate": 8.93830667484967e-05,
577
+ "loss": 0.11671255826950074,
578
+ "mean_token_accuracy": 0.9663726434111595,
579
+ "num_tokens": 1474715.0,
580
+ "step": 285
581
+ },
582
+ {
583
+ "entropy": 1.4864625990390778,
584
+ "epoch": 0.7216174183514774,
585
+ "grad_norm": 0.044921875,
586
+ "learning_rate": 8.896558847604414e-05,
587
+ "loss": 0.12517218589782714,
588
+ "mean_token_accuracy": 0.9652746349573136,
589
+ "num_tokens": 1499442.0,
590
+ "step": 290
591
+ },
592
+ {
593
+ "entropy": 1.490417730808258,
594
+ "epoch": 0.7340590979782271,
595
+ "grad_norm": 0.037841796875,
596
+ "learning_rate": 8.854107485798458e-05,
597
+ "loss": 0.11757193803787232,
598
+ "mean_token_accuracy": 0.9664239585399628,
599
+ "num_tokens": 1523873.0,
600
+ "step": 295
601
+ },
602
+ {
603
+ "entropy": 1.4401051640510558,
604
+ "epoch": 0.7465007776049767,
605
+ "grad_norm": 0.053466796875,
606
+ "learning_rate": 8.810960254143499e-05,
607
+ "loss": 0.13470059633255005,
608
+ "mean_token_accuracy": 0.9591680407524109,
609
+ "num_tokens": 1548575.0,
610
+ "step": 300
611
+ },
612
+ {
613
+ "entropy": 1.5322502881288529,
614
+ "epoch": 0.7589424572317263,
615
+ "grad_norm": 0.053955078125,
616
+ "learning_rate": 8.767124942992475e-05,
617
+ "loss": 0.12030593156814576,
618
+ "mean_token_accuracy": 0.9647545605897904,
619
+ "num_tokens": 1575643.0,
620
+ "step": 305
621
+ },
622
+ {
623
+ "entropy": 1.458931715786457,
624
+ "epoch": 0.7713841368584758,
625
+ "grad_norm": 0.042724609375,
626
+ "learning_rate": 8.722609466932996e-05,
627
+ "loss": 0.09307305216789245,
628
+ "mean_token_accuracy": 0.9665900468826294,
629
+ "num_tokens": 1600333.0,
630
+ "step": 310
631
+ },
632
+ {
633
+ "entropy": 1.458182653784752,
634
+ "epoch": 0.7838258164852255,
635
+ "grad_norm": 0.047607421875,
636
+ "learning_rate": 8.677421863358341e-05,
637
+ "loss": 0.12296299934387207,
638
+ "mean_token_accuracy": 0.9640052378177643,
639
+ "num_tokens": 1625117.0,
640
+ "step": 315
641
+ },
642
+ {
643
+ "entropy": 1.4836479336023332,
644
+ "epoch": 0.7962674961119751,
645
+ "grad_norm": 0.05126953125,
646
+ "learning_rate": 8.631570291016284e-05,
647
+ "loss": 0.12105728387832641,
648
+ "mean_token_accuracy": 0.9649034470319748,
649
+ "num_tokens": 1649929.0,
650
+ "step": 320
651
+ },
652
+ {
653
+ "entropy": 1.5023894742131234,
654
+ "epoch": 0.8087091757387247,
655
+ "grad_norm": 0.044921875,
656
+ "learning_rate": 8.585063028536016e-05,
657
+ "loss": 0.10724372863769531,
658
+ "mean_token_accuracy": 0.965858943760395,
659
+ "num_tokens": 1675782.0,
660
+ "step": 325
661
+ },
662
+ {
663
+ "entropy": 1.4469050377607346,
664
+ "epoch": 0.8211508553654744,
665
+ "grad_norm": 0.052490234375,
666
+ "learning_rate": 8.537908472933402e-05,
667
+ "loss": 0.13695430755615234,
668
+ "mean_token_accuracy": 0.9561882585287094,
669
+ "num_tokens": 1703718.0,
670
+ "step": 330
671
+ },
672
+ {
673
+ "entropy": 1.5462682336568832,
674
+ "epoch": 0.833592534992224,
675
+ "grad_norm": 0.047607421875,
676
+ "learning_rate": 8.490115138094889e-05,
677
+ "loss": 0.14301273822784424,
678
+ "mean_token_accuracy": 0.9608543425798416,
679
+ "num_tokens": 1731614.0,
680
+ "step": 335
681
+ },
682
+ {
683
+ "entropy": 1.5303865879774095,
684
+ "epoch": 0.8460342146189735,
685
+ "grad_norm": 0.0556640625,
686
+ "learning_rate": 8.4416916532403e-05,
687
+ "loss": 0.1558545470237732,
688
+ "mean_token_accuracy": 0.9530998334288597,
689
+ "num_tokens": 1758723.0,
690
+ "step": 340
691
+ },
692
+ {
693
+ "entropy": 1.451111488044262,
694
+ "epoch": 0.8584758942457231,
695
+ "grad_norm": 0.039794921875,
696
+ "learning_rate": 8.392646761364789e-05,
697
+ "loss": 0.10284805297851562,
698
+ "mean_token_accuracy": 0.9650755852460862,
699
+ "num_tokens": 1785721.0,
700
+ "step": 345
701
+ },
702
+ {
703
+ "entropy": 1.484094935655594,
704
+ "epoch": 0.8709175738724728,
705
+ "grad_norm": 0.05419921875,
706
+ "learning_rate": 8.342989317660289e-05,
707
+ "loss": 0.10030006170272827,
708
+ "mean_token_accuracy": 0.9675216883420944,
709
+ "num_tokens": 1814257.0,
710
+ "step": 350
711
+ },
712
+ {
713
+ "entropy": 1.5280012369155884,
714
+ "epoch": 0.8833592534992224,
715
+ "grad_norm": 0.0546875,
716
+ "learning_rate": 8.292728287916665e-05,
717
+ "loss": 0.09518902897834777,
718
+ "mean_token_accuracy": 0.9697460547089577,
719
+ "num_tokens": 1838719.0,
720
+ "step": 355
721
+ },
722
+ {
723
+ "entropy": 1.4606290251016616,
724
+ "epoch": 0.895800933125972,
725
+ "grad_norm": 0.05810546875,
726
+ "learning_rate": 8.241872746902935e-05,
727
+ "loss": 0.09836371541023255,
728
+ "mean_token_accuracy": 0.9680053278803825,
729
+ "num_tokens": 1860428.0,
730
+ "step": 360
731
+ },
732
+ {
733
+ "entropy": 1.4977456852793694,
734
+ "epoch": 0.9082426127527217,
735
+ "grad_norm": 0.053466796875,
736
+ "learning_rate": 8.190431876728772e-05,
737
+ "loss": 0.11404428482055665,
738
+ "mean_token_accuracy": 0.9683067321777343,
739
+ "num_tokens": 1887249.0,
740
+ "step": 365
741
+ },
742
+ {
743
+ "entropy": 1.4481744587421417,
744
+ "epoch": 0.9206842923794712,
745
+ "grad_norm": 0.04248046875,
746
+ "learning_rate": 8.138414965186667e-05,
747
+ "loss": 0.11055492162704468,
748
+ "mean_token_accuracy": 0.9680417776107788,
749
+ "num_tokens": 1913193.0,
750
+ "step": 370
751
+ },
752
+ {
753
+ "entropy": 1.4087932407855988,
754
+ "epoch": 0.9331259720062208,
755
+ "grad_norm": 0.048583984375,
756
+ "learning_rate": 8.085831404074984e-05,
757
+ "loss": 0.08752046227455139,
758
+ "mean_token_accuracy": 0.9722029373049736,
759
+ "num_tokens": 1935245.0,
760
+ "step": 375
761
+ },
762
+ {
763
+ "entropy": 1.4568452775478362,
764
+ "epoch": 0.9455676516329704,
765
+ "grad_norm": 0.0576171875,
766
+ "learning_rate": 8.03269068750225e-05,
767
+ "loss": 0.11881341934204101,
768
+ "mean_token_accuracy": 0.959407502412796,
769
+ "num_tokens": 1961480.0,
770
+ "step": 380
771
+ },
772
+ {
773
+ "entropy": 1.4280684739351273,
774
+ "epoch": 0.9580093312597201,
775
+ "grad_norm": 0.05078125,
776
+ "learning_rate": 7.979002410172954e-05,
777
+ "loss": 0.14049121141433715,
778
+ "mean_token_accuracy": 0.9576024219393731,
779
+ "num_tokens": 1986643.0,
780
+ "step": 385
781
+ },
782
+ {
783
+ "entropy": 1.4764668315649032,
784
+ "epoch": 0.9704510108864697,
785
+ "grad_norm": 0.040283203125,
786
+ "learning_rate": 7.924776265655216e-05,
787
+ "loss": 0.11259770393371582,
788
+ "mean_token_accuracy": 0.9635465934872627,
789
+ "num_tokens": 2012509.0,
790
+ "step": 390
791
+ },
792
+ {
793
+ "entropy": 1.4508350789546967,
794
+ "epoch": 0.9828926905132193,
795
+ "grad_norm": 0.0361328125,
796
+ "learning_rate": 7.870022044630569e-05,
797
+ "loss": 0.11488029956817628,
798
+ "mean_token_accuracy": 0.9670460253953934,
799
+ "num_tokens": 2039717.0,
800
+ "step": 395
801
+ },
802
+ {
803
+ "entropy": 1.5077543556690216,
804
+ "epoch": 0.995334370139969,
805
+ "grad_norm": 0.06201171875,
806
+ "learning_rate": 7.814749633126235e-05,
807
+ "loss": 0.1424098014831543,
808
+ "mean_token_accuracy": 0.9543160945177078,
809
+ "num_tokens": 2064948.0,
810
+ "step": 400
811
+ },
812
+ {
813
+ "epoch": 1.0,
814
+ "eval_entropy": 1.4550913160425485,
815
+ "eval_loss": 0.12082157284021378,
816
+ "eval_mean_token_accuracy": 0.9625284673763668,
817
+ "eval_num_tokens": 2076268.0,
818
+ "eval_runtime": 24.7531,
819
+ "eval_samples_per_second": 12.16,
820
+ "eval_steps_per_second": 12.16,
821
+ "step": 402
822
+ },
823
+ {
824
+ "entropy": 1.4730579455693562,
825
+ "epoch": 1.0074650077760499,
826
+ "grad_norm": 0.0322265625,
827
+ "learning_rate": 7.75896901073017e-05,
828
+ "loss": 0.08911717534065247,
829
+ "mean_token_accuracy": 0.9732377681976709,
830
+ "num_tokens": 2088687.0,
831
+ "step": 405
832
+ },
833
+ {
834
+ "entropy": 1.436254122853279,
835
+ "epoch": 1.0199066874027993,
836
+ "grad_norm": 0.04931640625,
837
+ "learning_rate": 7.702690248789223e-05,
838
+ "loss": 0.10224579572677613,
839
+ "mean_token_accuracy": 0.9676861181855202,
840
+ "num_tokens": 2114020.0,
841
+ "step": 410
842
+ },
843
+ {
844
+ "entropy": 1.4225786730647088,
845
+ "epoch": 1.032348367029549,
846
+ "grad_norm": 0.0517578125,
847
+ "learning_rate": 7.645923508590726e-05,
848
+ "loss": 0.09414710998535156,
849
+ "mean_token_accuracy": 0.9725460812449456,
850
+ "num_tokens": 2143268.0,
851
+ "step": 415
852
+ },
853
+ {
854
+ "entropy": 1.4235260367393494,
855
+ "epoch": 1.0447900466562987,
856
+ "grad_norm": 0.040283203125,
857
+ "learning_rate": 7.588679039527848e-05,
858
+ "loss": 0.0781755805015564,
859
+ "mean_token_accuracy": 0.9752240985631943,
860
+ "num_tokens": 2168154.0,
861
+ "step": 420
862
+ },
863
+ {
864
+ "entropy": 1.3582488745450974,
865
+ "epoch": 1.0572317262830482,
866
+ "grad_norm": 0.03564453125,
867
+ "learning_rate": 7.530967177249036e-05,
868
+ "loss": 0.06534834504127503,
869
+ "mean_token_accuracy": 0.9809993267059326,
870
+ "num_tokens": 2195567.0,
871
+ "step": 425
872
+ },
873
+ {
874
+ "entropy": 1.4120464980602265,
875
+ "epoch": 1.0696734059097979,
876
+ "grad_norm": 0.05029296875,
877
+ "learning_rate": 7.472798341791877e-05,
878
+ "loss": 0.08980979323387146,
879
+ "mean_token_accuracy": 0.9729388952255249,
880
+ "num_tokens": 2220651.0,
881
+ "step": 430
882
+ },
883
+ {
884
+ "entropy": 1.3695552781224252,
885
+ "epoch": 1.0821150855365473,
886
+ "grad_norm": 0.04736328125,
887
+ "learning_rate": 7.414183035701749e-05,
888
+ "loss": 0.07374750971794128,
889
+ "mean_token_accuracy": 0.9773057013750076,
890
+ "num_tokens": 2244016.0,
891
+ "step": 435
892
+ },
893
+ {
894
+ "entropy": 1.361125336587429,
895
+ "epoch": 1.094556765163297,
896
+ "grad_norm": 0.040283203125,
897
+ "learning_rate": 7.355131842135543e-05,
898
+ "loss": 0.09960444569587708,
899
+ "mean_token_accuracy": 0.9707440197467804,
900
+ "num_tokens": 2269688.0,
901
+ "step": 440
902
+ },
903
+ {
904
+ "entropy": 1.4232443049550056,
905
+ "epoch": 1.1069984447900467,
906
+ "grad_norm": 0.040283203125,
907
+ "learning_rate": 7.295655422950849e-05,
908
+ "loss": 0.08172831535339356,
909
+ "mean_token_accuracy": 0.9749625563621521,
910
+ "num_tokens": 2294075.0,
911
+ "step": 445
912
+ },
913
+ {
914
+ "entropy": 1.4120786994695664,
915
+ "epoch": 1.1194401244167962,
916
+ "grad_norm": 0.0341796875,
917
+ "learning_rate": 7.235764516780927e-05,
918
+ "loss": 0.06837162375450134,
919
+ "mean_token_accuracy": 0.9771177500486374,
920
+ "num_tokens": 2319276.0,
921
+ "step": 450
922
+ },
923
+ {
924
+ "entropy": 1.4431693792343139,
925
+ "epoch": 1.1318818040435459,
926
+ "grad_norm": 0.044677734375,
927
+ "learning_rate": 7.175469937095818e-05,
928
+ "loss": 0.08680518865585327,
929
+ "mean_token_accuracy": 0.9729270681738853,
930
+ "num_tokens": 2347219.0,
931
+ "step": 455
932
+ },
933
+ {
934
+ "entropy": 1.4526385068893433,
935
+ "epoch": 1.1443234836702956,
936
+ "grad_norm": 0.10302734375,
937
+ "learning_rate": 7.114782570249943e-05,
938
+ "loss": 0.09112498164176941,
939
+ "mean_token_accuracy": 0.973096051812172,
940
+ "num_tokens": 2372584.0,
941
+ "step": 460
942
+ },
943
+ {
944
+ "entropy": 1.3945886969566346,
945
+ "epoch": 1.156765163297045,
946
+ "grad_norm": 0.04443359375,
947
+ "learning_rate": 7.053713373516538e-05,
948
+ "loss": 0.07018510103225709,
949
+ "mean_token_accuracy": 0.9799379587173462,
950
+ "num_tokens": 2398752.0,
951
+ "step": 465
952
+ },
953
+ {
954
+ "entropy": 1.3700096011161804,
955
+ "epoch": 1.1692068429237947,
956
+ "grad_norm": 0.055908203125,
957
+ "learning_rate": 6.992273373109288e-05,
958
+ "loss": 0.06986131072044373,
959
+ "mean_token_accuracy": 0.9791282191872597,
960
+ "num_tokens": 2421888.0,
961
+ "step": 470
962
+ },
963
+ {
964
+ "entropy": 1.3979035422205925,
965
+ "epoch": 1.1816485225505442,
966
+ "grad_norm": 0.04736328125,
967
+ "learning_rate": 6.930473662191517e-05,
968
+ "loss": 0.09055956602096557,
969
+ "mean_token_accuracy": 0.9743469759821892,
970
+ "num_tokens": 2448705.0,
971
+ "step": 475
972
+ },
973
+ {
974
+ "entropy": 1.3682101637125015,
975
+ "epoch": 1.194090202177294,
976
+ "grad_norm": 0.07177734375,
977
+ "learning_rate": 6.868325398873284e-05,
978
+ "loss": 0.07687475085258484,
979
+ "mean_token_accuracy": 0.9755479469895363,
980
+ "num_tokens": 2474561.0,
981
+ "step": 480
982
+ },
983
+ {
984
+ "entropy": 1.36375695168972,
985
+ "epoch": 1.2065318818040436,
986
+ "grad_norm": 0.04248046875,
987
+ "learning_rate": 6.805839804196757e-05,
988
+ "loss": 0.09423953294754028,
989
+ "mean_token_accuracy": 0.9717281922698021,
990
+ "num_tokens": 2501620.0,
991
+ "step": 485
992
+ },
993
+ {
994
+ "entropy": 1.3528606280684472,
995
+ "epoch": 1.218973561430793,
996
+ "grad_norm": 0.050048828125,
997
+ "learning_rate": 6.743028160110215e-05,
998
+ "loss": 0.07231994867324829,
999
+ "mean_token_accuracy": 0.976399302482605,
1000
+ "num_tokens": 2527481.0,
1001
+ "step": 490
1002
+ },
1003
+ {
1004
+ "entropy": 1.4269449830055236,
1005
+ "epoch": 1.2314152410575427,
1006
+ "grad_norm": 0.061279296875,
1007
+ "learning_rate": 6.679901807431073e-05,
1008
+ "loss": 0.0847695529460907,
1009
+ "mean_token_accuracy": 0.9742431849241256,
1010
+ "num_tokens": 2553527.0,
1011
+ "step": 495
1012
+ },
1013
+ {
1014
+ "entropy": 1.4285764783620833,
1015
+ "epoch": 1.2438569206842924,
1016
+ "grad_norm": 0.044677734375,
1017
+ "learning_rate": 6.616472143798261e-05,
1018
+ "loss": 0.07603438496589661,
1019
+ "mean_token_accuracy": 0.9767945379018783,
1020
+ "num_tokens": 2580242.0,
1021
+ "step": 500
1022
+ }
1023
+ ],
1024
+ "logging_steps": 5,
1025
+ "max_steps": 1206,
1026
+ "num_input_tokens_seen": 0,
1027
+ "num_train_epochs": 3,
1028
+ "save_steps": 500,
1029
+ "stateful_callbacks": {
1030
+ "TrainerControl": {
1031
+ "args": {
1032
+ "should_epoch_stop": false,
1033
+ "should_evaluate": false,
1034
+ "should_log": false,
1035
+ "should_save": true,
1036
+ "should_training_stop": false
1037
+ },
1038
+ "attributes": {}
1039
+ }
1040
+ },
1041
+ "total_flos": 3.0871202281887744e+16,
1042
+ "train_batch_size": 1,
1043
+ "trial_name": null,
1044
+ "trial_params": null
1045
+ }
checkpoint-500/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b76582097e27a940c0a231a0d53cf8cdc986bf57bf76ad6533b70015ba5c67
3
+ size 5713
processor_config.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_convert_rgb": true,
5
+ "do_normalize": true,
6
+ "do_rescale": true,
7
+ "do_resize": true,
8
+ "image_mean": [
9
+ 0.48145466,
10
+ 0.4578275,
11
+ 0.40821073
12
+ ],
13
+ "image_processor_type": "Qwen2VLImageProcessorFast",
14
+ "image_std": [
15
+ 0.26862954,
16
+ 0.26130258,
17
+ 0.27577711
18
+ ],
19
+ "merge_size": 2,
20
+ "patch_size": 14,
21
+ "resample": 3,
22
+ "rescale_factor": 0.00392156862745098,
23
+ "size": {
24
+ "longest_edge": 23000000,
25
+ "shortest_edge": 200704
26
+ },
27
+ "temporal_patch_size": 2
28
+ },
29
+ "processor_class": "Qwen2_5_VLProcessor",
30
+ "video_processor": {
31
+ "data_format": "channels_first",
32
+ "default_to_square": true,
33
+ "do_convert_rgb": true,
34
+ "do_normalize": true,
35
+ "do_rescale": true,
36
+ "do_resize": true,
37
+ "do_sample_frames": false,
38
+ "image_mean": [
39
+ 0.48145466,
40
+ 0.4578275,
41
+ 0.40821073
42
+ ],
43
+ "image_processor_type": "Qwen2VLImageProcessor",
44
+ "image_std": [
45
+ 0.26862954,
46
+ 0.26130258,
47
+ 0.27577711
48
+ ],
49
+ "max_frames": 768,
50
+ "merge_size": 2,
51
+ "min_frames": 4,
52
+ "patch_size": 14,
53
+ "resample": 3,
54
+ "rescale_factor": 0.00392156862745098,
55
+ "return_metadata": false,
56
+ "size": {
57
+ "longest_edge": 23000000,
58
+ "shortest_edge": 200704
59
+ },
60
+ "temporal_patch_size": 2,
61
+ "video_processor_type": "Qwen2VLVideoProcessor"
62
+ }
63
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a7aabe7a3b44651592a99607bb33066e6965260336be9218cccd53af161491d
3
+ size 11422060
tokenizer_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_commit_hash": null,
3
+ "add_prefix_space": false,
4
+ "backend": "tokenizers",
5
+ "bos_token": null,
6
+ "clean_up_tokenization_spaces": false,
7
+ "eos_token": "<|im_end|>",
8
+ "errors": "replace",
9
+ "is_local": false,
10
+ "max_length": null,
11
+ "max_pixels": 23000000,
12
+ "min_pixels": 200704,
13
+ "model_max_length": 131072,
14
+ "pad_to_multiple_of": null,
15
+ "pad_token": "<|endoftext|>",
16
+ "pad_token_type_id": 0,
17
+ "padding_side": "right",
18
+ "processor_class": "Qwen2_5_VLProcessor",
19
+ "split_special_tokens": false,
20
+ "tokenizer_class": "Qwen2Tokenizer",
21
+ "unk_token": null
22
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8b76582097e27a940c0a231a0d53cf8cdc986bf57bf76ad6533b70015ba5c67
3
+ size 5713