bluuluu commited on
Commit
ed1e5ab
·
verified ·
1 Parent(s): fb77a4a

Model save

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen2.5-1.5B-Instruct
3
+ library_name: transformers
4
+ model_name: Qwen2.5-1.5B-Open-R1-Distill
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for Qwen2.5-1.5B-Open-R1-Distill
13
+
14
+ This model is a fine-tuned version of [Qwen/Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct).
15
+ It has been trained using [TRL](https://github.com/huggingface/trl).
16
+
17
+ ## Quick start
18
+
19
+ ```python
20
+ from transformers import pipeline
21
+
22
+ 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?"
23
+ generator = pipeline("text-generation", model="bluuluu/Qwen2.5-1.5B-Open-R1-Distill", device="cuda")
24
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
25
+ print(output["generated_text"])
26
+ ```
27
+
28
+ ## Training procedure
29
+
30
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/2741919970-hustvl/huggingface/runs/8v0s3ur8)
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.15.0.dev0
38
+ - Transformers: 4.49.0.dev0
39
+ - Pytorch: 2.5.1
40
+ - Datasets: 3.2.0
41
+ - Tokenizers: 0.21.0
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
added_tokens.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</tool_call>": 151658,
3
+ "<tool_call>": 151657,
4
+ "<|box_end|>": 151649,
5
+ "<|box_start|>": 151648,
6
+ "<|endoftext|>": 151643,
7
+ "<|file_sep|>": 151664,
8
+ "<|fim_middle|>": 151660,
9
+ "<|fim_pad|>": 151662,
10
+ "<|fim_prefix|>": 151659,
11
+ "<|fim_suffix|>": 151661,
12
+ "<|im_end|>": 151645,
13
+ "<|im_start|>": 151644,
14
+ "<|image_pad|>": 151655,
15
+ "<|object_ref_end|>": 151647,
16
+ "<|object_ref_start|>": 151646,
17
+ "<|quad_end|>": 151651,
18
+ "<|quad_start|>": 151650,
19
+ "<|repo_name|>": 151663,
20
+ "<|video_pad|>": 151656,
21
+ "<|vision_end|>": 151653,
22
+ "<|vision_pad|>": 151654,
23
+ "<|vision_start|>": 151652
24
+ }
all_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 76959556042752.0,
3
+ "train_loss": 0.8068137678457665,
4
+ "train_runtime": 18078.9101,
5
+ "train_samples": 16610,
6
+ "train_samples_per_second": 2.392,
7
+ "train_steps_per_second": 0.075
8
+ }
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Qwen/Qwen2.5-1.5B-Instruct",
3
+ "architectures": [
4
+ "Qwen2ForCausalLM"
5
+ ],
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 1536,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 8960,
13
+ "max_position_embeddings": 32768,
14
+ "max_window_layers": 21,
15
+ "model_type": "qwen2",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 28,
18
+ "num_key_value_heads": 2,
19
+ "rms_norm_eps": 1e-06,
20
+ "rope_scaling": null,
21
+ "rope_theta": 1000000.0,
22
+ "sliding_window": null,
23
+ "tie_word_embeddings": true,
24
+ "torch_dtype": "bfloat16",
25
+ "transformers_version": "4.49.0.dev0",
26
+ "use_cache": false,
27
+ "use_sliding_window": false,
28
+ "vocab_size": 151936
29
+ }
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "repetition_penalty": 1.1,
10
+ "temperature": 0.7,
11
+ "top_k": 20,
12
+ "top_p": 0.8,
13
+ "transformers_version": "4.49.0.dev0"
14
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:954f58fa168bc0d18b848661a47f2b087e94736c27a2cd4e959343518ab78bd0
3
+ size 3087467144
special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": "<|im_end|>"
25
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c5ae00e602b8860cbd784ba82a8aa14e8feecec692e7076590d014d7b7fdafa
3
+ size 11421896
tokenizer_config.json ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ }
181
+ },
182
+ "additional_special_tokens": [
183
+ "<|im_start|>",
184
+ "<|im_end|>",
185
+ "<|object_ref_start|>",
186
+ "<|object_ref_end|>",
187
+ "<|box_start|>",
188
+ "<|box_end|>",
189
+ "<|quad_start|>",
190
+ "<|quad_end|>",
191
+ "<|vision_start|>",
192
+ "<|vision_end|>",
193
+ "<|vision_pad|>",
194
+ "<|image_pad|>",
195
+ "<|video_pad|>"
196
+ ],
197
+ "bos_token": null,
198
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
199
+ "clean_up_tokenization_spaces": false,
200
+ "eos_token": "<|im_end|>",
201
+ "errors": "replace",
202
+ "extra_special_tokens": {},
203
+ "model_max_length": 131072,
204
+ "pad_token": "<|im_end|>",
205
+ "split_special_tokens": false,
206
+ "tokenizer_class": "Qwen2Tokenizer",
207
+ "unk_token": null
208
+ }
train_results.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_flos": 76959556042752.0,
3
+ "train_loss": 0.8068137678457665,
4
+ "train_runtime": 18078.9101,
5
+ "train_samples": 16610,
6
+ "train_samples_per_second": 2.392,
7
+ "train_steps_per_second": 0.075
8
+ }
trainer_state.json ADDED
@@ -0,0 +1,2320 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.9998149861239592,
5
+ "eval_steps": 100,
6
+ "global_step": 1351,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.0037002775208140612,
13
+ "grad_norm": 2.8957433700561523,
14
+ "learning_rate": 6.5522123978507875e-06,
15
+ "loss": 1.2055,
16
+ "mean_token_accuracy": 0.6906560870025514,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.0074005550416281225,
21
+ "grad_norm": 1.8598837852478027,
22
+ "learning_rate": 9.37409668112298e-06,
23
+ "loss": 1.1409,
24
+ "mean_token_accuracy": 0.698853009887776,
25
+ "step": 10
26
+ },
27
+ {
28
+ "epoch": 0.011100832562442183,
29
+ "grad_norm": 1.537341594696045,
30
+ "learning_rate": 1.1024793168211608e-05,
31
+ "loss": 0.9966,
32
+ "mean_token_accuracy": 0.7270418325735069,
33
+ "step": 15
34
+ },
35
+ {
36
+ "epoch": 0.014801110083256245,
37
+ "grad_norm": 1.109471082687378,
38
+ "learning_rate": 1.219598096439517e-05,
39
+ "loss": 0.9761,
40
+ "mean_token_accuracy": 0.7272552272192254,
41
+ "step": 20
42
+ },
43
+ {
44
+ "epoch": 0.018501387604070305,
45
+ "grad_norm": 1.0324221849441528,
46
+ "learning_rate": 1.3104424795701575e-05,
47
+ "loss": 0.9551,
48
+ "mean_token_accuracy": 0.7313410652722199,
49
+ "step": 25
50
+ },
51
+ {
52
+ "epoch": 0.022201665124884366,
53
+ "grad_norm": 0.8868595957756042,
54
+ "learning_rate": 1.3846677451483799e-05,
55
+ "loss": 0.9201,
56
+ "mean_token_accuracy": 0.7379118125275668,
57
+ "step": 30
58
+ },
59
+ {
60
+ "epoch": 0.025901942645698426,
61
+ "grad_norm": 0.9547779560089111,
62
+ "learning_rate": 1.4474243129971968e-05,
63
+ "loss": 0.9167,
64
+ "mean_token_accuracy": 0.7379963784805907,
65
+ "step": 35
66
+ },
67
+ {
68
+ "epoch": 0.02960222016651249,
69
+ "grad_norm": 1.0785847902297974,
70
+ "learning_rate": 1.501786524766736e-05,
71
+ "loss": 0.8836,
72
+ "mean_token_accuracy": 0.746341194692062,
73
+ "step": 40
74
+ },
75
+ {
76
+ "epoch": 0.03330249768732655,
77
+ "grad_norm": 0.8535160422325134,
78
+ "learning_rate": 1.5497373938572426e-05,
79
+ "loss": 0.91,
80
+ "mean_token_accuracy": 0.7387234984522606,
81
+ "step": 45
82
+ },
83
+ {
84
+ "epoch": 0.03700277520814061,
85
+ "grad_norm": 0.9231573939323425,
86
+ "learning_rate": 1.592630907897377e-05,
87
+ "loss": 0.8773,
88
+ "mean_token_accuracy": 0.74560689911493,
89
+ "step": 50
90
+ },
91
+ {
92
+ "epoch": 0.04070305272895467,
93
+ "grad_norm": 0.9026180505752563,
94
+ "learning_rate": 1.6314328111538255e-05,
95
+ "loss": 0.8634,
96
+ "mean_token_accuracy": 0.7512907472411612,
97
+ "step": 55
98
+ },
99
+ {
100
+ "epoch": 0.04440333024976873,
101
+ "grad_norm": 1.0450937747955322,
102
+ "learning_rate": 1.6668561734755987e-05,
103
+ "loss": 0.8587,
104
+ "mean_token_accuracy": 0.7512712527442093,
105
+ "step": 60
106
+ },
107
+ {
108
+ "epoch": 0.04810360777058279,
109
+ "grad_norm": 1.0268136262893677,
110
+ "learning_rate": 1.6994425079669313e-05,
111
+ "loss": 0.8858,
112
+ "mean_token_accuracy": 0.7436999012547456,
113
+ "step": 65
114
+ },
115
+ {
116
+ "epoch": 0.05180388529139685,
117
+ "grad_norm": 1.0223065614700317,
118
+ "learning_rate": 1.7296127413244162e-05,
119
+ "loss": 0.8555,
120
+ "mean_token_accuracy": 0.7516197988052247,
121
+ "step": 70
122
+ },
123
+ {
124
+ "epoch": 0.05550416281221091,
125
+ "grad_norm": 0.9143498539924622,
126
+ "learning_rate": 1.7577005566062396e-05,
127
+ "loss": 0.914,
128
+ "mean_token_accuracy": 0.7367069906630946,
129
+ "step": 75
130
+ },
131
+ {
132
+ "epoch": 0.05920444033302498,
133
+ "grad_norm": 0.9483162760734558,
134
+ "learning_rate": 1.783974953093955e-05,
135
+ "loss": 0.872,
136
+ "mean_token_accuracy": 0.7465734032042433,
137
+ "step": 80
138
+ },
139
+ {
140
+ "epoch": 0.06290471785383904,
141
+ "grad_norm": 1.0431548357009888,
142
+ "learning_rate": 1.808655954803422e-05,
143
+ "loss": 0.8958,
144
+ "mean_token_accuracy": 0.739948661671668,
145
+ "step": 85
146
+ },
147
+ {
148
+ "epoch": 0.0666049953746531,
149
+ "grad_norm": 0.9597674012184143,
150
+ "learning_rate": 1.8319258221844618e-05,
151
+ "loss": 0.8504,
152
+ "mean_token_accuracy": 0.7529073109309405,
153
+ "step": 90
154
+ },
155
+ {
156
+ "epoch": 0.07030527289546716,
157
+ "grad_norm": 0.8986235857009888,
158
+ "learning_rate": 1.8539372284516762e-05,
159
+ "loss": 0.8689,
160
+ "mean_token_accuracy": 0.7483927127084614,
161
+ "step": 95
162
+ },
163
+ {
164
+ "epoch": 0.07400555041628122,
165
+ "grad_norm": 1.116733431816101,
166
+ "learning_rate": 1.874819336224596e-05,
167
+ "loss": 0.8829,
168
+ "mean_token_accuracy": 0.7434675110209781,
169
+ "step": 100
170
+ },
171
+ {
172
+ "epoch": 0.07400555041628122,
173
+ "eval_loss": 0.8832501769065857,
174
+ "eval_mean_token_accuracy": 0.7398939720176742,
175
+ "eval_runtime": 28.2477,
176
+ "eval_samples_per_second": 9.098,
177
+ "eval_steps_per_second": 1.168,
178
+ "step": 100
179
+ },
180
+ {
181
+ "epoch": 0.07770582793709528,
182
+ "grad_norm": 1.0423495769500732,
183
+ "learning_rate": 1.8946823900332786e-05,
184
+ "loss": 0.9029,
185
+ "mean_token_accuracy": 0.7380944747487156,
186
+ "step": 105
187
+ },
188
+ {
189
+ "epoch": 0.08140610545790934,
190
+ "grad_norm": 0.8770654797554016,
191
+ "learning_rate": 1.9136212394810443e-05,
192
+ "loss": 0.8512,
193
+ "mean_token_accuracy": 0.752658273084104,
194
+ "step": 110
195
+ },
196
+ {
197
+ "epoch": 0.0851063829787234,
198
+ "grad_norm": 0.9110291600227356,
199
+ "learning_rate": 1.9317180786056083e-05,
200
+ "loss": 0.8404,
201
+ "mean_token_accuracy": 0.7541489019069838,
202
+ "step": 115
203
+ },
204
+ {
205
+ "epoch": 0.08880666049953746,
206
+ "grad_norm": 1.0504673719406128,
207
+ "learning_rate": 1.949044601802818e-05,
208
+ "loss": 0.7908,
209
+ "mean_token_accuracy": 0.7690538308961964,
210
+ "step": 120
211
+ },
212
+ {
213
+ "epoch": 0.09250693802035152,
214
+ "grad_norm": 0.9688966870307922,
215
+ "learning_rate": 1.9656637193552367e-05,
216
+ "loss": 0.8283,
217
+ "mean_token_accuracy": 0.7583009069462628,
218
+ "step": 125
219
+ },
220
+ {
221
+ "epoch": 0.09620721554116558,
222
+ "grad_norm": 1.0260767936706543,
223
+ "learning_rate": 1.9816309362941505e-05,
224
+ "loss": 0.8764,
225
+ "mean_token_accuracy": 0.744777112966561,
226
+ "step": 130
227
+ },
228
+ {
229
+ "epoch": 0.09990749306197964,
230
+ "grad_norm": 0.9919949769973755,
231
+ "learning_rate": 1.996995470893325e-05,
232
+ "loss": 0.8696,
233
+ "mean_token_accuracy": 0.7461172694007374,
234
+ "step": 135
235
+ },
236
+ {
237
+ "epoch": 0.1036077705827937,
238
+ "grad_norm": 1.040398120880127,
239
+ "learning_rate": 2e-05,
240
+ "loss": 0.8734,
241
+ "mean_token_accuracy": 0.7447351537110054,
242
+ "step": 140
243
+ },
244
+ {
245
+ "epoch": 0.10730804810360776,
246
+ "grad_norm": 0.8929896354675293,
247
+ "learning_rate": 2e-05,
248
+ "loss": 0.8464,
249
+ "mean_token_accuracy": 0.7520211094548359,
250
+ "step": 145
251
+ },
252
+ {
253
+ "epoch": 0.11100832562442182,
254
+ "grad_norm": 1.0192770957946777,
255
+ "learning_rate": 2e-05,
256
+ "loss": 0.8769,
257
+ "mean_token_accuracy": 0.744968839209957,
258
+ "step": 150
259
+ },
260
+ {
261
+ "epoch": 0.1147086031452359,
262
+ "grad_norm": 1.0098509788513184,
263
+ "learning_rate": 2e-05,
264
+ "loss": 0.8323,
265
+ "mean_token_accuracy": 0.755749875133377,
266
+ "step": 155
267
+ },
268
+ {
269
+ "epoch": 0.11840888066604996,
270
+ "grad_norm": 1.056443691253662,
271
+ "learning_rate": 2e-05,
272
+ "loss": 0.8581,
273
+ "mean_token_accuracy": 0.7490507941249067,
274
+ "step": 160
275
+ },
276
+ {
277
+ "epoch": 0.12210915818686402,
278
+ "grad_norm": 0.876708447933197,
279
+ "learning_rate": 2e-05,
280
+ "loss": 0.8488,
281
+ "mean_token_accuracy": 0.7515548475709357,
282
+ "step": 165
283
+ },
284
+ {
285
+ "epoch": 0.12580943570767808,
286
+ "grad_norm": 0.9257837533950806,
287
+ "learning_rate": 2e-05,
288
+ "loss": 0.858,
289
+ "mean_token_accuracy": 0.7489278577453964,
290
+ "step": 170
291
+ },
292
+ {
293
+ "epoch": 0.12950971322849214,
294
+ "grad_norm": 1.0198274850845337,
295
+ "learning_rate": 2e-05,
296
+ "loss": 0.8361,
297
+ "mean_token_accuracy": 0.7551833607296417,
298
+ "step": 175
299
+ },
300
+ {
301
+ "epoch": 0.1332099907493062,
302
+ "grad_norm": 1.0134333372116089,
303
+ "learning_rate": 2e-05,
304
+ "loss": 0.8212,
305
+ "mean_token_accuracy": 0.7584818009818037,
306
+ "step": 180
307
+ },
308
+ {
309
+ "epoch": 0.13691026827012026,
310
+ "grad_norm": 1.0174723863601685,
311
+ "learning_rate": 2e-05,
312
+ "loss": 0.8628,
313
+ "mean_token_accuracy": 0.7476798968375172,
314
+ "step": 185
315
+ },
316
+ {
317
+ "epoch": 0.14061054579093432,
318
+ "grad_norm": 0.9869109988212585,
319
+ "learning_rate": 2e-05,
320
+ "loss": 0.8443,
321
+ "mean_token_accuracy": 0.7523148595161331,
322
+ "step": 190
323
+ },
324
+ {
325
+ "epoch": 0.14431082331174838,
326
+ "grad_norm": 0.9373570084571838,
327
+ "learning_rate": 2e-05,
328
+ "loss": 0.8582,
329
+ "mean_token_accuracy": 0.7481680463659037,
330
+ "step": 195
331
+ },
332
+ {
333
+ "epoch": 0.14801110083256244,
334
+ "grad_norm": 0.9523370862007141,
335
+ "learning_rate": 2e-05,
336
+ "loss": 0.839,
337
+ "mean_token_accuracy": 0.7536938574339362,
338
+ "step": 200
339
+ },
340
+ {
341
+ "epoch": 0.14801110083256244,
342
+ "eval_loss": 0.8592866659164429,
343
+ "eval_mean_token_accuracy": 0.7450125681976898,
344
+ "eval_runtime": 28.1828,
345
+ "eval_samples_per_second": 9.119,
346
+ "eval_steps_per_second": 1.171,
347
+ "step": 200
348
+ },
349
+ {
350
+ "epoch": 0.1517113783533765,
351
+ "grad_norm": 1.0168991088867188,
352
+ "learning_rate": 2e-05,
353
+ "loss": 0.8189,
354
+ "mean_token_accuracy": 0.7584566375595763,
355
+ "step": 205
356
+ },
357
+ {
358
+ "epoch": 0.15541165587419056,
359
+ "grad_norm": 0.9532285928726196,
360
+ "learning_rate": 2e-05,
361
+ "loss": 0.8488,
362
+ "mean_token_accuracy": 0.7494834024795103,
363
+ "step": 210
364
+ },
365
+ {
366
+ "epoch": 0.15911193339500462,
367
+ "grad_norm": 0.8827746510505676,
368
+ "learning_rate": 2e-05,
369
+ "loss": 0.8187,
370
+ "mean_token_accuracy": 0.7595932905014217,
371
+ "step": 215
372
+ },
373
+ {
374
+ "epoch": 0.16281221091581868,
375
+ "grad_norm": 0.8878557682037354,
376
+ "learning_rate": 2e-05,
377
+ "loss": 0.8276,
378
+ "mean_token_accuracy": 0.7566971009274142,
379
+ "step": 220
380
+ },
381
+ {
382
+ "epoch": 0.16651248843663274,
383
+ "grad_norm": 0.8196055293083191,
384
+ "learning_rate": 2e-05,
385
+ "loss": 0.8143,
386
+ "mean_token_accuracy": 0.7594526820177664,
387
+ "step": 225
388
+ },
389
+ {
390
+ "epoch": 0.1702127659574468,
391
+ "grad_norm": 0.8733744025230408,
392
+ "learning_rate": 2e-05,
393
+ "loss": 0.8433,
394
+ "mean_token_accuracy": 0.7518748700823068,
395
+ "step": 230
396
+ },
397
+ {
398
+ "epoch": 0.17391304347826086,
399
+ "grad_norm": 0.851927638053894,
400
+ "learning_rate": 2e-05,
401
+ "loss": 0.8615,
402
+ "mean_token_accuracy": 0.7447105825612464,
403
+ "step": 235
404
+ },
405
+ {
406
+ "epoch": 0.17761332099907493,
407
+ "grad_norm": 0.9009714126586914,
408
+ "learning_rate": 2e-05,
409
+ "loss": 0.8498,
410
+ "mean_token_accuracy": 0.7484718849440476,
411
+ "step": 240
412
+ },
413
+ {
414
+ "epoch": 0.18131359851988899,
415
+ "grad_norm": 0.9394606351852417,
416
+ "learning_rate": 2e-05,
417
+ "loss": 0.8294,
418
+ "mean_token_accuracy": 0.7557432874020297,
419
+ "step": 245
420
+ },
421
+ {
422
+ "epoch": 0.18501387604070305,
423
+ "grad_norm": 0.9246826171875,
424
+ "learning_rate": 2e-05,
425
+ "loss": 0.8004,
426
+ "mean_token_accuracy": 0.7644653627399571,
427
+ "step": 250
428
+ },
429
+ {
430
+ "epoch": 0.1887141535615171,
431
+ "grad_norm": 0.8407145142555237,
432
+ "learning_rate": 2e-05,
433
+ "loss": 0.8377,
434
+ "mean_token_accuracy": 0.7536744187275825,
435
+ "step": 255
436
+ },
437
+ {
438
+ "epoch": 0.19241443108233117,
439
+ "grad_norm": 0.8852797746658325,
440
+ "learning_rate": 2e-05,
441
+ "loss": 0.8338,
442
+ "mean_token_accuracy": 0.7559093371950457,
443
+ "step": 260
444
+ },
445
+ {
446
+ "epoch": 0.19611470860314523,
447
+ "grad_norm": 1.0910946130752563,
448
+ "learning_rate": 2e-05,
449
+ "loss": 0.8022,
450
+ "mean_token_accuracy": 0.7614075804389667,
451
+ "step": 265
452
+ },
453
+ {
454
+ "epoch": 0.1998149861239593,
455
+ "grad_norm": 0.9022583961486816,
456
+ "learning_rate": 2e-05,
457
+ "loss": 0.8226,
458
+ "mean_token_accuracy": 0.7575589018517326,
459
+ "step": 270
460
+ },
461
+ {
462
+ "epoch": 0.20351526364477335,
463
+ "grad_norm": 0.8302850723266602,
464
+ "learning_rate": 2e-05,
465
+ "loss": 0.8237,
466
+ "mean_token_accuracy": 0.757602458948465,
467
+ "step": 275
468
+ },
469
+ {
470
+ "epoch": 0.2072155411655874,
471
+ "grad_norm": 0.9338579773902893,
472
+ "learning_rate": 2e-05,
473
+ "loss": 0.8081,
474
+ "mean_token_accuracy": 0.7613954278187921,
475
+ "step": 280
476
+ },
477
+ {
478
+ "epoch": 0.21091581868640147,
479
+ "grad_norm": 0.9413399696350098,
480
+ "learning_rate": 2e-05,
481
+ "loss": 0.8522,
482
+ "mean_token_accuracy": 0.7486690000063428,
483
+ "step": 285
484
+ },
485
+ {
486
+ "epoch": 0.21461609620721553,
487
+ "grad_norm": 0.850651741027832,
488
+ "learning_rate": 2e-05,
489
+ "loss": 0.8085,
490
+ "mean_token_accuracy": 0.7597455023324446,
491
+ "step": 290
492
+ },
493
+ {
494
+ "epoch": 0.2183163737280296,
495
+ "grad_norm": 0.8325985074043274,
496
+ "learning_rate": 2e-05,
497
+ "loss": 0.8015,
498
+ "mean_token_accuracy": 0.7625035134700381,
499
+ "step": 295
500
+ },
501
+ {
502
+ "epoch": 0.22201665124884365,
503
+ "grad_norm": 0.8833345770835876,
504
+ "learning_rate": 2e-05,
505
+ "loss": 0.8442,
506
+ "mean_token_accuracy": 0.7495757818615388,
507
+ "step": 300
508
+ },
509
+ {
510
+ "epoch": 0.22201665124884365,
511
+ "eval_loss": 0.8446890115737915,
512
+ "eval_mean_token_accuracy": 0.7479223023166885,
513
+ "eval_runtime": 28.2235,
514
+ "eval_samples_per_second": 9.106,
515
+ "eval_steps_per_second": 1.169,
516
+ "step": 300
517
+ },
518
+ {
519
+ "epoch": 0.22571692876965774,
520
+ "grad_norm": 1.0072492361068726,
521
+ "learning_rate": 2e-05,
522
+ "loss": 0.8126,
523
+ "mean_token_accuracy": 0.7591269186975097,
524
+ "step": 305
525
+ },
526
+ {
527
+ "epoch": 0.2294172062904718,
528
+ "grad_norm": 0.9031651616096497,
529
+ "learning_rate": 2e-05,
530
+ "loss": 0.8281,
531
+ "mean_token_accuracy": 0.7545658190081542,
532
+ "step": 310
533
+ },
534
+ {
535
+ "epoch": 0.23311748381128586,
536
+ "grad_norm": 0.8532033562660217,
537
+ "learning_rate": 2e-05,
538
+ "loss": 0.8178,
539
+ "mean_token_accuracy": 0.7587916660812325,
540
+ "step": 315
541
+ },
542
+ {
543
+ "epoch": 0.23681776133209992,
544
+ "grad_norm": 0.9483544826507568,
545
+ "learning_rate": 2e-05,
546
+ "loss": 0.8451,
547
+ "mean_token_accuracy": 0.7510137117833572,
548
+ "step": 320
549
+ },
550
+ {
551
+ "epoch": 0.24051803885291398,
552
+ "grad_norm": 0.9190371036529541,
553
+ "learning_rate": 2e-05,
554
+ "loss": 0.8236,
555
+ "mean_token_accuracy": 0.7560184304098765,
556
+ "step": 325
557
+ },
558
+ {
559
+ "epoch": 0.24421831637372804,
560
+ "grad_norm": 0.8880885243415833,
561
+ "learning_rate": 2e-05,
562
+ "loss": 0.8116,
563
+ "mean_token_accuracy": 0.7590534226852792,
564
+ "step": 330
565
+ },
566
+ {
567
+ "epoch": 0.2479185938945421,
568
+ "grad_norm": 0.9330101609230042,
569
+ "learning_rate": 2e-05,
570
+ "loss": 0.8302,
571
+ "mean_token_accuracy": 0.7547550656313512,
572
+ "step": 335
573
+ },
574
+ {
575
+ "epoch": 0.25161887141535616,
576
+ "grad_norm": 0.8674152493476868,
577
+ "learning_rate": 2e-05,
578
+ "loss": 0.8351,
579
+ "mean_token_accuracy": 0.7541465255919348,
580
+ "step": 340
581
+ },
582
+ {
583
+ "epoch": 0.2553191489361702,
584
+ "grad_norm": 0.9083060026168823,
585
+ "learning_rate": 2e-05,
586
+ "loss": 0.8345,
587
+ "mean_token_accuracy": 0.7528752633371677,
588
+ "step": 345
589
+ },
590
+ {
591
+ "epoch": 0.2590194264569843,
592
+ "grad_norm": 0.9060890078544617,
593
+ "learning_rate": 2e-05,
594
+ "loss": 0.8216,
595
+ "mean_token_accuracy": 0.7575168041307812,
596
+ "step": 350
597
+ },
598
+ {
599
+ "epoch": 0.2627197039777983,
600
+ "grad_norm": 0.8555945158004761,
601
+ "learning_rate": 2e-05,
602
+ "loss": 0.783,
603
+ "mean_token_accuracy": 0.7672426588048891,
604
+ "step": 355
605
+ },
606
+ {
607
+ "epoch": 0.2664199814986124,
608
+ "grad_norm": 0.8146703839302063,
609
+ "learning_rate": 2e-05,
610
+ "loss": 0.8284,
611
+ "mean_token_accuracy": 0.7543931949875237,
612
+ "step": 360
613
+ },
614
+ {
615
+ "epoch": 0.27012025901942643,
616
+ "grad_norm": 0.9369416832923889,
617
+ "learning_rate": 2e-05,
618
+ "loss": 0.8016,
619
+ "mean_token_accuracy": 0.7621930585328915,
620
+ "step": 365
621
+ },
622
+ {
623
+ "epoch": 0.2738205365402405,
624
+ "grad_norm": 0.7886361479759216,
625
+ "learning_rate": 2e-05,
626
+ "loss": 0.8076,
627
+ "mean_token_accuracy": 0.7606381698886774,
628
+ "step": 370
629
+ },
630
+ {
631
+ "epoch": 0.27752081406105455,
632
+ "grad_norm": 0.9856371879577637,
633
+ "learning_rate": 2e-05,
634
+ "loss": 0.8025,
635
+ "mean_token_accuracy": 0.7619788416802726,
636
+ "step": 375
637
+ },
638
+ {
639
+ "epoch": 0.28122109158186864,
640
+ "grad_norm": 0.9179413318634033,
641
+ "learning_rate": 2e-05,
642
+ "loss": 0.8102,
643
+ "mean_token_accuracy": 0.7585128919069817,
644
+ "step": 380
645
+ },
646
+ {
647
+ "epoch": 0.2849213691026827,
648
+ "grad_norm": 0.945956289768219,
649
+ "learning_rate": 2e-05,
650
+ "loss": 0.7964,
651
+ "mean_token_accuracy": 0.7646142601688602,
652
+ "step": 385
653
+ },
654
+ {
655
+ "epoch": 0.28862164662349676,
656
+ "grad_norm": 0.9356254935264587,
657
+ "learning_rate": 2e-05,
658
+ "loss": 0.8281,
659
+ "mean_token_accuracy": 0.7552207106091118,
660
+ "step": 390
661
+ },
662
+ {
663
+ "epoch": 0.2923219241443108,
664
+ "grad_norm": 0.8899054527282715,
665
+ "learning_rate": 2e-05,
666
+ "loss": 0.8269,
667
+ "mean_token_accuracy": 0.7552909439013166,
668
+ "step": 395
669
+ },
670
+ {
671
+ "epoch": 0.2960222016651249,
672
+ "grad_norm": 0.9562066793441772,
673
+ "learning_rate": 2e-05,
674
+ "loss": 0.8067,
675
+ "mean_token_accuracy": 0.7602417180096708,
676
+ "step": 400
677
+ },
678
+ {
679
+ "epoch": 0.2960222016651249,
680
+ "eval_loss": 0.8349066376686096,
681
+ "eval_mean_token_accuracy": 0.7500406710334881,
682
+ "eval_runtime": 28.1787,
683
+ "eval_samples_per_second": 9.12,
684
+ "eval_steps_per_second": 1.171,
685
+ "step": 400
686
+ },
687
+ {
688
+ "epoch": 0.299722479185939,
689
+ "grad_norm": 1.0249305963516235,
690
+ "learning_rate": 2e-05,
691
+ "loss": 0.8002,
692
+ "mean_token_accuracy": 0.7625656294392676,
693
+ "step": 405
694
+ },
695
+ {
696
+ "epoch": 0.303422756706753,
697
+ "grad_norm": 0.8880975842475891,
698
+ "learning_rate": 2e-05,
699
+ "loss": 0.8045,
700
+ "mean_token_accuracy": 0.7602248209978305,
701
+ "step": 410
702
+ },
703
+ {
704
+ "epoch": 0.3071230342275671,
705
+ "grad_norm": 0.8439946174621582,
706
+ "learning_rate": 2e-05,
707
+ "loss": 0.8164,
708
+ "mean_token_accuracy": 0.75832583094361,
709
+ "step": 415
710
+ },
711
+ {
712
+ "epoch": 0.3108233117483811,
713
+ "grad_norm": 0.9006332159042358,
714
+ "learning_rate": 2e-05,
715
+ "loss": 0.8231,
716
+ "mean_token_accuracy": 0.7574048409584961,
717
+ "step": 420
718
+ },
719
+ {
720
+ "epoch": 0.3145235892691952,
721
+ "grad_norm": 0.8789312243461609,
722
+ "learning_rate": 2e-05,
723
+ "loss": 0.8076,
724
+ "mean_token_accuracy": 0.7590419888879876,
725
+ "step": 425
726
+ },
727
+ {
728
+ "epoch": 0.31822386679000925,
729
+ "grad_norm": 0.8401655554771423,
730
+ "learning_rate": 2e-05,
731
+ "loss": 0.8405,
732
+ "mean_token_accuracy": 0.7504104069436911,
733
+ "step": 430
734
+ },
735
+ {
736
+ "epoch": 0.32192414431082333,
737
+ "grad_norm": 0.8797054290771484,
738
+ "learning_rate": 2e-05,
739
+ "loss": 0.8261,
740
+ "mean_token_accuracy": 0.7548758435645662,
741
+ "step": 435
742
+ },
743
+ {
744
+ "epoch": 0.32562442183163737,
745
+ "grad_norm": 0.8514414429664612,
746
+ "learning_rate": 2e-05,
747
+ "loss": 0.7757,
748
+ "mean_token_accuracy": 0.7683710895600167,
749
+ "step": 440
750
+ },
751
+ {
752
+ "epoch": 0.32932469935245146,
753
+ "grad_norm": 0.8692080974578857,
754
+ "learning_rate": 2e-05,
755
+ "loss": 0.8089,
756
+ "mean_token_accuracy": 0.7593312312489597,
757
+ "step": 445
758
+ },
759
+ {
760
+ "epoch": 0.3330249768732655,
761
+ "grad_norm": 0.8913412690162659,
762
+ "learning_rate": 2e-05,
763
+ "loss": 0.8234,
764
+ "mean_token_accuracy": 0.7565642409607426,
765
+ "step": 450
766
+ },
767
+ {
768
+ "epoch": 0.3367252543940796,
769
+ "grad_norm": 0.8350377678871155,
770
+ "learning_rate": 2e-05,
771
+ "loss": 0.7822,
772
+ "mean_token_accuracy": 0.7671309817518462,
773
+ "step": 455
774
+ },
775
+ {
776
+ "epoch": 0.3404255319148936,
777
+ "grad_norm": 0.8672026991844177,
778
+ "learning_rate": 2e-05,
779
+ "loss": 0.8021,
780
+ "mean_token_accuracy": 0.7619013855929817,
781
+ "step": 460
782
+ },
783
+ {
784
+ "epoch": 0.3441258094357077,
785
+ "grad_norm": 0.8754116892814636,
786
+ "learning_rate": 2e-05,
787
+ "loss": 0.8281,
788
+ "mean_token_accuracy": 0.7542948754676929,
789
+ "step": 465
790
+ },
791
+ {
792
+ "epoch": 0.34782608695652173,
793
+ "grad_norm": 0.8823506236076355,
794
+ "learning_rate": 2e-05,
795
+ "loss": 0.8224,
796
+ "mean_token_accuracy": 0.7557379489990506,
797
+ "step": 470
798
+ },
799
+ {
800
+ "epoch": 0.3515263644773358,
801
+ "grad_norm": 0.8378307819366455,
802
+ "learning_rate": 2e-05,
803
+ "loss": 0.8235,
804
+ "mean_token_accuracy": 0.7557773294176604,
805
+ "step": 475
806
+ },
807
+ {
808
+ "epoch": 0.35522664199814985,
809
+ "grad_norm": 0.764640748500824,
810
+ "learning_rate": 2e-05,
811
+ "loss": 0.7811,
812
+ "mean_token_accuracy": 0.7674092078356458,
813
+ "step": 480
814
+ },
815
+ {
816
+ "epoch": 0.35892691951896394,
817
+ "grad_norm": 0.8759243488311768,
818
+ "learning_rate": 2e-05,
819
+ "loss": 0.8143,
820
+ "mean_token_accuracy": 0.7586287599334172,
821
+ "step": 485
822
+ },
823
+ {
824
+ "epoch": 0.36262719703977797,
825
+ "grad_norm": 0.8526579141616821,
826
+ "learning_rate": 2e-05,
827
+ "loss": 0.7947,
828
+ "mean_token_accuracy": 0.7634890650281875,
829
+ "step": 490
830
+ },
831
+ {
832
+ "epoch": 0.36632747456059206,
833
+ "grad_norm": 0.8783523440361023,
834
+ "learning_rate": 2e-05,
835
+ "loss": 0.8113,
836
+ "mean_token_accuracy": 0.758303520901475,
837
+ "step": 495
838
+ },
839
+ {
840
+ "epoch": 0.3700277520814061,
841
+ "grad_norm": 0.8912361264228821,
842
+ "learning_rate": 2e-05,
843
+ "loss": 0.8004,
844
+ "mean_token_accuracy": 0.7601969218920052,
845
+ "step": 500
846
+ },
847
+ {
848
+ "epoch": 0.3700277520814061,
849
+ "eval_loss": 0.8273892402648926,
850
+ "eval_mean_token_accuracy": 0.7517986458893432,
851
+ "eval_runtime": 28.2564,
852
+ "eval_samples_per_second": 9.095,
853
+ "eval_steps_per_second": 1.168,
854
+ "step": 500
855
+ },
856
+ {
857
+ "epoch": 0.3737280296022202,
858
+ "grad_norm": 0.8783790469169617,
859
+ "learning_rate": 2e-05,
860
+ "loss": 0.8166,
861
+ "mean_token_accuracy": 0.7571132549186148,
862
+ "step": 505
863
+ },
864
+ {
865
+ "epoch": 0.3774283071230342,
866
+ "grad_norm": 0.8384273648262024,
867
+ "learning_rate": 2e-05,
868
+ "loss": 0.7976,
869
+ "mean_token_accuracy": 0.7625027165364132,
870
+ "step": 510
871
+ },
872
+ {
873
+ "epoch": 0.3811285846438483,
874
+ "grad_norm": 0.8020018339157104,
875
+ "learning_rate": 2e-05,
876
+ "loss": 0.8005,
877
+ "mean_token_accuracy": 0.7613467266492346,
878
+ "step": 515
879
+ },
880
+ {
881
+ "epoch": 0.38482886216466233,
882
+ "grad_norm": 0.864335298538208,
883
+ "learning_rate": 2e-05,
884
+ "loss": 0.8166,
885
+ "mean_token_accuracy": 0.7572026062300129,
886
+ "step": 520
887
+ },
888
+ {
889
+ "epoch": 0.3885291396854764,
890
+ "grad_norm": 0.8236207365989685,
891
+ "learning_rate": 2e-05,
892
+ "loss": 0.8345,
893
+ "mean_token_accuracy": 0.7512810127712488,
894
+ "step": 525
895
+ },
896
+ {
897
+ "epoch": 0.39222941720629045,
898
+ "grad_norm": 0.922486424446106,
899
+ "learning_rate": 2e-05,
900
+ "loss": 0.8128,
901
+ "mean_token_accuracy": 0.7574585249731419,
902
+ "step": 530
903
+ },
904
+ {
905
+ "epoch": 0.39592969472710454,
906
+ "grad_norm": 0.8133776187896729,
907
+ "learning_rate": 2e-05,
908
+ "loss": 0.8045,
909
+ "mean_token_accuracy": 0.7600427585053521,
910
+ "step": 535
911
+ },
912
+ {
913
+ "epoch": 0.3996299722479186,
914
+ "grad_norm": 0.9678435921669006,
915
+ "learning_rate": 2e-05,
916
+ "loss": 0.8434,
917
+ "mean_token_accuracy": 0.748454559157412,
918
+ "step": 540
919
+ },
920
+ {
921
+ "epoch": 0.40333024976873266,
922
+ "grad_norm": 0.8359988927841187,
923
+ "learning_rate": 2e-05,
924
+ "loss": 0.8218,
925
+ "mean_token_accuracy": 0.7548506933279708,
926
+ "step": 545
927
+ },
928
+ {
929
+ "epoch": 0.4070305272895467,
930
+ "grad_norm": 0.9044314622879028,
931
+ "learning_rate": 2e-05,
932
+ "loss": 0.773,
933
+ "mean_token_accuracy": 0.7704903178347341,
934
+ "step": 550
935
+ },
936
+ {
937
+ "epoch": 0.4107308048103608,
938
+ "grad_norm": 0.8256170153617859,
939
+ "learning_rate": 2e-05,
940
+ "loss": 0.7998,
941
+ "mean_token_accuracy": 0.7627984143152889,
942
+ "step": 555
943
+ },
944
+ {
945
+ "epoch": 0.4144310823311748,
946
+ "grad_norm": 0.8337195515632629,
947
+ "learning_rate": 2e-05,
948
+ "loss": 0.7815,
949
+ "mean_token_accuracy": 0.7671558285449628,
950
+ "step": 560
951
+ },
952
+ {
953
+ "epoch": 0.4181313598519889,
954
+ "grad_norm": 0.824918270111084,
955
+ "learning_rate": 2e-05,
956
+ "loss": 0.7931,
957
+ "mean_token_accuracy": 0.7636928037001625,
958
+ "step": 565
959
+ },
960
+ {
961
+ "epoch": 0.42183163737280294,
962
+ "grad_norm": 0.8702638149261475,
963
+ "learning_rate": 2e-05,
964
+ "loss": 0.7799,
965
+ "mean_token_accuracy": 0.766696658125059,
966
+ "step": 570
967
+ },
968
+ {
969
+ "epoch": 0.425531914893617,
970
+ "grad_norm": 0.9347019195556641,
971
+ "learning_rate": 2e-05,
972
+ "loss": 0.8027,
973
+ "mean_token_accuracy": 0.759642292609576,
974
+ "step": 575
975
+ },
976
+ {
977
+ "epoch": 0.42923219241443106,
978
+ "grad_norm": 0.8226842284202576,
979
+ "learning_rate": 2e-05,
980
+ "loss": 0.8318,
981
+ "mean_token_accuracy": 0.7513268577092702,
982
+ "step": 580
983
+ },
984
+ {
985
+ "epoch": 0.43293246993524515,
986
+ "grad_norm": 0.8303760886192322,
987
+ "learning_rate": 2e-05,
988
+ "loss": 0.7847,
989
+ "mean_token_accuracy": 0.7666960565561379,
990
+ "step": 585
991
+ },
992
+ {
993
+ "epoch": 0.4366327474560592,
994
+ "grad_norm": 0.864280641078949,
995
+ "learning_rate": 2e-05,
996
+ "loss": 0.7967,
997
+ "mean_token_accuracy": 0.7617017729986968,
998
+ "step": 590
999
+ },
1000
+ {
1001
+ "epoch": 0.44033302497687327,
1002
+ "grad_norm": 0.8039905428886414,
1003
+ "learning_rate": 2e-05,
1004
+ "loss": 0.7952,
1005
+ "mean_token_accuracy": 0.7631796585579562,
1006
+ "step": 595
1007
+ },
1008
+ {
1009
+ "epoch": 0.4440333024976873,
1010
+ "grad_norm": 0.8144698143005371,
1011
+ "learning_rate": 2e-05,
1012
+ "loss": 0.7595,
1013
+ "mean_token_accuracy": 0.7731878196083116,
1014
+ "step": 600
1015
+ },
1016
+ {
1017
+ "epoch": 0.4440333024976873,
1018
+ "eval_loss": 0.8222786784172058,
1019
+ "eval_mean_token_accuracy": 0.7522364520321178,
1020
+ "eval_runtime": 28.1935,
1021
+ "eval_samples_per_second": 9.116,
1022
+ "eval_steps_per_second": 1.17,
1023
+ "step": 600
1024
+ },
1025
+ {
1026
+ "epoch": 0.4477335800185014,
1027
+ "grad_norm": 0.898853600025177,
1028
+ "learning_rate": 2e-05,
1029
+ "loss": 0.8311,
1030
+ "mean_token_accuracy": 0.7522999408717911,
1031
+ "step": 605
1032
+ },
1033
+ {
1034
+ "epoch": 0.4514338575393155,
1035
+ "grad_norm": 0.7734112739562988,
1036
+ "learning_rate": 2e-05,
1037
+ "loss": 0.7892,
1038
+ "mean_token_accuracy": 0.7639044411576632,
1039
+ "step": 610
1040
+ },
1041
+ {
1042
+ "epoch": 0.4551341350601295,
1043
+ "grad_norm": 0.8656638860702515,
1044
+ "learning_rate": 2e-05,
1045
+ "loss": 0.7942,
1046
+ "mean_token_accuracy": 0.7623657197010026,
1047
+ "step": 615
1048
+ },
1049
+ {
1050
+ "epoch": 0.4588344125809436,
1051
+ "grad_norm": 0.9421690106391907,
1052
+ "learning_rate": 2e-05,
1053
+ "loss": 0.7726,
1054
+ "mean_token_accuracy": 0.7677914333370994,
1055
+ "step": 620
1056
+ },
1057
+ {
1058
+ "epoch": 0.46253469010175763,
1059
+ "grad_norm": 0.810966968536377,
1060
+ "learning_rate": 2e-05,
1061
+ "loss": 0.7738,
1062
+ "mean_token_accuracy": 0.7682241466373756,
1063
+ "step": 625
1064
+ },
1065
+ {
1066
+ "epoch": 0.4662349676225717,
1067
+ "grad_norm": 0.8764069080352783,
1068
+ "learning_rate": 2e-05,
1069
+ "loss": 0.764,
1070
+ "mean_token_accuracy": 0.7716749303779987,
1071
+ "step": 630
1072
+ },
1073
+ {
1074
+ "epoch": 0.46993524514338575,
1075
+ "grad_norm": 0.8801226615905762,
1076
+ "learning_rate": 2e-05,
1077
+ "loss": 0.7868,
1078
+ "mean_token_accuracy": 0.7653086539883042,
1079
+ "step": 635
1080
+ },
1081
+ {
1082
+ "epoch": 0.47363552266419984,
1083
+ "grad_norm": 0.789652943611145,
1084
+ "learning_rate": 2e-05,
1085
+ "loss": 0.7996,
1086
+ "mean_token_accuracy": 0.7604761749526181,
1087
+ "step": 640
1088
+ },
1089
+ {
1090
+ "epoch": 0.47733580018501387,
1091
+ "grad_norm": 0.8484530448913574,
1092
+ "learning_rate": 2e-05,
1093
+ "loss": 0.7966,
1094
+ "mean_token_accuracy": 0.7630161460550556,
1095
+ "step": 645
1096
+ },
1097
+ {
1098
+ "epoch": 0.48103607770582796,
1099
+ "grad_norm": 0.8077908754348755,
1100
+ "learning_rate": 2e-05,
1101
+ "loss": 0.7931,
1102
+ "mean_token_accuracy": 0.763731608290881,
1103
+ "step": 650
1104
+ },
1105
+ {
1106
+ "epoch": 0.484736355226642,
1107
+ "grad_norm": 0.8435987830162048,
1108
+ "learning_rate": 2e-05,
1109
+ "loss": 0.7695,
1110
+ "mean_token_accuracy": 0.7693811651575391,
1111
+ "step": 655
1112
+ },
1113
+ {
1114
+ "epoch": 0.4884366327474561,
1115
+ "grad_norm": 0.7886292934417725,
1116
+ "learning_rate": 2e-05,
1117
+ "loss": 0.794,
1118
+ "mean_token_accuracy": 0.7628652561375162,
1119
+ "step": 660
1120
+ },
1121
+ {
1122
+ "epoch": 0.4921369102682701,
1123
+ "grad_norm": 0.9320831894874573,
1124
+ "learning_rate": 2e-05,
1125
+ "loss": 0.8054,
1126
+ "mean_token_accuracy": 0.7584387909891809,
1127
+ "step": 665
1128
+ },
1129
+ {
1130
+ "epoch": 0.4958371877890842,
1131
+ "grad_norm": 0.8228521943092346,
1132
+ "learning_rate": 2e-05,
1133
+ "loss": 0.7931,
1134
+ "mean_token_accuracy": 0.762219202960193,
1135
+ "step": 670
1136
+ },
1137
+ {
1138
+ "epoch": 0.49953746530989823,
1139
+ "grad_norm": 0.9157373905181885,
1140
+ "learning_rate": 2e-05,
1141
+ "loss": 0.7726,
1142
+ "mean_token_accuracy": 0.766911525229679,
1143
+ "step": 675
1144
+ },
1145
+ {
1146
+ "epoch": 0.5032377428307123,
1147
+ "grad_norm": 0.8757467865943909,
1148
+ "learning_rate": 2e-05,
1149
+ "loss": 0.7925,
1150
+ "mean_token_accuracy": 0.7622793847521553,
1151
+ "step": 680
1152
+ },
1153
+ {
1154
+ "epoch": 0.5069380203515264,
1155
+ "grad_norm": 0.9015477895736694,
1156
+ "learning_rate": 2e-05,
1157
+ "loss": 0.808,
1158
+ "mean_token_accuracy": 0.7594514579501054,
1159
+ "step": 685
1160
+ },
1161
+ {
1162
+ "epoch": 0.5106382978723404,
1163
+ "grad_norm": 0.8006423711776733,
1164
+ "learning_rate": 2e-05,
1165
+ "loss": 0.7802,
1166
+ "mean_token_accuracy": 0.7662706193752193,
1167
+ "step": 690
1168
+ },
1169
+ {
1170
+ "epoch": 0.5143385753931545,
1171
+ "grad_norm": 0.9912610650062561,
1172
+ "learning_rate": 2e-05,
1173
+ "loss": 0.7897,
1174
+ "mean_token_accuracy": 0.761338202651713,
1175
+ "step": 695
1176
+ },
1177
+ {
1178
+ "epoch": 0.5180388529139686,
1179
+ "grad_norm": 0.8785173296928406,
1180
+ "learning_rate": 2e-05,
1181
+ "loss": 0.7866,
1182
+ "mean_token_accuracy": 0.7645523463170034,
1183
+ "step": 700
1184
+ },
1185
+ {
1186
+ "epoch": 0.5180388529139686,
1187
+ "eval_loss": 0.816895604133606,
1188
+ "eval_mean_token_accuracy": 0.7541631101443679,
1189
+ "eval_runtime": 28.2109,
1190
+ "eval_samples_per_second": 9.11,
1191
+ "eval_steps_per_second": 1.17,
1192
+ "step": 700
1193
+ },
1194
+ {
1195
+ "epoch": 0.5217391304347826,
1196
+ "grad_norm": 0.9194395542144775,
1197
+ "learning_rate": 2e-05,
1198
+ "loss": 0.7962,
1199
+ "mean_token_accuracy": 0.7632879072410094,
1200
+ "step": 705
1201
+ },
1202
+ {
1203
+ "epoch": 0.5254394079555966,
1204
+ "grad_norm": 0.8533481359481812,
1205
+ "learning_rate": 2e-05,
1206
+ "loss": 0.7945,
1207
+ "mean_token_accuracy": 0.7621978633882525,
1208
+ "step": 710
1209
+ },
1210
+ {
1211
+ "epoch": 0.5291396854764108,
1212
+ "grad_norm": 0.7783718705177307,
1213
+ "learning_rate": 2e-05,
1214
+ "loss": 0.7771,
1215
+ "mean_token_accuracy": 0.7678239959564587,
1216
+ "step": 715
1217
+ },
1218
+ {
1219
+ "epoch": 0.5328399629972248,
1220
+ "grad_norm": 0.9274916052818298,
1221
+ "learning_rate": 2e-05,
1222
+ "loss": 0.7996,
1223
+ "mean_token_accuracy": 0.7604699077057977,
1224
+ "step": 720
1225
+ },
1226
+ {
1227
+ "epoch": 0.5365402405180388,
1228
+ "grad_norm": 0.8770431280136108,
1229
+ "learning_rate": 2e-05,
1230
+ "loss": 0.7845,
1231
+ "mean_token_accuracy": 0.7654583712388715,
1232
+ "step": 725
1233
+ },
1234
+ {
1235
+ "epoch": 0.5402405180388529,
1236
+ "grad_norm": 0.8453335762023926,
1237
+ "learning_rate": 2e-05,
1238
+ "loss": 0.7938,
1239
+ "mean_token_accuracy": 0.761018252526195,
1240
+ "step": 730
1241
+ },
1242
+ {
1243
+ "epoch": 0.543940795559667,
1244
+ "grad_norm": 0.7490786910057068,
1245
+ "learning_rate": 2e-05,
1246
+ "loss": 0.8167,
1247
+ "mean_token_accuracy": 0.7549528979795714,
1248
+ "step": 735
1249
+ },
1250
+ {
1251
+ "epoch": 0.547641073080481,
1252
+ "grad_norm": 0.9425523281097412,
1253
+ "learning_rate": 2e-05,
1254
+ "loss": 0.8059,
1255
+ "mean_token_accuracy": 0.7600661300171085,
1256
+ "step": 740
1257
+ },
1258
+ {
1259
+ "epoch": 0.5513413506012951,
1260
+ "grad_norm": 0.8289265036582947,
1261
+ "learning_rate": 2e-05,
1262
+ "loss": 0.7797,
1263
+ "mean_token_accuracy": 0.7658190325778043,
1264
+ "step": 745
1265
+ },
1266
+ {
1267
+ "epoch": 0.5550416281221091,
1268
+ "grad_norm": 0.808990478515625,
1269
+ "learning_rate": 2e-05,
1270
+ "loss": 0.7919,
1271
+ "mean_token_accuracy": 0.7639361658364197,
1272
+ "step": 750
1273
+ },
1274
+ {
1275
+ "epoch": 0.5587419056429233,
1276
+ "grad_norm": 0.8714848756790161,
1277
+ "learning_rate": 2e-05,
1278
+ "loss": 0.8133,
1279
+ "mean_token_accuracy": 0.7559352930609992,
1280
+ "step": 755
1281
+ },
1282
+ {
1283
+ "epoch": 0.5624421831637373,
1284
+ "grad_norm": 0.8202362060546875,
1285
+ "learning_rate": 2e-05,
1286
+ "loss": 0.7967,
1287
+ "mean_token_accuracy": 0.7620283378489665,
1288
+ "step": 760
1289
+ },
1290
+ {
1291
+ "epoch": 0.5661424606845513,
1292
+ "grad_norm": 0.8363901376724243,
1293
+ "learning_rate": 2e-05,
1294
+ "loss": 0.7856,
1295
+ "mean_token_accuracy": 0.7647013079094134,
1296
+ "step": 765
1297
+ },
1298
+ {
1299
+ "epoch": 0.5698427382053654,
1300
+ "grad_norm": 0.7312168478965759,
1301
+ "learning_rate": 2e-05,
1302
+ "loss": 0.7807,
1303
+ "mean_token_accuracy": 0.7657156813892808,
1304
+ "step": 770
1305
+ },
1306
+ {
1307
+ "epoch": 0.5735430157261795,
1308
+ "grad_norm": 0.8106317520141602,
1309
+ "learning_rate": 2e-05,
1310
+ "loss": 0.7833,
1311
+ "mean_token_accuracy": 0.7646042951530488,
1312
+ "step": 775
1313
+ },
1314
+ {
1315
+ "epoch": 0.5772432932469935,
1316
+ "grad_norm": 0.879208505153656,
1317
+ "learning_rate": 2e-05,
1318
+ "loss": 0.7906,
1319
+ "mean_token_accuracy": 0.7629727484373736,
1320
+ "step": 780
1321
+ },
1322
+ {
1323
+ "epoch": 0.5809435707678076,
1324
+ "grad_norm": 0.8280200958251953,
1325
+ "learning_rate": 2e-05,
1326
+ "loss": 0.7931,
1327
+ "mean_token_accuracy": 0.7624752387623053,
1328
+ "step": 785
1329
+ },
1330
+ {
1331
+ "epoch": 0.5846438482886216,
1332
+ "grad_norm": 0.8161231279373169,
1333
+ "learning_rate": 2e-05,
1334
+ "loss": 0.7979,
1335
+ "mean_token_accuracy": 0.7606783559652616,
1336
+ "step": 790
1337
+ },
1338
+ {
1339
+ "epoch": 0.5883441258094357,
1340
+ "grad_norm": 0.8787475228309631,
1341
+ "learning_rate": 2e-05,
1342
+ "loss": 0.8031,
1343
+ "mean_token_accuracy": 0.7610423345421407,
1344
+ "step": 795
1345
+ },
1346
+ {
1347
+ "epoch": 0.5920444033302498,
1348
+ "grad_norm": 0.8519960641860962,
1349
+ "learning_rate": 2e-05,
1350
+ "loss": 0.8219,
1351
+ "mean_token_accuracy": 0.7543098449152789,
1352
+ "step": 800
1353
+ },
1354
+ {
1355
+ "epoch": 0.5920444033302498,
1356
+ "eval_loss": 0.8132702708244324,
1357
+ "eval_mean_token_accuracy": 0.7547294497721886,
1358
+ "eval_runtime": 28.2905,
1359
+ "eval_samples_per_second": 9.084,
1360
+ "eval_steps_per_second": 1.166,
1361
+ "step": 800
1362
+ },
1363
+ {
1364
+ "epoch": 0.5957446808510638,
1365
+ "grad_norm": 0.8904110193252563,
1366
+ "learning_rate": 2e-05,
1367
+ "loss": 0.7317,
1368
+ "mean_token_accuracy": 0.7804520508941676,
1369
+ "step": 805
1370
+ },
1371
+ {
1372
+ "epoch": 0.599444958371878,
1373
+ "grad_norm": 0.8179667592048645,
1374
+ "learning_rate": 2e-05,
1375
+ "loss": 0.7845,
1376
+ "mean_token_accuracy": 0.7655715065591602,
1377
+ "step": 810
1378
+ },
1379
+ {
1380
+ "epoch": 0.603145235892692,
1381
+ "grad_norm": 0.7966557145118713,
1382
+ "learning_rate": 2e-05,
1383
+ "loss": 0.7778,
1384
+ "mean_token_accuracy": 0.7667068888225074,
1385
+ "step": 815
1386
+ },
1387
+ {
1388
+ "epoch": 0.606845513413506,
1389
+ "grad_norm": 0.8500820994377136,
1390
+ "learning_rate": 2e-05,
1391
+ "loss": 0.7909,
1392
+ "mean_token_accuracy": 0.7624461584090862,
1393
+ "step": 820
1394
+ },
1395
+ {
1396
+ "epoch": 0.61054579093432,
1397
+ "grad_norm": 0.876806378364563,
1398
+ "learning_rate": 2e-05,
1399
+ "loss": 0.7986,
1400
+ "mean_token_accuracy": 0.7598412421319061,
1401
+ "step": 825
1402
+ },
1403
+ {
1404
+ "epoch": 0.6142460684551342,
1405
+ "grad_norm": 0.8352357745170593,
1406
+ "learning_rate": 2e-05,
1407
+ "loss": 0.8045,
1408
+ "mean_token_accuracy": 0.7595125698366062,
1409
+ "step": 830
1410
+ },
1411
+ {
1412
+ "epoch": 0.6179463459759482,
1413
+ "grad_norm": 0.8609703779220581,
1414
+ "learning_rate": 2e-05,
1415
+ "loss": 0.7653,
1416
+ "mean_token_accuracy": 0.7705634200292611,
1417
+ "step": 835
1418
+ },
1419
+ {
1420
+ "epoch": 0.6216466234967623,
1421
+ "grad_norm": 0.8633068203926086,
1422
+ "learning_rate": 2e-05,
1423
+ "loss": 0.7696,
1424
+ "mean_token_accuracy": 0.7682237681411259,
1425
+ "step": 840
1426
+ },
1427
+ {
1428
+ "epoch": 0.6253469010175763,
1429
+ "grad_norm": 0.8756479620933533,
1430
+ "learning_rate": 2e-05,
1431
+ "loss": 0.7786,
1432
+ "mean_token_accuracy": 0.7672769183942045,
1433
+ "step": 845
1434
+ },
1435
+ {
1436
+ "epoch": 0.6290471785383904,
1437
+ "grad_norm": 0.792131781578064,
1438
+ "learning_rate": 2e-05,
1439
+ "loss": 0.8053,
1440
+ "mean_token_accuracy": 0.7596922873144693,
1441
+ "step": 850
1442
+ },
1443
+ {
1444
+ "epoch": 0.6327474560592045,
1445
+ "grad_norm": 0.7844769954681396,
1446
+ "learning_rate": 2e-05,
1447
+ "loss": 0.7427,
1448
+ "mean_token_accuracy": 0.7763440537258867,
1449
+ "step": 855
1450
+ },
1451
+ {
1452
+ "epoch": 0.6364477335800185,
1453
+ "grad_norm": 0.770456850528717,
1454
+ "learning_rate": 2e-05,
1455
+ "loss": 0.8082,
1456
+ "mean_token_accuracy": 0.7579604529340764,
1457
+ "step": 860
1458
+ },
1459
+ {
1460
+ "epoch": 0.6401480111008325,
1461
+ "grad_norm": 0.8686452507972717,
1462
+ "learning_rate": 2e-05,
1463
+ "loss": 0.7895,
1464
+ "mean_token_accuracy": 0.7622386697563842,
1465
+ "step": 865
1466
+ },
1467
+ {
1468
+ "epoch": 0.6438482886216467,
1469
+ "grad_norm": 0.7865906357765198,
1470
+ "learning_rate": 2e-05,
1471
+ "loss": 0.7622,
1472
+ "mean_token_accuracy": 0.7711946538689294,
1473
+ "step": 870
1474
+ },
1475
+ {
1476
+ "epoch": 0.6475485661424607,
1477
+ "grad_norm": 0.8619543313980103,
1478
+ "learning_rate": 2e-05,
1479
+ "loss": 0.7776,
1480
+ "mean_token_accuracy": 0.7680711539071554,
1481
+ "step": 875
1482
+ },
1483
+ {
1484
+ "epoch": 0.6512488436632747,
1485
+ "grad_norm": 0.8202876448631287,
1486
+ "learning_rate": 2e-05,
1487
+ "loss": 0.7633,
1488
+ "mean_token_accuracy": 0.7725941263025453,
1489
+ "step": 880
1490
+ },
1491
+ {
1492
+ "epoch": 0.6549491211840888,
1493
+ "grad_norm": 0.7937086820602417,
1494
+ "learning_rate": 2e-05,
1495
+ "loss": 0.803,
1496
+ "mean_token_accuracy": 0.7600367861507152,
1497
+ "step": 885
1498
+ },
1499
+ {
1500
+ "epoch": 0.6586493987049029,
1501
+ "grad_norm": 0.889613687992096,
1502
+ "learning_rate": 2e-05,
1503
+ "loss": 0.7807,
1504
+ "mean_token_accuracy": 0.7660721298978383,
1505
+ "step": 890
1506
+ },
1507
+ {
1508
+ "epoch": 0.6623496762257169,
1509
+ "grad_norm": 0.9099228382110596,
1510
+ "learning_rate": 2e-05,
1511
+ "loss": 0.7911,
1512
+ "mean_token_accuracy": 0.7620904760689602,
1513
+ "step": 895
1514
+ },
1515
+ {
1516
+ "epoch": 0.666049953746531,
1517
+ "grad_norm": 0.8228977918624878,
1518
+ "learning_rate": 2e-05,
1519
+ "loss": 0.7695,
1520
+ "mean_token_accuracy": 0.7692359508353532,
1521
+ "step": 900
1522
+ },
1523
+ {
1524
+ "epoch": 0.666049953746531,
1525
+ "eval_loss": 0.8099245429039001,
1526
+ "eval_mean_token_accuracy": 0.7551735807763004,
1527
+ "eval_runtime": 28.1688,
1528
+ "eval_samples_per_second": 9.124,
1529
+ "eval_steps_per_second": 1.172,
1530
+ "step": 900
1531
+ },
1532
+ {
1533
+ "epoch": 0.669750231267345,
1534
+ "grad_norm": 0.8004016280174255,
1535
+ "learning_rate": 2e-05,
1536
+ "loss": 0.7658,
1537
+ "mean_token_accuracy": 0.7700296924370021,
1538
+ "step": 905
1539
+ },
1540
+ {
1541
+ "epoch": 0.6734505087881592,
1542
+ "grad_norm": 0.8088281154632568,
1543
+ "learning_rate": 2e-05,
1544
+ "loss": 0.7449,
1545
+ "mean_token_accuracy": 0.7756549136654808,
1546
+ "step": 910
1547
+ },
1548
+ {
1549
+ "epoch": 0.6771507863089732,
1550
+ "grad_norm": 0.8305289149284363,
1551
+ "learning_rate": 2e-05,
1552
+ "loss": 0.7748,
1553
+ "mean_token_accuracy": 0.7683322851408529,
1554
+ "step": 915
1555
+ },
1556
+ {
1557
+ "epoch": 0.6808510638297872,
1558
+ "grad_norm": 0.8163439631462097,
1559
+ "learning_rate": 2e-05,
1560
+ "loss": 0.7852,
1561
+ "mean_token_accuracy": 0.7640544732853833,
1562
+ "step": 920
1563
+ },
1564
+ {
1565
+ "epoch": 0.6845513413506013,
1566
+ "grad_norm": 0.8671082854270935,
1567
+ "learning_rate": 2e-05,
1568
+ "loss": 0.8049,
1569
+ "mean_token_accuracy": 0.7582682713568054,
1570
+ "step": 925
1571
+ },
1572
+ {
1573
+ "epoch": 0.6882516188714154,
1574
+ "grad_norm": 0.8410265445709229,
1575
+ "learning_rate": 2e-05,
1576
+ "loss": 0.7935,
1577
+ "mean_token_accuracy": 0.7615948024373346,
1578
+ "step": 930
1579
+ },
1580
+ {
1581
+ "epoch": 0.6919518963922294,
1582
+ "grad_norm": 0.8609654307365417,
1583
+ "learning_rate": 2e-05,
1584
+ "loss": 0.793,
1585
+ "mean_token_accuracy": 0.7631270531301052,
1586
+ "step": 935
1587
+ },
1588
+ {
1589
+ "epoch": 0.6956521739130435,
1590
+ "grad_norm": 0.829707145690918,
1591
+ "learning_rate": 2e-05,
1592
+ "loss": 0.7669,
1593
+ "mean_token_accuracy": 0.7696065254786408,
1594
+ "step": 940
1595
+ },
1596
+ {
1597
+ "epoch": 0.6993524514338575,
1598
+ "grad_norm": 0.8150595426559448,
1599
+ "learning_rate": 2e-05,
1600
+ "loss": 0.7984,
1601
+ "mean_token_accuracy": 0.7615524716113254,
1602
+ "step": 945
1603
+ },
1604
+ {
1605
+ "epoch": 0.7030527289546716,
1606
+ "grad_norm": 0.8580748438835144,
1607
+ "learning_rate": 2e-05,
1608
+ "loss": 0.7689,
1609
+ "mean_token_accuracy": 0.7683636381982694,
1610
+ "step": 950
1611
+ },
1612
+ {
1613
+ "epoch": 0.7067530064754857,
1614
+ "grad_norm": 0.774782121181488,
1615
+ "learning_rate": 2e-05,
1616
+ "loss": 0.7895,
1617
+ "mean_token_accuracy": 0.7641451735925326,
1618
+ "step": 955
1619
+ },
1620
+ {
1621
+ "epoch": 0.7104532839962997,
1622
+ "grad_norm": 0.8466439843177795,
1623
+ "learning_rate": 2e-05,
1624
+ "loss": 0.7651,
1625
+ "mean_token_accuracy": 0.7699041692846329,
1626
+ "step": 960
1627
+ },
1628
+ {
1629
+ "epoch": 0.7141535615171137,
1630
+ "grad_norm": 0.8498072028160095,
1631
+ "learning_rate": 2e-05,
1632
+ "loss": 0.7708,
1633
+ "mean_token_accuracy": 0.7683624308125098,
1634
+ "step": 965
1635
+ },
1636
+ {
1637
+ "epoch": 0.7178538390379279,
1638
+ "grad_norm": 0.8351811170578003,
1639
+ "learning_rate": 2e-05,
1640
+ "loss": 0.7811,
1641
+ "mean_token_accuracy": 0.7650397336041128,
1642
+ "step": 970
1643
+ },
1644
+ {
1645
+ "epoch": 0.7215541165587419,
1646
+ "grad_norm": 0.9042247533798218,
1647
+ "learning_rate": 2e-05,
1648
+ "loss": 0.7654,
1649
+ "mean_token_accuracy": 0.7692840039456211,
1650
+ "step": 975
1651
+ },
1652
+ {
1653
+ "epoch": 0.7252543940795559,
1654
+ "grad_norm": 0.7749535441398621,
1655
+ "learning_rate": 2e-05,
1656
+ "loss": 0.7597,
1657
+ "mean_token_accuracy": 0.7701962410947761,
1658
+ "step": 980
1659
+ },
1660
+ {
1661
+ "epoch": 0.72895467160037,
1662
+ "grad_norm": 0.8533946871757507,
1663
+ "learning_rate": 2e-05,
1664
+ "loss": 0.7784,
1665
+ "mean_token_accuracy": 0.7647845122361627,
1666
+ "step": 985
1667
+ },
1668
+ {
1669
+ "epoch": 0.7326549491211841,
1670
+ "grad_norm": 0.8168575763702393,
1671
+ "learning_rate": 2e-05,
1672
+ "loss": 0.8086,
1673
+ "mean_token_accuracy": 0.757385044925169,
1674
+ "step": 990
1675
+ },
1676
+ {
1677
+ "epoch": 0.7363552266419982,
1678
+ "grad_norm": 0.7941954135894775,
1679
+ "learning_rate": 2e-05,
1680
+ "loss": 0.765,
1681
+ "mean_token_accuracy": 0.7690882272352915,
1682
+ "step": 995
1683
+ },
1684
+ {
1685
+ "epoch": 0.7400555041628122,
1686
+ "grad_norm": 0.8234696984291077,
1687
+ "learning_rate": 2e-05,
1688
+ "loss": 0.7771,
1689
+ "mean_token_accuracy": 0.7658752902385906,
1690
+ "step": 1000
1691
+ },
1692
+ {
1693
+ "epoch": 0.7400555041628122,
1694
+ "eval_loss": 0.8039809465408325,
1695
+ "eval_mean_token_accuracy": 0.7569865406645019,
1696
+ "eval_runtime": 28.2336,
1697
+ "eval_samples_per_second": 9.103,
1698
+ "eval_steps_per_second": 1.169,
1699
+ "step": 1000
1700
+ },
1701
+ {
1702
+ "epoch": 0.7437557816836263,
1703
+ "grad_norm": 0.8295962810516357,
1704
+ "learning_rate": 2e-05,
1705
+ "loss": 0.8089,
1706
+ "mean_token_accuracy": 0.7569489958101997,
1707
+ "step": 1005
1708
+ },
1709
+ {
1710
+ "epoch": 0.7474560592044404,
1711
+ "grad_norm": 0.7815067768096924,
1712
+ "learning_rate": 2e-05,
1713
+ "loss": 0.7758,
1714
+ "mean_token_accuracy": 0.7671153767210239,
1715
+ "step": 1010
1716
+ },
1717
+ {
1718
+ "epoch": 0.7511563367252544,
1719
+ "grad_norm": 0.8126241564750671,
1720
+ "learning_rate": 2e-05,
1721
+ "loss": 0.7379,
1722
+ "mean_token_accuracy": 0.7785501124249352,
1723
+ "step": 1015
1724
+ },
1725
+ {
1726
+ "epoch": 0.7548566142460684,
1727
+ "grad_norm": 0.8162810802459717,
1728
+ "learning_rate": 2e-05,
1729
+ "loss": 0.8102,
1730
+ "mean_token_accuracy": 0.7573220349482289,
1731
+ "step": 1020
1732
+ },
1733
+ {
1734
+ "epoch": 0.7585568917668826,
1735
+ "grad_norm": 0.7573408484458923,
1736
+ "learning_rate": 2e-05,
1737
+ "loss": 0.7662,
1738
+ "mean_token_accuracy": 0.7698151470774073,
1739
+ "step": 1025
1740
+ },
1741
+ {
1742
+ "epoch": 0.7622571692876966,
1743
+ "grad_norm": 0.7962117791175842,
1744
+ "learning_rate": 2e-05,
1745
+ "loss": 0.7612,
1746
+ "mean_token_accuracy": 0.7716137946938584,
1747
+ "step": 1030
1748
+ },
1749
+ {
1750
+ "epoch": 0.7659574468085106,
1751
+ "grad_norm": 0.7962700724601746,
1752
+ "learning_rate": 2e-05,
1753
+ "loss": 0.7647,
1754
+ "mean_token_accuracy": 0.7699719865120008,
1755
+ "step": 1035
1756
+ },
1757
+ {
1758
+ "epoch": 0.7696577243293247,
1759
+ "grad_norm": 0.8017210960388184,
1760
+ "learning_rate": 2e-05,
1761
+ "loss": 0.7729,
1762
+ "mean_token_accuracy": 0.7656573176756548,
1763
+ "step": 1040
1764
+ },
1765
+ {
1766
+ "epoch": 0.7733580018501388,
1767
+ "grad_norm": 0.8346449136734009,
1768
+ "learning_rate": 2e-05,
1769
+ "loss": 0.7636,
1770
+ "mean_token_accuracy": 0.7693838985258703,
1771
+ "step": 1045
1772
+ },
1773
+ {
1774
+ "epoch": 0.7770582793709528,
1775
+ "grad_norm": 0.8304547667503357,
1776
+ "learning_rate": 2e-05,
1777
+ "loss": 0.7722,
1778
+ "mean_token_accuracy": 0.7666433599313455,
1779
+ "step": 1050
1780
+ },
1781
+ {
1782
+ "epoch": 0.7807585568917669,
1783
+ "grad_norm": 0.8001357913017273,
1784
+ "learning_rate": 2e-05,
1785
+ "loss": 0.7786,
1786
+ "mean_token_accuracy": 0.7662119403935679,
1787
+ "step": 1055
1788
+ },
1789
+ {
1790
+ "epoch": 0.7844588344125809,
1791
+ "grad_norm": 0.8312594294548035,
1792
+ "learning_rate": 2e-05,
1793
+ "loss": 0.7863,
1794
+ "mean_token_accuracy": 0.7634551853341814,
1795
+ "step": 1060
1796
+ },
1797
+ {
1798
+ "epoch": 0.788159111933395,
1799
+ "grad_norm": 0.8669179677963257,
1800
+ "learning_rate": 2e-05,
1801
+ "loss": 0.7696,
1802
+ "mean_token_accuracy": 0.768203040960474,
1803
+ "step": 1065
1804
+ },
1805
+ {
1806
+ "epoch": 0.7918593894542091,
1807
+ "grad_norm": 0.9093945026397705,
1808
+ "learning_rate": 2e-05,
1809
+ "loss": 0.7506,
1810
+ "mean_token_accuracy": 0.7740881651757804,
1811
+ "step": 1070
1812
+ },
1813
+ {
1814
+ "epoch": 0.7955596669750231,
1815
+ "grad_norm": 0.9110556244850159,
1816
+ "learning_rate": 2e-05,
1817
+ "loss": 0.7723,
1818
+ "mean_token_accuracy": 0.768156867902089,
1819
+ "step": 1075
1820
+ },
1821
+ {
1822
+ "epoch": 0.7992599444958371,
1823
+ "grad_norm": 0.8719515204429626,
1824
+ "learning_rate": 2e-05,
1825
+ "loss": 0.7487,
1826
+ "mean_token_accuracy": 0.7738584815308094,
1827
+ "step": 1080
1828
+ },
1829
+ {
1830
+ "epoch": 0.8029602220166513,
1831
+ "grad_norm": 0.855759859085083,
1832
+ "learning_rate": 2e-05,
1833
+ "loss": 0.8085,
1834
+ "mean_token_accuracy": 0.7569202538917256,
1835
+ "step": 1085
1836
+ },
1837
+ {
1838
+ "epoch": 0.8066604995374653,
1839
+ "grad_norm": 0.7778683304786682,
1840
+ "learning_rate": 2e-05,
1841
+ "loss": 0.8039,
1842
+ "mean_token_accuracy": 0.7584921428765562,
1843
+ "step": 1090
1844
+ },
1845
+ {
1846
+ "epoch": 0.8103607770582794,
1847
+ "grad_norm": 0.7796655893325806,
1848
+ "learning_rate": 2e-05,
1849
+ "loss": 0.7847,
1850
+ "mean_token_accuracy": 0.7638983818899377,
1851
+ "step": 1095
1852
+ },
1853
+ {
1854
+ "epoch": 0.8140610545790934,
1855
+ "grad_norm": 0.8250465989112854,
1856
+ "learning_rate": 2e-05,
1857
+ "loss": 0.7639,
1858
+ "mean_token_accuracy": 0.7687881349384388,
1859
+ "step": 1100
1860
+ },
1861
+ {
1862
+ "epoch": 0.8140610545790934,
1863
+ "eval_loss": 0.800523042678833,
1864
+ "eval_mean_token_accuracy": 0.7575268288806666,
1865
+ "eval_runtime": 28.2503,
1866
+ "eval_samples_per_second": 9.097,
1867
+ "eval_steps_per_second": 1.168,
1868
+ "step": 1100
1869
+ },
1870
+ {
1871
+ "epoch": 0.8177613320999075,
1872
+ "grad_norm": 0.8301143646240234,
1873
+ "learning_rate": 2e-05,
1874
+ "loss": 0.7764,
1875
+ "mean_token_accuracy": 0.7657188242099898,
1876
+ "step": 1105
1877
+ },
1878
+ {
1879
+ "epoch": 0.8214616096207216,
1880
+ "grad_norm": 0.8132140040397644,
1881
+ "learning_rate": 2e-05,
1882
+ "loss": 0.7783,
1883
+ "mean_token_accuracy": 0.7655952486721203,
1884
+ "step": 1110
1885
+ },
1886
+ {
1887
+ "epoch": 0.8251618871415356,
1888
+ "grad_norm": 0.8092007637023926,
1889
+ "learning_rate": 2e-05,
1890
+ "loss": 0.7873,
1891
+ "mean_token_accuracy": 0.7621894900380742,
1892
+ "step": 1115
1893
+ },
1894
+ {
1895
+ "epoch": 0.8288621646623496,
1896
+ "grad_norm": 0.8420717120170593,
1897
+ "learning_rate": 2e-05,
1898
+ "loss": 0.7788,
1899
+ "mean_token_accuracy": 0.7661002615281637,
1900
+ "step": 1120
1901
+ },
1902
+ {
1903
+ "epoch": 0.8325624421831638,
1904
+ "grad_norm": 0.819154679775238,
1905
+ "learning_rate": 2e-05,
1906
+ "loss": 0.7834,
1907
+ "mean_token_accuracy": 0.7640260223222127,
1908
+ "step": 1125
1909
+ },
1910
+ {
1911
+ "epoch": 0.8362627197039778,
1912
+ "grad_norm": 0.7833020091056824,
1913
+ "learning_rate": 2e-05,
1914
+ "loss": 0.7673,
1915
+ "mean_token_accuracy": 0.7671381666306092,
1916
+ "step": 1130
1917
+ },
1918
+ {
1919
+ "epoch": 0.8399629972247918,
1920
+ "grad_norm": 0.8282708525657654,
1921
+ "learning_rate": 2e-05,
1922
+ "loss": 0.7663,
1923
+ "mean_token_accuracy": 0.76869465856567,
1924
+ "step": 1135
1925
+ },
1926
+ {
1927
+ "epoch": 0.8436632747456059,
1928
+ "grad_norm": 0.8674660325050354,
1929
+ "learning_rate": 2e-05,
1930
+ "loss": 0.8198,
1931
+ "mean_token_accuracy": 0.7535738698791236,
1932
+ "step": 1140
1933
+ },
1934
+ {
1935
+ "epoch": 0.84736355226642,
1936
+ "grad_norm": 0.8629141449928284,
1937
+ "learning_rate": 2e-05,
1938
+ "loss": 0.8062,
1939
+ "mean_token_accuracy": 0.7576205181138813,
1940
+ "step": 1145
1941
+ },
1942
+ {
1943
+ "epoch": 0.851063829787234,
1944
+ "grad_norm": 0.8082600235939026,
1945
+ "learning_rate": 2e-05,
1946
+ "loss": 0.7517,
1947
+ "mean_token_accuracy": 0.7717635510287453,
1948
+ "step": 1150
1949
+ },
1950
+ {
1951
+ "epoch": 0.8547641073080481,
1952
+ "grad_norm": 0.7617512941360474,
1953
+ "learning_rate": 2e-05,
1954
+ "loss": 0.7643,
1955
+ "mean_token_accuracy": 0.7704166399970936,
1956
+ "step": 1155
1957
+ },
1958
+ {
1959
+ "epoch": 0.8584643848288621,
1960
+ "grad_norm": 0.7678114771842957,
1961
+ "learning_rate": 2e-05,
1962
+ "loss": 0.7729,
1963
+ "mean_token_accuracy": 0.7668813717759277,
1964
+ "step": 1160
1965
+ },
1966
+ {
1967
+ "epoch": 0.8621646623496763,
1968
+ "grad_norm": 0.7924060821533203,
1969
+ "learning_rate": 2e-05,
1970
+ "loss": 0.7521,
1971
+ "mean_token_accuracy": 0.7735818962967718,
1972
+ "step": 1165
1973
+ },
1974
+ {
1975
+ "epoch": 0.8658649398704903,
1976
+ "grad_norm": 0.881769061088562,
1977
+ "learning_rate": 2e-05,
1978
+ "loss": 0.7859,
1979
+ "mean_token_accuracy": 0.7643183082912849,
1980
+ "step": 1170
1981
+ },
1982
+ {
1983
+ "epoch": 0.8695652173913043,
1984
+ "grad_norm": 0.7947380542755127,
1985
+ "learning_rate": 2e-05,
1986
+ "loss": 0.7305,
1987
+ "mean_token_accuracy": 0.7786316210966694,
1988
+ "step": 1175
1989
+ },
1990
+ {
1991
+ "epoch": 0.8732654949121184,
1992
+ "grad_norm": 0.8072516918182373,
1993
+ "learning_rate": 2e-05,
1994
+ "loss": 0.7676,
1995
+ "mean_token_accuracy": 0.7692856950594738,
1996
+ "step": 1180
1997
+ },
1998
+ {
1999
+ "epoch": 0.8769657724329325,
2000
+ "grad_norm": 0.8792457580566406,
2001
+ "learning_rate": 2e-05,
2002
+ "loss": 0.7984,
2003
+ "mean_token_accuracy": 0.7623190074905516,
2004
+ "step": 1185
2005
+ },
2006
+ {
2007
+ "epoch": 0.8806660499537465,
2008
+ "grad_norm": 0.8246925473213196,
2009
+ "learning_rate": 2e-05,
2010
+ "loss": 0.7604,
2011
+ "mean_token_accuracy": 0.7710242769603142,
2012
+ "step": 1190
2013
+ },
2014
+ {
2015
+ "epoch": 0.8843663274745606,
2016
+ "grad_norm": 0.8517448902130127,
2017
+ "learning_rate": 2e-05,
2018
+ "loss": 0.8127,
2019
+ "mean_token_accuracy": 0.7556866127163658,
2020
+ "step": 1195
2021
+ },
2022
+ {
2023
+ "epoch": 0.8880666049953746,
2024
+ "grad_norm": 0.8204156160354614,
2025
+ "learning_rate": 2e-05,
2026
+ "loss": 0.7559,
2027
+ "mean_token_accuracy": 0.7712058797842442,
2028
+ "step": 1200
2029
+ },
2030
+ {
2031
+ "epoch": 0.8880666049953746,
2032
+ "eval_loss": 0.797502875328064,
2033
+ "eval_mean_token_accuracy": 0.7579622750028506,
2034
+ "eval_runtime": 28.4023,
2035
+ "eval_samples_per_second": 9.049,
2036
+ "eval_steps_per_second": 1.162,
2037
+ "step": 1200
2038
+ },
2039
+ {
2040
+ "epoch": 0.8917668825161887,
2041
+ "grad_norm": 0.8131943345069885,
2042
+ "learning_rate": 2e-05,
2043
+ "loss": 0.7571,
2044
+ "mean_token_accuracy": 0.7733840665520189,
2045
+ "step": 1205
2046
+ },
2047
+ {
2048
+ "epoch": 0.8954671600370028,
2049
+ "grad_norm": 0.73580002784729,
2050
+ "learning_rate": 2e-05,
2051
+ "loss": 0.7727,
2052
+ "mean_token_accuracy": 0.7674258088788803,
2053
+ "step": 1210
2054
+ },
2055
+ {
2056
+ "epoch": 0.8991674375578168,
2057
+ "grad_norm": 0.7590300440788269,
2058
+ "learning_rate": 2e-05,
2059
+ "loss": 0.7637,
2060
+ "mean_token_accuracy": 0.7691722572737629,
2061
+ "step": 1215
2062
+ },
2063
+ {
2064
+ "epoch": 0.902867715078631,
2065
+ "grad_norm": 0.7864495515823364,
2066
+ "learning_rate": 2e-05,
2067
+ "loss": 0.794,
2068
+ "mean_token_accuracy": 0.7610983305690475,
2069
+ "step": 1220
2070
+ },
2071
+ {
2072
+ "epoch": 0.906567992599445,
2073
+ "grad_norm": 0.7783846259117126,
2074
+ "learning_rate": 2e-05,
2075
+ "loss": 0.7698,
2076
+ "mean_token_accuracy": 0.7677923415686079,
2077
+ "step": 1225
2078
+ },
2079
+ {
2080
+ "epoch": 0.910268270120259,
2081
+ "grad_norm": 0.8439836502075195,
2082
+ "learning_rate": 2e-05,
2083
+ "loss": 0.8021,
2084
+ "mean_token_accuracy": 0.7596970516172707,
2085
+ "step": 1230
2086
+ },
2087
+ {
2088
+ "epoch": 0.913968547641073,
2089
+ "grad_norm": 0.875133752822876,
2090
+ "learning_rate": 2e-05,
2091
+ "loss": 0.7796,
2092
+ "mean_token_accuracy": 0.7652020678902339,
2093
+ "step": 1235
2094
+ },
2095
+ {
2096
+ "epoch": 0.9176688251618872,
2097
+ "grad_norm": 0.7731521725654602,
2098
+ "learning_rate": 2e-05,
2099
+ "loss": 0.7595,
2100
+ "mean_token_accuracy": 0.7703574952610036,
2101
+ "step": 1240
2102
+ },
2103
+ {
2104
+ "epoch": 0.9213691026827012,
2105
+ "grad_norm": 0.7407891750335693,
2106
+ "learning_rate": 2e-05,
2107
+ "loss": 0.7665,
2108
+ "mean_token_accuracy": 0.7682582461530055,
2109
+ "step": 1245
2110
+ },
2111
+ {
2112
+ "epoch": 0.9250693802035153,
2113
+ "grad_norm": 0.790274977684021,
2114
+ "learning_rate": 2e-05,
2115
+ "loss": 0.7489,
2116
+ "mean_token_accuracy": 0.7736910322129121,
2117
+ "step": 1250
2118
+ },
2119
+ {
2120
+ "epoch": 0.9287696577243293,
2121
+ "grad_norm": 0.81461501121521,
2122
+ "learning_rate": 2e-05,
2123
+ "loss": 0.7741,
2124
+ "mean_token_accuracy": 0.7667225211713106,
2125
+ "step": 1255
2126
+ },
2127
+ {
2128
+ "epoch": 0.9324699352451434,
2129
+ "grad_norm": 0.7998383045196533,
2130
+ "learning_rate": 2e-05,
2131
+ "loss": 0.7807,
2132
+ "mean_token_accuracy": 0.7625351777097331,
2133
+ "step": 1260
2134
+ },
2135
+ {
2136
+ "epoch": 0.9361702127659575,
2137
+ "grad_norm": 0.8241930603981018,
2138
+ "learning_rate": 2e-05,
2139
+ "loss": 0.8072,
2140
+ "mean_token_accuracy": 0.7569770056683507,
2141
+ "step": 1265
2142
+ },
2143
+ {
2144
+ "epoch": 0.9398704902867715,
2145
+ "grad_norm": 0.7618784308433533,
2146
+ "learning_rate": 2e-05,
2147
+ "loss": 0.7772,
2148
+ "mean_token_accuracy": 0.7643117414360313,
2149
+ "step": 1270
2150
+ },
2151
+ {
2152
+ "epoch": 0.9435707678075855,
2153
+ "grad_norm": 0.7704834938049316,
2154
+ "learning_rate": 2e-05,
2155
+ "loss": 0.7789,
2156
+ "mean_token_accuracy": 0.7653304006081735,
2157
+ "step": 1275
2158
+ },
2159
+ {
2160
+ "epoch": 0.9472710453283997,
2161
+ "grad_norm": 0.7337019443511963,
2162
+ "learning_rate": 2e-05,
2163
+ "loss": 0.772,
2164
+ "mean_token_accuracy": 0.7669845879245384,
2165
+ "step": 1280
2166
+ },
2167
+ {
2168
+ "epoch": 0.9509713228492137,
2169
+ "grad_norm": 0.8250733017921448,
2170
+ "learning_rate": 2e-05,
2171
+ "loss": 0.7785,
2172
+ "mean_token_accuracy": 0.7657440636307564,
2173
+ "step": 1285
2174
+ },
2175
+ {
2176
+ "epoch": 0.9546716003700277,
2177
+ "grad_norm": 0.839878499507904,
2178
+ "learning_rate": 2e-05,
2179
+ "loss": 0.8066,
2180
+ "mean_token_accuracy": 0.7591835950929369,
2181
+ "step": 1290
2182
+ },
2183
+ {
2184
+ "epoch": 0.9583718778908418,
2185
+ "grad_norm": 0.8156315088272095,
2186
+ "learning_rate": 2e-05,
2187
+ "loss": 0.7704,
2188
+ "mean_token_accuracy": 0.7668827112901107,
2189
+ "step": 1295
2190
+ },
2191
+ {
2192
+ "epoch": 0.9620721554116559,
2193
+ "grad_norm": 0.8538619875907898,
2194
+ "learning_rate": 2e-05,
2195
+ "loss": 0.7589,
2196
+ "mean_token_accuracy": 0.7709486799753794,
2197
+ "step": 1300
2198
+ },
2199
+ {
2200
+ "epoch": 0.9620721554116559,
2201
+ "eval_loss": 0.7957349419593811,
2202
+ "eval_mean_token_accuracy": 0.7585383150980717,
2203
+ "eval_runtime": 28.3961,
2204
+ "eval_samples_per_second": 9.051,
2205
+ "eval_steps_per_second": 1.162,
2206
+ "step": 1300
2207
+ },
2208
+ {
2209
+ "epoch": 0.96577243293247,
2210
+ "grad_norm": 0.8585022687911987,
2211
+ "learning_rate": 2e-05,
2212
+ "loss": 0.7955,
2213
+ "mean_token_accuracy": 0.7603014430216614,
2214
+ "step": 1305
2215
+ },
2216
+ {
2217
+ "epoch": 0.969472710453284,
2218
+ "grad_norm": 0.8347756862640381,
2219
+ "learning_rate": 2e-05,
2220
+ "loss": 0.8013,
2221
+ "mean_token_accuracy": 0.7593268261742192,
2222
+ "step": 1310
2223
+ },
2224
+ {
2225
+ "epoch": 0.973172987974098,
2226
+ "grad_norm": 0.7872015833854675,
2227
+ "learning_rate": 2e-05,
2228
+ "loss": 0.7683,
2229
+ "mean_token_accuracy": 0.7696177228132353,
2230
+ "step": 1315
2231
+ },
2232
+ {
2233
+ "epoch": 0.9768732654949122,
2234
+ "grad_norm": 0.8233494162559509,
2235
+ "learning_rate": 2e-05,
2236
+ "loss": 0.7706,
2237
+ "mean_token_accuracy": 0.7678653349992682,
2238
+ "step": 1320
2239
+ },
2240
+ {
2241
+ "epoch": 0.9805735430157262,
2242
+ "grad_norm": 0.8023855090141296,
2243
+ "learning_rate": 2e-05,
2244
+ "loss": 0.7783,
2245
+ "mean_token_accuracy": 0.7656580825758337,
2246
+ "step": 1325
2247
+ },
2248
+ {
2249
+ "epoch": 0.9842738205365402,
2250
+ "grad_norm": 0.8429985642433167,
2251
+ "learning_rate": 2e-05,
2252
+ "loss": 0.7669,
2253
+ "mean_token_accuracy": 0.7683449900233187,
2254
+ "step": 1330
2255
+ },
2256
+ {
2257
+ "epoch": 0.9879740980573543,
2258
+ "grad_norm": 0.792027473449707,
2259
+ "learning_rate": 2e-05,
2260
+ "loss": 0.767,
2261
+ "mean_token_accuracy": 0.7692297252303795,
2262
+ "step": 1335
2263
+ },
2264
+ {
2265
+ "epoch": 0.9916743755781684,
2266
+ "grad_norm": 0.8096156120300293,
2267
+ "learning_rate": 2e-05,
2268
+ "loss": 0.7841,
2269
+ "mean_token_accuracy": 0.7638673896787455,
2270
+ "step": 1340
2271
+ },
2272
+ {
2273
+ "epoch": 0.9953746530989824,
2274
+ "grad_norm": 0.9265767931938171,
2275
+ "learning_rate": 2e-05,
2276
+ "loss": 0.771,
2277
+ "mean_token_accuracy": 0.7675258668736931,
2278
+ "step": 1345
2279
+ },
2280
+ {
2281
+ "epoch": 0.9990749306197965,
2282
+ "grad_norm": 0.8164911866188049,
2283
+ "learning_rate": 2e-05,
2284
+ "loss": 0.7838,
2285
+ "mean_token_accuracy": 0.7645547380257296,
2286
+ "step": 1350
2287
+ },
2288
+ {
2289
+ "epoch": 0.9998149861239592,
2290
+ "mean_token_accuracy": 0.7587965060316426,
2291
+ "step": 1351,
2292
+ "total_flos": 76959556042752.0,
2293
+ "train_loss": 0.8068137678457665,
2294
+ "train_runtime": 18078.9101,
2295
+ "train_samples_per_second": 2.392,
2296
+ "train_steps_per_second": 0.075
2297
+ }
2298
+ ],
2299
+ "logging_steps": 5,
2300
+ "max_steps": 1351,
2301
+ "num_input_tokens_seen": 0,
2302
+ "num_train_epochs": 1,
2303
+ "save_steps": 500,
2304
+ "stateful_callbacks": {
2305
+ "TrainerControl": {
2306
+ "args": {
2307
+ "should_epoch_stop": false,
2308
+ "should_evaluate": false,
2309
+ "should_log": false,
2310
+ "should_save": false,
2311
+ "should_training_stop": false
2312
+ },
2313
+ "attributes": {}
2314
+ }
2315
+ },
2316
+ "total_flos": 76959556042752.0,
2317
+ "train_batch_size": 4,
2318
+ "trial_name": null,
2319
+ "trial_params": null
2320
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d60e2086dd88927d46a3ffa1d5ec1ab404d991d69e1288db51a9e380ef723a6
3
+ size 8632
vocab.json ADDED
The diff for this file is too large to render. See raw diff