RayDu0010 commited on
Commit
ffdd998
·
verified ·
1 Parent(s): 9c229be

Upload folder using huggingface_hub

Browse files
109_128_e3_3e-5/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "ibm-granite/granite-3.3-8b-instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 256,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 128,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "down_proj",
28
+ "o_proj",
29
+ "gate_proj",
30
+ "v_proj",
31
+ "k_proj",
32
+ "up_proj",
33
+ "q_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
109_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17d5f05838b9408ebc5c57fcf2bdfe8825288cc77d999dae1cb81e79d27951eb
3
+ size 791751704
109_128_e3_3e-5/added_tokens.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "<|end_of_cite|>": 49156,
3
+ "<|end_of_plugin|>": 49158,
4
+ "<|end_of_role|>": 49153,
5
+ "<|start_of_cite|>": 49155,
6
+ "<|start_of_plugin|>": 49157,
7
+ "<|start_of_role|>": 49152,
8
+ "<|tool_call|>": 49154
9
+ }
109_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 2.0902059450816266e+18,
4
+ "train_loss": 0.5750568343942221,
5
+ "train_runtime": 964.5713,
6
+ "train_samples": 15528,
7
+ "train_samples_per_second": 48.295,
8
+ "train_steps_per_second": 1.512
9
+ }
109_128_e3_3e-5/chat_template.jinja ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {# Alias tools -> available_tools #}
2
+ {%- if tools and not available_tools -%}
3
+ {%- set available_tools = tools -%}
4
+ {%- endif -%}
5
+ {%- if messages[0]['role'] == 'system' %}
6
+ {%- set system_message = messages[0]['content'] %}
7
+ {%- set loop_messages = messages[1:] %}
8
+ {%- else %}
9
+ {%- set system_message = "Knowledge Cutoff Date: April 2024.
10
+ Today's Date: " + strftime_now('%B %d, %Y') + ".
11
+ You are Granite, developed by IBM." %}
12
+ {%- if available_tools and documents %}
13
+ {%- set system_message = system_message + " You are a helpful assistant with access to the following tools. When a tool is required to answer the user's query, respond only with <|tool_call|> followed by a JSON list of tools used. If a tool does not exist in the provided list of tools, notify the user that you do not have the ability to fulfill the request.
14
+ Write the response to the user's input by strictly aligning with the facts in the provided documents. If the information needed to answer the question is not available in the documents, inform the user that the question cannot be answered based on the available data." %}
15
+ {%- elif available_tools %}
16
+ {%- set system_message = system_message + " You are a helpful assistant with access to the following tools. When a tool is required to answer the user's query, respond only with <|tool_call|> followed by a JSON list of tools used. If a tool does not exist in the provided list of tools, notify the user that you do not have the ability to fulfill the request." %}
17
+ {%- elif documents %}
18
+ {%- set system_message = system_message + " Write the response to the user's input by strictly aligning with the facts in the provided documents. If the information needed to answer the question is not available in the documents, inform the user that the question cannot be answered based on the available data." %}
19
+ {%- elif thinking %}
20
+ {%- set system_message = system_message + " You are a helpful AI assistant.
21
+ Respond to every user query in a comprehensive and detailed way. You can write down your thoughts and reasoning process before responding. In the thought process, engage in a comprehensive cycle of analysis, summarization, exploration, reassessment, reflection, backtracing, and iteration to develop well-considered thinking process. In the response section, based on various attempts, explorations, and reflections from the thoughts section, systematically present the final solution that you deem correct. The response should summarize the thought process. Write your thoughts between <think></think> and write your response between <response></response> for each user query." %}
22
+ {%- else %}
23
+ {%- set system_message = system_message + " You are a helpful AI assistant." %}
24
+ {%- endif %}
25
+ {%- if 'citations' in controls and documents %}
26
+ {%- set system_message = system_message + '
27
+ Use the symbols <|start_of_cite|> and <|end_of_cite|> to indicate when a fact comes from a document in the search result, e.g <|start_of_cite|> {document_id: 1}my fact <|end_of_cite|> for a fact from document 1. Afterwards, list all the citations with their corresponding documents in an ordered list.' %}
28
+ {%- endif %}
29
+ {%- if 'hallucinations' in controls and documents %}
30
+ {%- set system_message = system_message + '
31
+ Finally, after the response is written, include a numbered list of sentences from the response with a corresponding risk value that are hallucinated and not based in the documents.' %}
32
+ {%- endif %}
33
+ {%- set loop_messages = messages %}
34
+ {%- endif %}
35
+ {{- '<|start_of_role|>system<|end_of_role|>' + system_message + '<|end_of_text|>
36
+ ' }}
37
+ {%- if available_tools %}
38
+ {{- '<|start_of_role|>available_tools<|end_of_role|>' }}
39
+ {{- available_tools | tojson(indent=4) }}
40
+ {{- '<|end_of_text|>
41
+ ' }}
42
+ {%- endif %}
43
+ {%- if documents %}
44
+ {%- for document in documents %}
45
+ {{- '<|start_of_role|>document {"document_id": "' + document['doc_id'] | string + '"}<|end_of_role|>
46
+ ' }}
47
+ {{- document['text'] }}
48
+ {{- '<|end_of_text|>
49
+ ' }}
50
+ {%- endfor %}
51
+ {%- endif %}
52
+ {%- for message in loop_messages %}
53
+ {{- '<|start_of_role|>' + message['role'] + '<|end_of_role|>' + message['content'] + '<|end_of_text|>
54
+ ' }}
55
+ {%- if loop.last and add_generation_prompt %}
56
+ {{- '<|start_of_role|>assistant' }}
57
+ {%- if controls %}
58
+ {{- ' ' + controls | tojson()}}
59
+ {%- endif %}
60
+ {{- '<|end_of_role|>' }}
61
+ {%- endif %}
62
+ {%- endfor %}
109_128_e3_3e-5/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GraniteForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attention_multiplier": 0.0078125,
8
+ "bos_token_id": 0,
9
+ "embedding_multiplier": 12.0,
10
+ "eos_token_id": 0,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 4096,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 12800,
15
+ "logits_scaling": 16.0,
16
+ "max_position_embeddings": 131072,
17
+ "mlp_bias": false,
18
+ "model_type": "granite",
19
+ "num_attention_heads": 32,
20
+ "num_hidden_layers": 40,
21
+ "num_key_value_heads": 8,
22
+ "pad_token_id": 0,
23
+ "residual_multiplier": 0.22,
24
+ "rms_norm_eps": 1e-05,
25
+ "rope_scaling": null,
26
+ "rope_theta": 10000000.0,
27
+ "tie_word_embeddings": true,
28
+ "torch_dtype": "bfloat16",
29
+ "transformers_version": "4.52.4",
30
+ "use_cache": true,
31
+ "vocab_size": 49159
32
+ }
109_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
109_128_e3_3e-5/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|start_of_role|>",
4
+ "<|end_of_role|>",
5
+ "<|tool_call|>",
6
+ "<|start_of_cite|>",
7
+ "<|end_of_cite|>",
8
+ "<|start_of_plugin|>",
9
+ "<|end_of_plugin|>"
10
+ ],
11
+ "bos_token": {
12
+ "content": "<|end_of_text|>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "eos_token": {
19
+ "content": "<|end_of_text|>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "pad_token": "<|end_of_plugin|>",
26
+ "unk_token": {
27
+ "content": "<|end_of_text|>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
109_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
109_128_e3_3e-5/tokenizer_config.json ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<|end_of_text|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<fim_prefix>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "<fim_middle>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "3": {
30
+ "content": "<fim_suffix>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "4": {
38
+ "content": "<fim_pad>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "5": {
46
+ "content": "<filename>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "6": {
54
+ "content": "<gh_stars>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "7": {
62
+ "content": "<issue_start>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "8": {
70
+ "content": "<issue_comment>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "9": {
78
+ "content": "<issue_closed>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "10": {
86
+ "content": "<jupyter_start>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "11": {
94
+ "content": "<jupyter_text>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "12": {
102
+ "content": "<jupyter_code>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "13": {
110
+ "content": "<jupyter_output>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "14": {
118
+ "content": "<empty_output>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": true
124
+ },
125
+ "15": {
126
+ "content": "<commit_before>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": true
132
+ },
133
+ "16": {
134
+ "content": "<commit_msg>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": true
140
+ },
141
+ "17": {
142
+ "content": "<commit_after>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": true
148
+ },
149
+ "18": {
150
+ "content": "<reponame>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": true
156
+ },
157
+ "49152": {
158
+ "content": "<|start_of_role|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": true
164
+ },
165
+ "49153": {
166
+ "content": "<|end_of_role|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": true
172
+ },
173
+ "49154": {
174
+ "content": "<|tool_call|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": true
180
+ },
181
+ "49155": {
182
+ "content": "<|start_of_cite|>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": true
188
+ },
189
+ "49156": {
190
+ "content": "<|end_of_cite|>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": true
196
+ },
197
+ "49157": {
198
+ "content": "<|start_of_plugin|>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": true
204
+ },
205
+ "49158": {
206
+ "content": "<|end_of_plugin|>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": true
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|start_of_role|>",
216
+ "<|end_of_role|>",
217
+ "<|tool_call|>",
218
+ "<|start_of_cite|>",
219
+ "<|end_of_cite|>",
220
+ "<|start_of_plugin|>",
221
+ "<|end_of_plugin|>"
222
+ ],
223
+ "bos_token": "<|end_of_text|>",
224
+ "clean_up_tokenization_spaces": true,
225
+ "eos_token": "<|end_of_text|>",
226
+ "errors": "replace",
227
+ "extra_special_tokens": {},
228
+ "model_max_length": 8192,
229
+ "pad_token": "<|end_of_plugin|>",
230
+ "padding_side": "left",
231
+ "tokenizer_class": "GPT2Tokenizer",
232
+ "unk_token": "<|end_of_text|>",
233
+ "vocab_size": 49152
234
+ }
109_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 2.0902059450816266e+18,
4
+ "train_loss": 0.5750568343942221,
5
+ "train_runtime": 964.5713,
6
+ "train_samples": 15528,
7
+ "train_samples_per_second": 48.295,
8
+ "train_steps_per_second": 1.512
9
+ }
109_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,2080 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1458,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.010298661174047374,
14
+ "grad_norm": 3.3823161125183105,
15
+ "learning_rate": 1.6438356164383561e-06,
16
+ "loss": 1.5504,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.02059732234809475,
21
+ "grad_norm": 2.453728675842285,
22
+ "learning_rate": 3.6986301369863014e-06,
23
+ "loss": 1.5633,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.030895983522142123,
28
+ "grad_norm": 1.3152430057525635,
29
+ "learning_rate": 5.753424657534246e-06,
30
+ "loss": 1.452,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.0411946446961895,
35
+ "grad_norm": 0.6186983585357666,
36
+ "learning_rate": 7.808219178082192e-06,
37
+ "loss": 1.3814,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.05149330587023687,
42
+ "grad_norm": 0.4865432679653168,
43
+ "learning_rate": 9.863013698630136e-06,
44
+ "loss": 1.4391,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.061791967044284246,
49
+ "grad_norm": 0.427501916885376,
50
+ "learning_rate": 1.1917808219178083e-05,
51
+ "loss": 1.366,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.07209062821833162,
56
+ "grad_norm": 0.38758790493011475,
57
+ "learning_rate": 1.3972602739726027e-05,
58
+ "loss": 1.3349,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.082389289392379,
63
+ "grad_norm": 0.4395686089992523,
64
+ "learning_rate": 1.6027397260273974e-05,
65
+ "loss": 1.3165,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.09268795056642637,
70
+ "grad_norm": 0.47586125135421753,
71
+ "learning_rate": 1.8082191780821916e-05,
72
+ "loss": 1.3125,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.10298661174047374,
77
+ "grad_norm": 0.377314031124115,
78
+ "learning_rate": 2.0136986301369863e-05,
79
+ "loss": 1.2937,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.11328527291452112,
84
+ "grad_norm": 0.5234676599502563,
85
+ "learning_rate": 2.219178082191781e-05,
86
+ "loss": 1.2764,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.12358393408856849,
91
+ "grad_norm": 0.36369845271110535,
92
+ "learning_rate": 2.4246575342465755e-05,
93
+ "loss": 1.2344,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.13388259526261587,
98
+ "grad_norm": 0.357096403837204,
99
+ "learning_rate": 2.6301369863013698e-05,
100
+ "loss": 1.231,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.14418125643666324,
105
+ "grad_norm": 0.4017985761165619,
106
+ "learning_rate": 2.8356164383561644e-05,
107
+ "loss": 1.2552,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.15447991761071062,
112
+ "grad_norm": 0.40629255771636963,
113
+ "learning_rate": 2.99999614111998e-05,
114
+ "loss": 1.2622,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.164778578784758,
119
+ "grad_norm": 0.37567687034606934,
120
+ "learning_rate": 2.9998610824039904e-05,
121
+ "loss": 1.2019,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.17507723995880536,
126
+ "grad_norm": 0.4077652096748352,
127
+ "learning_rate": 2.999533099541131e-05,
128
+ "loss": 1.1921,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.18537590113285274,
133
+ "grad_norm": 0.43803462386131287,
134
+ "learning_rate": 2.9990122347191856e-05,
135
+ "loss": 1.195,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.1956745623069001,
140
+ "grad_norm": 0.4093933403491974,
141
+ "learning_rate": 2.99829855493596e-05,
142
+ "loss": 1.1192,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.2059732234809475,
147
+ "grad_norm": 0.4145336449146271,
148
+ "learning_rate": 2.9973921519906633e-05,
149
+ "loss": 1.1634,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.21627188465499486,
154
+ "grad_norm": 0.43248122930526733,
155
+ "learning_rate": 2.9962931424721048e-05,
156
+ "loss": 1.1619,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.22657054582904224,
161
+ "grad_norm": 0.47124388813972473,
162
+ "learning_rate": 2.995001667743691e-05,
163
+ "loss": 1.1545,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.2368692070030896,
168
+ "grad_norm": 0.4486331641674042,
169
+ "learning_rate": 2.9935178939252478e-05,
170
+ "loss": 1.1434,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.24716786817713698,
175
+ "grad_norm": 0.5017436146736145,
176
+ "learning_rate": 2.9918420118716478e-05,
177
+ "loss": 1.1577,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.25746652935118436,
182
+ "grad_norm": 0.48066893219947815,
183
+ "learning_rate": 2.9899742371482663e-05,
184
+ "loss": 1.0614,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.26776519052523173,
189
+ "grad_norm": 0.5081754922866821,
190
+ "learning_rate": 2.987914810003249e-05,
191
+ "loss": 1.0888,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.2780638516992791,
196
+ "grad_norm": 0.4730719029903412,
197
+ "learning_rate": 2.9856639953366138e-05,
198
+ "loss": 1.1391,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.2883625128733265,
203
+ "grad_norm": 0.5357269048690796,
204
+ "learning_rate": 2.9832220826661707e-05,
205
+ "loss": 1.1453,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.29866117404737386,
210
+ "grad_norm": 0.5506560206413269,
211
+ "learning_rate": 2.980589386090289e-05,
212
+ "loss": 1.1306,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.30895983522142123,
217
+ "grad_norm": 0.5453603267669678,
218
+ "learning_rate": 2.977766244247492e-05,
219
+ "loss": 1.1096,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.3192584963954686,
224
+ "grad_norm": 0.5690296292304993,
225
+ "learning_rate": 2.9747530202728965e-05,
226
+ "loss": 1.0987,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.329557157569516,
231
+ "grad_norm": 0.5686823725700378,
232
+ "learning_rate": 2.9715501017515083e-05,
233
+ "loss": 1.1112,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.33985581874356335,
238
+ "grad_norm": 0.5019310712814331,
239
+ "learning_rate": 2.9681579006683635e-05,
240
+ "loss": 1.0609,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.35015447991761073,
245
+ "grad_norm": 0.6643099784851074,
246
+ "learning_rate": 2.9645768533555387e-05,
247
+ "loss": 1.0873,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.3604531410916581,
252
+ "grad_norm": 0.5490696430206299,
253
+ "learning_rate": 2.960807420436025e-05,
254
+ "loss": 1.0345,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.3707518022657055,
259
+ "grad_norm": 0.6353822350502014,
260
+ "learning_rate": 2.956850086764478e-05,
261
+ "loss": 0.9968,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.38105046343975285,
266
+ "grad_norm": 0.5472348928451538,
267
+ "learning_rate": 2.952705361364855e-05,
268
+ "loss": 1.007,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.3913491246138002,
273
+ "grad_norm": 0.5896895527839661,
274
+ "learning_rate": 2.948373777364938e-05,
275
+ "loss": 1.0113,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.4016477857878476,
280
+ "grad_norm": 0.6380281448364258,
281
+ "learning_rate": 2.9438558919277575e-05,
282
+ "loss": 1.0077,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.411946446961895,
287
+ "grad_norm": 0.608356237411499,
288
+ "learning_rate": 2.9391522861799298e-05,
289
+ "loss": 1.0557,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.42224510813594235,
294
+ "grad_norm": 0.604296088218689,
295
+ "learning_rate": 2.9342635651369033e-05,
296
+ "loss": 0.943,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.4325437693099897,
301
+ "grad_norm": 0.6335668563842773,
302
+ "learning_rate": 2.9291903576251393e-05,
303
+ "loss": 0.9771,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.4428424304840371,
308
+ "grad_norm": 0.6432603597640991,
309
+ "learning_rate": 2.9239333162012256e-05,
310
+ "loss": 0.9511,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.45314109165808447,
315
+ "grad_norm": 0.663787305355072,
316
+ "learning_rate": 2.9184931170679413e-05,
317
+ "loss": 1.0233,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.46343975283213185,
322
+ "grad_norm": 0.682392954826355,
323
+ "learning_rate": 2.912870459987277e-05,
324
+ "loss": 0.9927,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.4737384140061792,
329
+ "grad_norm": 0.7003035545349121,
330
+ "learning_rate": 2.907066068190426e-05,
331
+ "loss": 0.9864,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.4840370751802266,
336
+ "grad_norm": 0.7271223068237305,
337
+ "learning_rate": 2.901080688284757e-05,
338
+ "loss": 0.9295,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.49433573635427397,
343
+ "grad_norm": 0.7064180374145508,
344
+ "learning_rate": 2.8949150901577783e-05,
345
+ "loss": 0.9624,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.5046343975283213,
350
+ "grad_norm": 0.721971869468689,
351
+ "learning_rate": 2.888570066878109e-05,
352
+ "loss": 0.9238,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.5149330587023687,
357
+ "grad_norm": 0.7580565810203552,
358
+ "learning_rate": 2.8820464345934708e-05,
359
+ "loss": 0.9442,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.525231719876416,
364
+ "grad_norm": 0.7572207450866699,
365
+ "learning_rate": 2.8753450324257035e-05,
366
+ "loss": 0.9243,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.5355303810504635,
371
+ "grad_norm": 0.8332147002220154,
372
+ "learning_rate": 2.868466722362836e-05,
373
+ "loss": 0.8602,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.5458290422245108,
378
+ "grad_norm": 0.7519991993904114,
379
+ "learning_rate": 2.861412389148205e-05,
380
+ "loss": 0.895,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.5561277033985582,
385
+ "grad_norm": 0.7677023410797119,
386
+ "learning_rate": 2.8541829401666575e-05,
387
+ "loss": 0.8985,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.5664263645726055,
392
+ "grad_norm": 0.7989876866340637,
393
+ "learning_rate": 2.8467793053278318e-05,
394
+ "loss": 0.9046,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.576725025746653,
399
+ "grad_norm": 0.7854174375534058,
400
+ "learning_rate": 2.8392024369465462e-05,
401
+ "loss": 0.8768,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.5870236869207003,
406
+ "grad_norm": 0.8013259768486023,
407
+ "learning_rate": 2.8314533096203066e-05,
408
+ "loss": 0.8911,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.5973223480947477,
413
+ "grad_norm": 0.79050213098526,
414
+ "learning_rate": 2.8235329201039424e-05,
415
+ "loss": 0.8873,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.607621009268795,
420
+ "grad_norm": 0.8942621350288391,
421
+ "learning_rate": 2.8154422871813987e-05,
422
+ "loss": 0.8144,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.6179196704428425,
427
+ "grad_norm": 0.939459502696991,
428
+ "learning_rate": 2.8071824515346904e-05,
429
+ "loss": 0.8547,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.6282183316168898,
434
+ "grad_norm": 0.8087759613990784,
435
+ "learning_rate": 2.798754475610044e-05,
436
+ "loss": 0.841,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.6385169927909372,
441
+ "grad_norm": 0.8379127979278564,
442
+ "learning_rate": 2.7901594434812326e-05,
443
+ "loss": 0.8158,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.6488156539649845,
448
+ "grad_norm": 0.9374361038208008,
449
+ "learning_rate": 2.7813984607101396e-05,
450
+ "loss": 0.8323,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.659114315139032,
455
+ "grad_norm": 0.8558433055877686,
456
+ "learning_rate": 2.7724726542045463e-05,
457
+ "loss": 0.8212,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.6694129763130793,
462
+ "grad_norm": 0.8821544647216797,
463
+ "learning_rate": 2.7633831720731862e-05,
464
+ "loss": 0.8379,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.6797116374871267,
469
+ "grad_norm": 0.8124337196350098,
470
+ "learning_rate": 2.75413118347806e-05,
471
+ "loss": 0.8437,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.690010298661174,
476
+ "grad_norm": 0.8305995464324951,
477
+ "learning_rate": 2.744717878484053e-05,
478
+ "loss": 0.9127,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.7003089598352215,
483
+ "grad_norm": 0.9433283805847168,
484
+ "learning_rate": 2.7351444679058573e-05,
485
+ "loss": 0.7848,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.7106076210092688,
490
+ "grad_norm": 0.8368889093399048,
491
+ "learning_rate": 2.7254121831522288e-05,
492
+ "loss": 0.8419,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.7209062821833162,
497
+ "grad_norm": 0.8212844729423523,
498
+ "learning_rate": 2.715522276067591e-05,
499
+ "loss": 0.8471,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.7312049433573635,
504
+ "grad_norm": 0.8189219832420349,
505
+ "learning_rate": 2.7054760187710156e-05,
506
+ "loss": 0.8241,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.741503604531411,
511
+ "grad_norm": 0.8989495038986206,
512
+ "learning_rate": 2.69527470349259e-05,
513
+ "loss": 0.8446,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 0.7518022657054583,
518
+ "grad_norm": 0.8802312016487122,
519
+ "learning_rate": 2.684919642407202e-05,
520
+ "loss": 0.7928,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 0.7621009268795057,
525
+ "grad_norm": 0.9473286271095276,
526
+ "learning_rate": 2.6744121674657563e-05,
527
+ "loss": 0.8258,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 0.772399588053553,
532
+ "grad_norm": 0.8868286609649658,
533
+ "learning_rate": 2.6637536302238485e-05,
534
+ "loss": 0.7897,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 0.7826982492276005,
539
+ "grad_norm": 0.8699805736541748,
540
+ "learning_rate": 2.6529454016679175e-05,
541
+ "loss": 0.777,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 0.7929969104016478,
546
+ "grad_norm": 1.0012321472167969,
547
+ "learning_rate": 2.6419888720388984e-05,
548
+ "loss": 0.8186,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 0.8032955715756952,
553
+ "grad_norm": 0.8919087052345276,
554
+ "learning_rate": 2.6308854506533975e-05,
555
+ "loss": 0.7626,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 0.8135942327497425,
560
+ "grad_norm": 0.8587056398391724,
561
+ "learning_rate": 2.6196365657224166e-05,
562
+ "loss": 0.8127,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 0.82389289392379,
567
+ "grad_norm": 0.8773703575134277,
568
+ "learning_rate": 2.6082436641676428e-05,
569
+ "loss": 0.7261,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 0.8341915550978373,
574
+ "grad_norm": 0.9173433780670166,
575
+ "learning_rate": 2.5967082114353363e-05,
576
+ "loss": 0.7267,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 0.8444902162718847,
581
+ "grad_norm": 1.0326611995697021,
582
+ "learning_rate": 2.5850316913078298e-05,
583
+ "loss": 0.7604,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 0.854788877445932,
588
+ "grad_norm": 0.8668928742408752,
589
+ "learning_rate": 2.573215605712676e-05,
590
+ "loss": 0.7376,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 0.8650875386199794,
595
+ "grad_norm": 0.9582007527351379,
596
+ "learning_rate": 2.561261474529455e-05,
597
+ "loss": 0.7902,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 0.8753861997940268,
602
+ "grad_norm": 0.8808298110961914,
603
+ "learning_rate": 2.5491708353942773e-05,
604
+ "loss": 0.717,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 0.8856848609680742,
609
+ "grad_norm": 1.0085995197296143,
610
+ "learning_rate": 2.5369452435019988e-05,
611
+ "loss": 0.7247,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 0.8959835221421215,
616
+ "grad_norm": 0.8899257183074951,
617
+ "learning_rate": 2.52458627140618e-05,
618
+ "loss": 0.6582,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 0.9062821833161689,
623
+ "grad_norm": 0.9038539528846741,
624
+ "learning_rate": 2.512095508816812e-05,
625
+ "loss": 0.7288,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 0.9165808444902163,
630
+ "grad_norm": 0.9046438336372375,
631
+ "learning_rate": 2.499474562395835e-05,
632
+ "loss": 0.6563,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 0.9268795056642637,
637
+ "grad_norm": 0.9700610041618347,
638
+ "learning_rate": 2.4867250555504757e-05,
639
+ "loss": 0.7074,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 0.937178166838311,
644
+ "grad_norm": 0.9176031947135925,
645
+ "learning_rate": 2.4738486282244333e-05,
646
+ "loss": 0.719,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 0.9474768280123584,
651
+ "grad_norm": 0.8907363414764404,
652
+ "learning_rate": 2.460846936686935e-05,
653
+ "loss": 0.6478,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 0.9577754891864058,
658
+ "grad_norm": 0.9568797945976257,
659
+ "learning_rate": 2.4477216533196954e-05,
660
+ "loss": 0.7165,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 0.9680741503604532,
665
+ "grad_norm": 0.9160274267196655,
666
+ "learning_rate": 2.4344744664018e-05,
667
+ "loss": 0.7126,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 0.9783728115345005,
672
+ "grad_norm": 0.9830437898635864,
673
+ "learning_rate": 2.421107079892544e-05,
674
+ "loss": 0.7068,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 0.9886714727085479,
679
+ "grad_norm": 1.0129786729812622,
680
+ "learning_rate": 2.4076212132122586e-05,
681
+ "loss": 0.6614,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 0.9989701338825953,
686
+ "grad_norm": 0.9700234532356262,
687
+ "learning_rate": 2.394018601021143e-05,
688
+ "loss": 0.6966,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.008238928939238,
693
+ "grad_norm": 1.289340853691101,
694
+ "learning_rate": 2.3803009929961393e-05,
695
+ "loss": 0.5697,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.0185375901132854,
700
+ "grad_norm": 0.9230129718780518,
701
+ "learning_rate": 2.3664701536058746e-05,
702
+ "loss": 0.6115,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.0288362512873326,
707
+ "grad_norm": 1.0552504062652588,
708
+ "learning_rate": 2.352527861883702e-05,
709
+ "loss": 0.5883,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.03913491246138,
714
+ "grad_norm": 1.0811355113983154,
715
+ "learning_rate": 2.3384759111988657e-05,
716
+ "loss": 0.5755,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.0494335736354274,
721
+ "grad_norm": 1.1151247024536133,
722
+ "learning_rate": 2.3243161090258236e-05,
723
+ "loss": 0.5683,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.0597322348094749,
728
+ "grad_norm": 0.9552525877952576,
729
+ "learning_rate": 2.3100502767117566e-05,
730
+ "loss": 0.5772,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.070030895983522,
735
+ "grad_norm": 1.019511342048645,
736
+ "learning_rate": 2.2956802492422925e-05,
737
+ "loss": 0.613,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.0803295571575695,
742
+ "grad_norm": 1.0493453741073608,
743
+ "learning_rate": 2.281207875005473e-05,
744
+ "loss": 0.5645,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.090628218331617,
749
+ "grad_norm": 0.9346718788146973,
750
+ "learning_rate": 2.266635015554002e-05,
751
+ "loss": 0.5323,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.1009268795056641,
756
+ "grad_norm": 1.0112980604171753,
757
+ "learning_rate": 2.2519635453657958e-05,
758
+ "loss": 0.5505,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.1112255406797116,
763
+ "grad_norm": 1.0268110036849976,
764
+ "learning_rate": 2.237195351602874e-05,
765
+ "loss": 0.6064,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.121524201853759,
770
+ "grad_norm": 1.1547778844833374,
771
+ "learning_rate": 2.222332333868618e-05,
772
+ "loss": 0.5805,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.1318228630278064,
777
+ "grad_norm": 1.0207399129867554,
778
+ "learning_rate": 2.207376403963426e-05,
779
+ "loss": 0.575,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.1421215242018539,
784
+ "grad_norm": 1.0759607553482056,
785
+ "learning_rate": 2.1923294856388058e-05,
786
+ "loss": 0.5932,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.152420185375901,
791
+ "grad_norm": 1.0854506492614746,
792
+ "learning_rate": 2.1771935143499233e-05,
793
+ "loss": 0.5666,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.1627188465499485,
798
+ "grad_norm": 0.9875121116638184,
799
+ "learning_rate": 2.161970437006651e-05,
800
+ "loss": 0.5669,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.173017507723996,
805
+ "grad_norm": 1.0967878103256226,
806
+ "learning_rate": 2.146662211723139e-05,
807
+ "loss": 0.5305,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.1833161688980431,
812
+ "grad_norm": 1.1200672388076782,
813
+ "learning_rate": 2.131270807565948e-05,
814
+ "loss": 0.5249,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.1936148300720906,
819
+ "grad_norm": 1.0108928680419922,
820
+ "learning_rate": 2.115798204300771e-05,
821
+ "loss": 0.5805,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.203913491246138,
826
+ "grad_norm": 1.158383846282959,
827
+ "learning_rate": 2.1002463921377818e-05,
828
+ "loss": 0.5276,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.2142121524201854,
833
+ "grad_norm": 1.0787115097045898,
834
+ "learning_rate": 2.0846173714756372e-05,
835
+ "loss": 0.5785,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.2245108135942329,
840
+ "grad_norm": 0.9920424222946167,
841
+ "learning_rate": 2.068913152644169e-05,
842
+ "loss": 0.5383,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.23480947476828,
847
+ "grad_norm": 0.9930887222290039,
848
+ "learning_rate": 2.0531357556457994e-05,
849
+ "loss": 0.5072,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.2451081359423275,
854
+ "grad_norm": 1.0695741176605225,
855
+ "learning_rate": 2.037287209895713e-05,
856
+ "loss": 0.4986,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.255406797116375,
861
+ "grad_norm": 1.159101128578186,
862
+ "learning_rate": 2.0213695539608182e-05,
863
+ "loss": 0.5523,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.2657054582904221,
868
+ "grad_norm": 1.1912457942962646,
869
+ "learning_rate": 2.005384835297527e-05,
870
+ "loss": 0.5469,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.2760041194644696,
875
+ "grad_norm": 1.1158777475357056,
876
+ "learning_rate": 1.989335109988397e-05,
877
+ "loss": 0.5356,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.286302780638517,
882
+ "grad_norm": 1.0937846899032593,
883
+ "learning_rate": 1.973222442477662e-05,
884
+ "loss": 0.4849,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.2966014418125644,
889
+ "grad_norm": 1.1300711631774902,
890
+ "learning_rate": 1.9570489053056868e-05,
891
+ "loss": 0.508,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.3069001029866119,
896
+ "grad_norm": 1.091271996498108,
897
+ "learning_rate": 1.9408165788423776e-05,
898
+ "loss": 0.5272,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.317198764160659,
903
+ "grad_norm": 1.1383930444717407,
904
+ "learning_rate": 1.9245275510195908e-05,
905
+ "loss": 0.5032,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.3274974253347065,
910
+ "grad_norm": 1.0633445978164673,
911
+ "learning_rate": 1.908183917062567e-05,
912
+ "loss": 0.4966,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.337796086508754,
917
+ "grad_norm": 1.1198703050613403,
918
+ "learning_rate": 1.8917877792204238e-05,
919
+ "loss": 0.4877,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.3480947476828011,
924
+ "grad_norm": 1.00174081325531,
925
+ "learning_rate": 1.8753412464957505e-05,
926
+ "loss": 0.4709,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.3583934088568486,
931
+ "grad_norm": 1.314014196395874,
932
+ "learning_rate": 1.8588464343733287e-05,
933
+ "loss": 0.4688,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.368692070030896,
938
+ "grad_norm": 1.0839755535125732,
939
+ "learning_rate": 1.8423054645480228e-05,
940
+ "loss": 0.5234,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.3789907312049434,
945
+ "grad_norm": 1.1334782838821411,
946
+ "learning_rate": 1.825720464651871e-05,
947
+ "loss": 0.4832,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.3892893923789909,
952
+ "grad_norm": 1.0330963134765625,
953
+ "learning_rate": 1.8090935679804126e-05,
954
+ "loss": 0.5063,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.399588053553038,
959
+ "grad_norm": 1.0906732082366943,
960
+ "learning_rate": 1.7924269132182855e-05,
961
+ "loss": 0.4959,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.4098867147270855,
966
+ "grad_norm": 1.056031584739685,
967
+ "learning_rate": 1.7757226441641303e-05,
968
+ "loss": 0.4889,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.420185375901133,
973
+ "grad_norm": 1.073580026626587,
974
+ "learning_rate": 1.758982909454841e-05,
975
+ "loss": 0.4748,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.4304840370751801,
980
+ "grad_norm": 1.1307774782180786,
981
+ "learning_rate": 1.7422098622891873e-05,
982
+ "loss": 0.4671,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.4407826982492276,
987
+ "grad_norm": 1.1314843893051147,
988
+ "learning_rate": 1.725405660150854e-05,
989
+ "loss": 0.4769,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.451081359423275,
994
+ "grad_norm": 1.0799882411956787,
995
+ "learning_rate": 1.7085724645309276e-05,
996
+ "loss": 0.4654,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 1.4613800205973224,
1001
+ "grad_norm": 1.1364656686782837,
1002
+ "learning_rate": 1.6917124406498697e-05,
1003
+ "loss": 0.4473,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 1.4716786817713698,
1008
+ "grad_norm": 1.1196246147155762,
1009
+ "learning_rate": 1.6748277571790066e-05,
1010
+ "loss": 0.4791,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 1.481977342945417,
1015
+ "grad_norm": 1.0974736213684082,
1016
+ "learning_rate": 1.6579205859615797e-05,
1017
+ "loss": 0.502,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 1.4922760041194645,
1022
+ "grad_norm": 1.1675491333007812,
1023
+ "learning_rate": 1.640993101733383e-05,
1024
+ "loss": 0.4476,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 1.502574665293512,
1029
+ "grad_norm": 1.196878433227539,
1030
+ "learning_rate": 1.624047481843034e-05,
1031
+ "loss": 0.4397,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 1.5128733264675591,
1036
+ "grad_norm": 1.3178632259368896,
1037
+ "learning_rate": 1.6070859059719028e-05,
1038
+ "loss": 0.459,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 1.5231719876416066,
1043
+ "grad_norm": 1.1056122779846191,
1044
+ "learning_rate": 1.5901105558537472e-05,
1045
+ "loss": 0.4252,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 1.533470648815654,
1050
+ "grad_norm": 1.1540517807006836,
1051
+ "learning_rate": 1.573123614994078e-05,
1052
+ "loss": 0.496,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 1.5437693099897012,
1057
+ "grad_norm": 1.0923795700073242,
1058
+ "learning_rate": 1.5561272683893016e-05,
1059
+ "loss": 0.4283,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 1.5540679711637488,
1064
+ "grad_norm": 1.1902728080749512,
1065
+ "learning_rate": 1.5391237022456636e-05,
1066
+ "loss": 0.4605,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 1.564366632337796,
1071
+ "grad_norm": 1.1004552841186523,
1072
+ "learning_rate": 1.5221151036980478e-05,
1073
+ "loss": 0.4535,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 1.5746652935118435,
1078
+ "grad_norm": 1.1242482662200928,
1079
+ "learning_rate": 1.5051036605286436e-05,
1080
+ "loss": 0.4424,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 1.584963954685891,
1085
+ "grad_norm": 1.0503530502319336,
1086
+ "learning_rate": 1.4880915608855402e-05,
1087
+ "loss": 0.4138,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 1.5952626158599381,
1092
+ "grad_norm": 1.2440671920776367,
1093
+ "learning_rate": 1.4710809930012672e-05,
1094
+ "loss": 0.4639,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 1.6055612770339855,
1099
+ "grad_norm": 1.1396325826644897,
1100
+ "learning_rate": 1.4540741449113255e-05,
1101
+ "loss": 0.4726,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 1.615859938208033,
1106
+ "grad_norm": 1.0694893598556519,
1107
+ "learning_rate": 1.4370732041727495e-05,
1108
+ "loss": 0.4092,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 1.6261585993820802,
1113
+ "grad_norm": 1.331519365310669,
1114
+ "learning_rate": 1.4200803575827193e-05,
1115
+ "loss": 0.4554,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 1.6364572605561278,
1120
+ "grad_norm": 1.1854562759399414,
1121
+ "learning_rate": 1.4030977908972842e-05,
1122
+ "loss": 0.4412,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 1.646755921730175,
1127
+ "grad_norm": 1.1538197994232178,
1128
+ "learning_rate": 1.386127688550206e-05,
1129
+ "loss": 0.4241,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 1.6570545829042225,
1134
+ "grad_norm": 1.1079086065292358,
1135
+ "learning_rate": 1.3691722333719873e-05,
1136
+ "loss": 0.463,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 1.66735324407827,
1141
+ "grad_norm": 1.124470829963684,
1142
+ "learning_rate": 1.3522336063090911e-05,
1143
+ "loss": 0.4311,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 1.677651905252317,
1148
+ "grad_norm": 1.2267584800720215,
1149
+ "learning_rate": 1.335313986143416e-05,
1150
+ "loss": 0.4228,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 1.6879505664263645,
1155
+ "grad_norm": 1.1515077352523804,
1156
+ "learning_rate": 1.3184155492120403e-05,
1157
+ "loss": 0.3892,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 1.698249227600412,
1162
+ "grad_norm": 1.1764094829559326,
1163
+ "learning_rate": 1.301540469127284e-05,
1164
+ "loss": 0.3948,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 1.7085478887744592,
1169
+ "grad_norm": 1.231463074684143,
1170
+ "learning_rate": 1.2846909164971244e-05,
1171
+ "loss": 0.4073,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 1.7188465499485068,
1176
+ "grad_norm": 1.1313854455947876,
1177
+ "learning_rate": 1.2678690586459912e-05,
1178
+ "loss": 0.4431,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 1.729145211122554,
1183
+ "grad_norm": 1.1482270956039429,
1184
+ "learning_rate": 1.2510770593359917e-05,
1185
+ "loss": 0.4288,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 1.7394438722966015,
1190
+ "grad_norm": 1.1811319589614868,
1191
+ "learning_rate": 1.2343170784885859e-05,
1192
+ "loss": 0.432,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 1.749742533470649,
1197
+ "grad_norm": 1.1519742012023926,
1198
+ "learning_rate": 1.2175912719067656e-05,
1199
+ "loss": 0.4127,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 1.760041194644696,
1204
+ "grad_norm": 1.262083888053894,
1205
+ "learning_rate": 1.2009017909977519e-05,
1206
+ "loss": 0.3925,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 1.7703398558187435,
1211
+ "grad_norm": 1.0992200374603271,
1212
+ "learning_rate": 1.1842507824962694e-05,
1213
+ "loss": 0.4088,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 1.780638516992791,
1218
+ "grad_norm": 1.2741643190383911,
1219
+ "learning_rate": 1.1676403881884118e-05,
1220
+ "loss": 0.4437,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 1.7909371781668382,
1225
+ "grad_norm": 1.194522500038147,
1226
+ "learning_rate": 1.1510727446361515e-05,
1227
+ "loss": 0.4217,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 1.8012358393408858,
1232
+ "grad_norm": 1.1314176321029663,
1233
+ "learning_rate": 1.1345499829025136e-05,
1234
+ "loss": 0.4275,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 1.811534500514933,
1239
+ "grad_norm": 1.2185325622558594,
1240
+ "learning_rate": 1.1180742282774668e-05,
1241
+ "loss": 0.3821,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 1.8218331616889805,
1246
+ "grad_norm": 1.0925527811050415,
1247
+ "learning_rate": 1.1016476000045485e-05,
1248
+ "loss": 0.3907,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 1.832131822863028,
1253
+ "grad_norm": 1.174952745437622,
1254
+ "learning_rate": 1.0852722110082693e-05,
1255
+ "loss": 0.3726,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 1.842430484037075,
1260
+ "grad_norm": 1.1238709688186646,
1261
+ "learning_rate": 1.0689501676223362e-05,
1262
+ "loss": 0.3677,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 1.8527291452111225,
1267
+ "grad_norm": 1.2410848140716553,
1268
+ "learning_rate": 1.052683569318714e-05,
1269
+ "loss": 0.4227,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 1.86302780638517,
1274
+ "grad_norm": 1.063857078552246,
1275
+ "learning_rate": 1.036474508437579e-05,
1276
+ "loss": 0.4146,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 1.8733264675592172,
1281
+ "grad_norm": 1.2665809392929077,
1282
+ "learning_rate": 1.0203250699181816e-05,
1283
+ "loss": 0.3931,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 1.8836251287332648,
1288
+ "grad_norm": 1.2078760862350464,
1289
+ "learning_rate": 1.0042373310306683e-05,
1290
+ "loss": 0.3815,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 1.893923789907312,
1295
+ "grad_norm": 1.245889663696289,
1296
+ "learning_rate": 9.882133611088827e-06,
1297
+ "loss": 0.4002,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 1.9042224510813595,
1302
+ "grad_norm": 1.1145470142364502,
1303
+ "learning_rate": 9.722552212841949e-06,
1304
+ "loss": 0.3686,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 1.9145211122554069,
1309
+ "grad_norm": 1.2170394659042358,
1310
+ "learning_rate": 9.563649642203787e-06,
1311
+ "loss": 0.3901,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 1.924819773429454,
1316
+ "grad_norm": 1.289502739906311,
1317
+ "learning_rate": 9.40544633849586e-06,
1318
+ "loss": 0.3736,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 1.9351184346035015,
1323
+ "grad_norm": 1.1821953058242798,
1324
+ "learning_rate": 9.24796265109435e-06,
1325
+ "loss": 0.3601,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 1.945417095777549,
1330
+ "grad_norm": 1.1379320621490479,
1331
+ "learning_rate": 9.091218836812632e-06,
1332
+ "loss": 0.3654,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 1.9557157569515962,
1337
+ "grad_norm": 1.2809494733810425,
1338
+ "learning_rate": 8.935235057295683e-06,
1339
+ "loss": 0.3991,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 1.9660144181256438,
1344
+ "grad_norm": 1.3044058084487915,
1345
+ "learning_rate": 8.780031376426706e-06,
1346
+ "loss": 0.401,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 1.976313079299691,
1351
+ "grad_norm": 1.183264970779419,
1352
+ "learning_rate": 8.625627757746384e-06,
1353
+ "loss": 0.361,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 1.9866117404737385,
1358
+ "grad_norm": 1.2557350397109985,
1359
+ "learning_rate": 8.472044061884977e-06,
1360
+ "loss": 0.3516,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 1.9969104016477859,
1365
+ "grad_norm": 1.3537737131118774,
1366
+ "learning_rate": 8.319300044007705e-06,
1367
+ "loss": 0.3504,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.0061791967044282,
1372
+ "grad_norm": 1.2312425374984741,
1373
+ "learning_rate": 8.167415351273688e-06,
1374
+ "loss": 0.3242,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.016477857878476,
1379
+ "grad_norm": 1.260758638381958,
1380
+ "learning_rate": 8.016409520308768e-06,
1381
+ "loss": 0.2976,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.026776519052523,
1386
+ "grad_norm": 1.1900808811187744,
1387
+ "learning_rate": 7.866301974692517e-06,
1388
+ "loss": 0.321,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.0370751802265707,
1393
+ "grad_norm": 1.0744178295135498,
1394
+ "learning_rate": 7.717112022459894e-06,
1395
+ "loss": 0.3037,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.047373841400618,
1400
+ "grad_norm": 1.2815207242965698,
1401
+ "learning_rate": 7.568858853617599e-06,
1402
+ "loss": 0.2794,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.057672502574665,
1407
+ "grad_norm": 1.1860491037368774,
1408
+ "learning_rate": 7.421561537675789e-06,
1409
+ "loss": 0.3019,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.067971163748713,
1414
+ "grad_norm": 1.1459763050079346,
1415
+ "learning_rate": 7.275239021195143e-06,
1416
+ "loss": 0.2875,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.07826982492276,
1421
+ "grad_norm": 1.2066428661346436,
1422
+ "learning_rate": 7.129910125349826e-06,
1423
+ "loss": 0.3074,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.0885684860968072,
1428
+ "grad_norm": 1.1209933757781982,
1429
+ "learning_rate": 6.985593543506564e-06,
1430
+ "loss": 0.3032,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.098867147270855,
1435
+ "grad_norm": 1.0854389667510986,
1436
+ "learning_rate": 6.842307838820136e-06,
1437
+ "loss": 0.3091,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.109165808444902,
1442
+ "grad_norm": 1.081048607826233,
1443
+ "learning_rate": 6.70007144184567e-06,
1444
+ "loss": 0.2917,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.1194644696189497,
1449
+ "grad_norm": 1.1880099773406982,
1450
+ "learning_rate": 6.558902648167885e-06,
1451
+ "loss": 0.2941,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.129763130792997,
1456
+ "grad_norm": 1.2570151090621948,
1457
+ "learning_rate": 6.418819616047866e-06,
1458
+ "loss": 0.2951,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.140061791967044,
1463
+ "grad_norm": 1.1913825273513794,
1464
+ "learning_rate": 6.279840364087298e-06,
1465
+ "loss": 0.3107,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.150360453141092,
1470
+ "grad_norm": 1.1225835084915161,
1471
+ "learning_rate": 6.141982768910861e-06,
1472
+ "loss": 0.298,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.160659114315139,
1477
+ "grad_norm": 1.1800163984298706,
1478
+ "learning_rate": 6.005264562866731e-06,
1479
+ "loss": 0.3099,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.1709577754891862,
1484
+ "grad_norm": 1.1595478057861328,
1485
+ "learning_rate": 5.869703331745736e-06,
1486
+ "loss": 0.2873,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.181256436663234,
1491
+ "grad_norm": 1.2419568300247192,
1492
+ "learning_rate": 5.7353165125193165e-06,
1493
+ "loss": 0.3016,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 2.191555097837281,
1498
+ "grad_norm": 1.138638973236084,
1499
+ "learning_rate": 5.602121391096651e-06,
1500
+ "loss": 0.2717,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 2.2018537590113283,
1505
+ "grad_norm": 1.1681976318359375,
1506
+ "learning_rate": 5.470135100101202e-06,
1507
+ "loss": 0.2874,
1508
+ "step": 1070
1509
+ },
1510
+ {
1511
+ "epoch": 2.212152420185376,
1512
+ "grad_norm": 1.1736184358596802,
1513
+ "learning_rate": 5.3393746166669735e-06,
1514
+ "loss": 0.2925,
1515
+ "step": 1075
1516
+ },
1517
+ {
1518
+ "epoch": 2.222451081359423,
1519
+ "grad_norm": 1.258540391921997,
1520
+ "learning_rate": 5.209856760254784e-06,
1521
+ "loss": 0.3237,
1522
+ "step": 1080
1523
+ },
1524
+ {
1525
+ "epoch": 2.232749742533471,
1526
+ "grad_norm": 1.1958656311035156,
1527
+ "learning_rate": 5.0815981904888195e-06,
1528
+ "loss": 0.3135,
1529
+ "step": 1085
1530
+ },
1531
+ {
1532
+ "epoch": 2.243048403707518,
1533
+ "grad_norm": 1.2103713750839233,
1534
+ "learning_rate": 4.9546154050137175e-06,
1535
+ "loss": 0.2718,
1536
+ "step": 1090
1537
+ },
1538
+ {
1539
+ "epoch": 2.253347064881565,
1540
+ "grad_norm": 1.0489109754562378,
1541
+ "learning_rate": 4.8289247373725275e-06,
1542
+ "loss": 0.2813,
1543
+ "step": 1095
1544
+ },
1545
+ {
1546
+ "epoch": 2.263645726055613,
1547
+ "grad_norm": 1.2313042879104614,
1548
+ "learning_rate": 4.704542354905751e-06,
1549
+ "loss": 0.2865,
1550
+ "step": 1100
1551
+ },
1552
+ {
1553
+ "epoch": 2.27394438722966,
1554
+ "grad_norm": 1.1651129722595215,
1555
+ "learning_rate": 4.581484256671767e-06,
1556
+ "loss": 0.2993,
1557
+ "step": 1105
1558
+ },
1559
+ {
1560
+ "epoch": 2.2842430484037077,
1561
+ "grad_norm": 1.1578460931777954,
1562
+ "learning_rate": 4.459766271388916e-06,
1563
+ "loss": 0.2952,
1564
+ "step": 1110
1565
+ },
1566
+ {
1567
+ "epoch": 2.294541709577755,
1568
+ "grad_norm": 1.1344382762908936,
1569
+ "learning_rate": 4.339404055399469e-06,
1570
+ "loss": 0.3014,
1571
+ "step": 1115
1572
+ },
1573
+ {
1574
+ "epoch": 2.304840370751802,
1575
+ "grad_norm": 1.2620543241500854,
1576
+ "learning_rate": 4.220413090655795e-06,
1577
+ "loss": 0.296,
1578
+ "step": 1120
1579
+ },
1580
+ {
1581
+ "epoch": 2.31513903192585,
1582
+ "grad_norm": 1.152414083480835,
1583
+ "learning_rate": 4.102808682728938e-06,
1584
+ "loss": 0.288,
1585
+ "step": 1125
1586
+ },
1587
+ {
1588
+ "epoch": 2.325437693099897,
1589
+ "grad_norm": 1.2424604892730713,
1590
+ "learning_rate": 3.986605958839911e-06,
1591
+ "loss": 0.2758,
1592
+ "step": 1130
1593
+ },
1594
+ {
1595
+ "epoch": 2.335736354273944,
1596
+ "grad_norm": 1.2598347663879395,
1597
+ "learning_rate": 3.871819865913873e-06,
1598
+ "loss": 0.2851,
1599
+ "step": 1135
1600
+ },
1601
+ {
1602
+ "epoch": 2.346035015447992,
1603
+ "grad_norm": 1.174824595451355,
1604
+ "learning_rate": 3.7584651686575923e-06,
1605
+ "loss": 0.2766,
1606
+ "step": 1140
1607
+ },
1608
+ {
1609
+ "epoch": 2.356333676622039,
1610
+ "grad_norm": 1.1790934801101685,
1611
+ "learning_rate": 3.6465564476602275e-06,
1612
+ "loss": 0.2889,
1613
+ "step": 1145
1614
+ },
1615
+ {
1616
+ "epoch": 2.3666323377960863,
1617
+ "grad_norm": 1.0987571477890015,
1618
+ "learning_rate": 3.5361080975179157e-06,
1619
+ "loss": 0.263,
1620
+ "step": 1150
1621
+ },
1622
+ {
1623
+ "epoch": 2.376930998970134,
1624
+ "grad_norm": 1.2476327419281006,
1625
+ "learning_rate": 3.4271343249821815e-06,
1626
+ "loss": 0.2665,
1627
+ "step": 1155
1628
+ },
1629
+ {
1630
+ "epoch": 2.387229660144181,
1631
+ "grad_norm": 1.2057719230651855,
1632
+ "learning_rate": 3.31964914713257e-06,
1633
+ "loss": 0.2709,
1634
+ "step": 1160
1635
+ },
1636
+ {
1637
+ "epoch": 2.397528321318229,
1638
+ "grad_norm": 1.227776050567627,
1639
+ "learning_rate": 3.2136663895736503e-06,
1640
+ "loss": 0.2723,
1641
+ "step": 1165
1642
+ },
1643
+ {
1644
+ "epoch": 2.407826982492276,
1645
+ "grad_norm": 1.166344404220581,
1646
+ "learning_rate": 3.1091996846566605e-06,
1647
+ "loss": 0.2856,
1648
+ "step": 1170
1649
+ },
1650
+ {
1651
+ "epoch": 2.418125643666323,
1652
+ "grad_norm": 1.1600207090377808,
1653
+ "learning_rate": 3.006262469726014e-06,
1654
+ "loss": 0.2866,
1655
+ "step": 1175
1656
+ },
1657
+ {
1658
+ "epoch": 2.428424304840371,
1659
+ "grad_norm": 1.1660932302474976,
1660
+ "learning_rate": 2.904867985390847e-06,
1661
+ "loss": 0.2465,
1662
+ "step": 1180
1663
+ },
1664
+ {
1665
+ "epoch": 2.438722966014418,
1666
+ "grad_norm": 1.1711407899856567,
1667
+ "learning_rate": 2.8050292738219574e-06,
1668
+ "loss": 0.2749,
1669
+ "step": 1185
1670
+ },
1671
+ {
1672
+ "epoch": 2.4490216271884657,
1673
+ "grad_norm": 1.287010908126831,
1674
+ "learning_rate": 2.7067591770741557e-06,
1675
+ "loss": 0.2856,
1676
+ "step": 1190
1677
+ },
1678
+ {
1679
+ "epoch": 2.459320288362513,
1680
+ "grad_norm": 1.226939082145691,
1681
+ "learning_rate": 2.6100703354344808e-06,
1682
+ "loss": 0.306,
1683
+ "step": 1195
1684
+ },
1685
+ {
1686
+ "epoch": 2.46961894953656,
1687
+ "grad_norm": 1.127946138381958,
1688
+ "learning_rate": 2.5149751857962526e-06,
1689
+ "loss": 0.2772,
1690
+ "step": 1200
1691
+ },
1692
+ {
1693
+ "epoch": 2.479917610710608,
1694
+ "grad_norm": 1.1659767627716064,
1695
+ "learning_rate": 2.4214859600593646e-06,
1696
+ "loss": 0.2748,
1697
+ "step": 1205
1698
+ },
1699
+ {
1700
+ "epoch": 2.490216271884655,
1701
+ "grad_norm": 1.2046109437942505,
1702
+ "learning_rate": 2.3296146835569175e-06,
1703
+ "loss": 0.2787,
1704
+ "step": 1210
1705
+ },
1706
+ {
1707
+ "epoch": 2.500514933058702,
1708
+ "grad_norm": 1.2293471097946167,
1709
+ "learning_rate": 2.2393731735084126e-06,
1710
+ "loss": 0.2481,
1711
+ "step": 1215
1712
+ },
1713
+ {
1714
+ "epoch": 2.51081359423275,
1715
+ "grad_norm": 1.1489880084991455,
1716
+ "learning_rate": 2.1507730374997525e-06,
1717
+ "loss": 0.2882,
1718
+ "step": 1220
1719
+ },
1720
+ {
1721
+ "epoch": 2.521112255406797,
1722
+ "grad_norm": 1.1941146850585938,
1723
+ "learning_rate": 2.063825671990135e-06,
1724
+ "loss": 0.304,
1725
+ "step": 1225
1726
+ },
1727
+ {
1728
+ "epoch": 2.5314109165808443,
1729
+ "grad_norm": 1.2482354640960693,
1730
+ "learning_rate": 1.9785422608462094e-06,
1731
+ "loss": 0.2809,
1732
+ "step": 1230
1733
+ },
1734
+ {
1735
+ "epoch": 2.541709577754892,
1736
+ "grad_norm": 1.1503864526748657,
1737
+ "learning_rate": 1.8949337739034562e-06,
1738
+ "loss": 0.2653,
1739
+ "step": 1235
1740
+ },
1741
+ {
1742
+ "epoch": 2.552008238928939,
1743
+ "grad_norm": 1.1565074920654297,
1744
+ "learning_rate": 1.8130109655552073e-06,
1745
+ "loss": 0.2555,
1746
+ "step": 1240
1747
+ },
1748
+ {
1749
+ "epoch": 2.5623069001029863,
1750
+ "grad_norm": 1.1367086172103882,
1751
+ "learning_rate": 1.732784373369305e-06,
1752
+ "loss": 0.2871,
1753
+ "step": 1245
1754
+ },
1755
+ {
1756
+ "epoch": 2.572605561277034,
1757
+ "grad_norm": 1.2132548093795776,
1758
+ "learning_rate": 1.6542643167326822e-06,
1759
+ "loss": 0.2698,
1760
+ "step": 1250
1761
+ },
1762
+ {
1763
+ "epoch": 2.582904222451081,
1764
+ "grad_norm": 1.3223958015441895,
1765
+ "learning_rate": 1.5774608955239956e-06,
1766
+ "loss": 0.2378,
1767
+ "step": 1255
1768
+ },
1769
+ {
1770
+ "epoch": 2.593202883625129,
1771
+ "grad_norm": 1.2861623764038086,
1772
+ "learning_rate": 1.5023839888145064e-06,
1773
+ "loss": 0.299,
1774
+ "step": 1260
1775
+ },
1776
+ {
1777
+ "epoch": 2.603501544799176,
1778
+ "grad_norm": 1.158660888671875,
1779
+ "learning_rate": 1.4290432535973497e-06,
1780
+ "loss": 0.2767,
1781
+ "step": 1265
1782
+ },
1783
+ {
1784
+ "epoch": 2.6138002059732237,
1785
+ "grad_norm": 1.2246760129928589,
1786
+ "learning_rate": 1.3574481235453767e-06,
1787
+ "loss": 0.2823,
1788
+ "step": 1270
1789
+ },
1790
+ {
1791
+ "epoch": 2.624098867147271,
1792
+ "grad_norm": 1.2212415933609009,
1793
+ "learning_rate": 1.2876078077977187e-06,
1794
+ "loss": 0.2703,
1795
+ "step": 1275
1796
+ },
1797
+ {
1798
+ "epoch": 2.634397528321318,
1799
+ "grad_norm": 1.2260514497756958,
1800
+ "learning_rate": 1.2195312897752315e-06,
1801
+ "loss": 0.2739,
1802
+ "step": 1280
1803
+ },
1804
+ {
1805
+ "epoch": 2.644696189495366,
1806
+ "grad_norm": 1.4936864376068115,
1807
+ "learning_rate": 1.1532273260249854e-06,
1808
+ "loss": 0.2874,
1809
+ "step": 1285
1810
+ },
1811
+ {
1812
+ "epoch": 2.654994850669413,
1813
+ "grad_norm": 1.1349952220916748,
1814
+ "learning_rate": 1.0887044450939177e-06,
1815
+ "loss": 0.2842,
1816
+ "step": 1290
1817
+ },
1818
+ {
1819
+ "epoch": 2.66529351184346,
1820
+ "grad_norm": 1.1385561227798462,
1821
+ "learning_rate": 1.025970946431824e-06,
1822
+ "loss": 0.2771,
1823
+ "step": 1295
1824
+ },
1825
+ {
1826
+ "epoch": 2.675592173017508,
1827
+ "grad_norm": 1.170721173286438,
1828
+ "learning_rate": 9.650348993238213e-07,
1829
+ "loss": 0.2911,
1830
+ "step": 1300
1831
+ },
1832
+ {
1833
+ "epoch": 2.685890834191555,
1834
+ "grad_norm": 1.2789045572280884,
1835
+ "learning_rate": 9.059041418524105e-07,
1836
+ "loss": 0.2611,
1837
+ "step": 1305
1838
+ },
1839
+ {
1840
+ "epoch": 2.6961894953656023,
1841
+ "grad_norm": 1.115492820739746,
1842
+ "learning_rate": 8.485862798892763e-07,
1843
+ "loss": 0.2615,
1844
+ "step": 1310
1845
+ },
1846
+ {
1847
+ "epoch": 2.70648815653965,
1848
+ "grad_norm": 1.0761568546295166,
1849
+ "learning_rate": 7.930886861169612e-07,
1850
+ "loss": 0.2701,
1851
+ "step": 1315
1852
+ },
1853
+ {
1854
+ "epoch": 2.716786817713697,
1855
+ "grad_norm": 1.1549662351608276,
1856
+ "learning_rate": 7.394184990805336e-07,
1857
+ "loss": 0.289,
1858
+ "step": 1320
1859
+ },
1860
+ {
1861
+ "epoch": 2.7270854788877443,
1862
+ "grad_norm": 1.154183268547058,
1863
+ "learning_rate": 6.875826222693704e-07,
1864
+ "loss": 0.2865,
1865
+ "step": 1325
1866
+ },
1867
+ {
1868
+ "epoch": 2.737384140061792,
1869
+ "grad_norm": 1.1828193664550781,
1870
+ "learning_rate": 6.375877232291688e-07,
1871
+ "loss": 0.2574,
1872
+ "step": 1330
1873
+ },
1874
+ {
1875
+ "epoch": 2.747682801235839,
1876
+ "grad_norm": 1.2014567852020264,
1877
+ "learning_rate": 5.894402327043242e-07,
1878
+ "loss": 0.2703,
1879
+ "step": 1335
1880
+ },
1881
+ {
1882
+ "epoch": 2.757981462409887,
1883
+ "grad_norm": 1.1897326707839966,
1884
+ "learning_rate": 5.431463438107431e-07,
1885
+ "loss": 0.2673,
1886
+ "step": 1340
1887
+ },
1888
+ {
1889
+ "epoch": 2.768280123583934,
1890
+ "grad_norm": 1.3078969717025757,
1891
+ "learning_rate": 4.987120112392513e-07,
1892
+ "loss": 0.2842,
1893
+ "step": 1345
1894
+ },
1895
+ {
1896
+ "epoch": 2.7785787847579817,
1897
+ "grad_norm": 1.0676493644714355,
1898
+ "learning_rate": 4.5614295048963694e-07,
1899
+ "loss": 0.2561,
1900
+ "step": 1350
1901
+ },
1902
+ {
1903
+ "epoch": 2.788877445932029,
1904
+ "grad_norm": 1.1583354473114014,
1905
+ "learning_rate": 4.1544463713548806e-07,
1906
+ "loss": 0.2687,
1907
+ "step": 1355
1908
+ },
1909
+ {
1910
+ "epoch": 2.799176107106076,
1911
+ "grad_norm": 1.2171998023986816,
1912
+ "learning_rate": 3.766223061198787e-07,
1913
+ "loss": 0.2689,
1914
+ "step": 1360
1915
+ },
1916
+ {
1917
+ "epoch": 2.8094747682801238,
1918
+ "grad_norm": 1.1008455753326416,
1919
+ "learning_rate": 3.396809510820026e-07,
1920
+ "loss": 0.2376,
1921
+ "step": 1365
1922
+ },
1923
+ {
1924
+ "epoch": 2.819773429454171,
1925
+ "grad_norm": 1.0786809921264648,
1926
+ "learning_rate": 3.0462532371486216e-07,
1927
+ "loss": 0.2932,
1928
+ "step": 1370
1929
+ },
1930
+ {
1931
+ "epoch": 2.830072090628218,
1932
+ "grad_norm": 1.1290796995162964,
1933
+ "learning_rate": 2.714599331540557e-07,
1934
+ "loss": 0.2715,
1935
+ "step": 1375
1936
+ },
1937
+ {
1938
+ "epoch": 2.840370751802266,
1939
+ "grad_norm": 1.2383511066436768,
1940
+ "learning_rate": 2.4018904539778617e-07,
1941
+ "loss": 0.2462,
1942
+ "step": 1380
1943
+ },
1944
+ {
1945
+ "epoch": 2.850669412976313,
1946
+ "grad_norm": 1.0900682210922241,
1947
+ "learning_rate": 2.108166827581254e-07,
1948
+ "loss": 0.2647,
1949
+ "step": 1385
1950
+ },
1951
+ {
1952
+ "epoch": 2.8609680741503603,
1953
+ "grad_norm": 1.1337480545043945,
1954
+ "learning_rate": 1.8334662334364427e-07,
1955
+ "loss": 0.2892,
1956
+ "step": 1390
1957
+ },
1958
+ {
1959
+ "epoch": 2.871266735324408,
1960
+ "grad_norm": 1.2129875421524048,
1961
+ "learning_rate": 1.5778240057342518e-07,
1962
+ "loss": 0.2402,
1963
+ "step": 1395
1964
+ },
1965
+ {
1966
+ "epoch": 2.881565396498455,
1967
+ "grad_norm": 1.246243953704834,
1968
+ "learning_rate": 1.3412730272258367e-07,
1969
+ "loss": 0.2493,
1970
+ "step": 1400
1971
+ },
1972
+ {
1973
+ "epoch": 2.8918640576725023,
1974
+ "grad_norm": 1.134068250656128,
1975
+ "learning_rate": 1.1238437249929012e-07,
1976
+ "loss": 0.2814,
1977
+ "step": 1405
1978
+ },
1979
+ {
1980
+ "epoch": 2.90216271884655,
1981
+ "grad_norm": 1.1378494501113892,
1982
+ "learning_rate": 9.255640665339794e-08,
1983
+ "loss": 0.2826,
1984
+ "step": 1410
1985
+ },
1986
+ {
1987
+ "epoch": 2.912461380020597,
1988
+ "grad_norm": 1.2398602962493896,
1989
+ "learning_rate": 7.464595561670784e-08,
1990
+ "loss": 0.2615,
1991
+ "step": 1415
1992
+ },
1993
+ {
1994
+ "epoch": 2.922760041194645,
1995
+ "grad_norm": 1.1347421407699585,
1996
+ "learning_rate": 5.8655323174895414e-08,
1997
+ "loss": 0.2534,
1998
+ "step": 1420
1999
+ },
2000
+ {
2001
+ "epoch": 2.933058702368692,
2002
+ "grad_norm": 1.2459594011306763,
2003
+ "learning_rate": 4.4586566171199713e-08,
2004
+ "loss": 0.2577,
2005
+ "step": 1425
2006
+ },
2007
+ {
2008
+ "epoch": 2.9433573635427397,
2009
+ "grad_norm": 1.2137491703033447,
2010
+ "learning_rate": 3.244149424184328e-08,
2011
+ "loss": 0.2627,
2012
+ "step": 1430
2013
+ },
2014
+ {
2015
+ "epoch": 2.953656024716787,
2016
+ "grad_norm": 1.218840479850769,
2017
+ "learning_rate": 2.2221669583261662e-08,
2018
+ "loss": 0.27,
2019
+ "step": 1435
2020
+ },
2021
+ {
2022
+ "epoch": 2.963954685890834,
2023
+ "grad_norm": 1.1140334606170654,
2024
+ "learning_rate": 1.3928406751170797e-08,
2025
+ "loss": 0.2733,
2026
+ "step": 1440
2027
+ },
2028
+ {
2029
+ "epoch": 2.9742533470648818,
2030
+ "grad_norm": 1.155864953994751,
2031
+ "learning_rate": 7.562772491463976e-09,
2032
+ "loss": 0.2564,
2033
+ "step": 1445
2034
+ },
2035
+ {
2036
+ "epoch": 2.984552008238929,
2037
+ "grad_norm": 1.056074619293213,
2038
+ "learning_rate": 3.125585603014902e-09,
2039
+ "loss": 0.2613,
2040
+ "step": 1450
2041
+ },
2042
+ {
2043
+ "epoch": 2.994850669412976,
2044
+ "grad_norm": 1.1137224435806274,
2045
+ "learning_rate": 6.174168323402895e-10,
2046
+ "loss": 0.2519,
2047
+ "step": 1455
2048
+ },
2049
+ {
2050
+ "epoch": 3.0,
2051
+ "step": 1458,
2052
+ "total_flos": 2.0902059450816266e+18,
2053
+ "train_loss": 0.5750568343942221,
2054
+ "train_runtime": 964.5713,
2055
+ "train_samples_per_second": 48.295,
2056
+ "train_steps_per_second": 1.512
2057
+ }
2058
+ ],
2059
+ "logging_steps": 5,
2060
+ "max_steps": 1458,
2061
+ "num_input_tokens_seen": 0,
2062
+ "num_train_epochs": 3,
2063
+ "save_steps": 20000,
2064
+ "stateful_callbacks": {
2065
+ "TrainerControl": {
2066
+ "args": {
2067
+ "should_epoch_stop": false,
2068
+ "should_evaluate": false,
2069
+ "should_log": false,
2070
+ "should_save": false,
2071
+ "should_training_stop": false
2072
+ },
2073
+ "attributes": {}
2074
+ }
2075
+ },
2076
+ "total_flos": 2.0902059450816266e+18,
2077
+ "train_batch_size": 2,
2078
+ "trial_name": null,
2079
+ "trial_params": null
2080
+ }
109_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92b5fea3ee7b117a4feca6de110b367f70db0f2a6ceb211f7b9831471168a35c
3
+ size 8273
109_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff