RayDu0010 commited on
Commit
828d876
·
verified ·
1 Parent(s): 53b39b6

Upload folder using huggingface_hub

Browse files
21_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
+ "v_proj",
28
+ "up_proj",
29
+ "o_proj",
30
+ "down_proj",
31
+ "k_proj",
32
+ "q_proj",
33
+ "gate_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
21_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23548eaffe3ed5a8f66e5343e7b3283c36a59e2ebb005f17be6c814c352f5f26
3
+ size 791751704
21_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
+ }
21_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.681814355403866e+18,
4
+ "train_loss": 0.5136630487768618,
5
+ "train_runtime": 798.9244,
6
+ "train_samples": 11658,
7
+ "train_samples_per_second": 43.776,
8
+ "train_steps_per_second": 1.371
9
+ }
21_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 %}
21_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
+ }
21_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
21_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
+ }
21_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
21_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
+ }
21_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.681814355403866e+18,
4
+ "train_loss": 0.5136630487768618,
5
+ "train_runtime": 798.9244,
6
+ "train_samples": 11658,
7
+ "train_samples_per_second": 43.776,
8
+ "train_steps_per_second": 1.371
9
+ }
21_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1576 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1095,
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.013717421124828532,
14
+ "grad_norm": 3.106865882873535,
15
+ "learning_rate": 2.181818181818182e-06,
16
+ "loss": 1.4689,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.027434842249657063,
21
+ "grad_norm": 2.0553035736083984,
22
+ "learning_rate": 4.90909090909091e-06,
23
+ "loss": 1.4574,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.0411522633744856,
28
+ "grad_norm": 0.8481558561325073,
29
+ "learning_rate": 7.636363636363636e-06,
30
+ "loss": 1.3442,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.05486968449931413,
35
+ "grad_norm": 0.4872903525829315,
36
+ "learning_rate": 1.0363636363636364e-05,
37
+ "loss": 1.2727,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.06858710562414266,
42
+ "grad_norm": 0.5174750685691833,
43
+ "learning_rate": 1.309090909090909e-05,
44
+ "loss": 1.2754,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.0823045267489712,
49
+ "grad_norm": 0.42355358600616455,
50
+ "learning_rate": 1.5818181818181818e-05,
51
+ "loss": 1.2302,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.09602194787379972,
56
+ "grad_norm": 0.3771427571773529,
57
+ "learning_rate": 1.8545454545454545e-05,
58
+ "loss": 1.2124,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.10973936899862825,
63
+ "grad_norm": 0.387548565864563,
64
+ "learning_rate": 2.1272727272727273e-05,
65
+ "loss": 1.1857,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.12345679012345678,
70
+ "grad_norm": 0.3364452123641968,
71
+ "learning_rate": 2.4e-05,
72
+ "loss": 1.1696,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.13717421124828533,
77
+ "grad_norm": 0.35074296593666077,
78
+ "learning_rate": 2.6727272727272728e-05,
79
+ "loss": 1.176,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.15089163237311384,
84
+ "grad_norm": 0.3759289085865021,
85
+ "learning_rate": 2.9454545454545456e-05,
86
+ "loss": 1.151,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.1646090534979424,
91
+ "grad_norm": 0.4880169928073883,
92
+ "learning_rate": 2.999890501283416e-05,
93
+ "loss": 1.1684,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.17832647462277093,
98
+ "grad_norm": 0.4521220028400421,
99
+ "learning_rate": 2.9994456901461047e-05,
100
+ "loss": 1.1263,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.19204389574759945,
105
+ "grad_norm": 0.3896968364715576,
106
+ "learning_rate": 2.9986588243108745e-05,
107
+ "loss": 1.0748,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.205761316872428,
112
+ "grad_norm": 0.3835393190383911,
113
+ "learning_rate": 2.997530083278163e-05,
114
+ "loss": 1.0911,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.2194787379972565,
119
+ "grad_norm": 0.3998050093650818,
120
+ "learning_rate": 2.996059724537237e-05,
121
+ "loss": 1.0702,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.23319615912208505,
126
+ "grad_norm": 0.4182651937007904,
127
+ "learning_rate": 2.9942480835074575e-05,
128
+ "loss": 1.136,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.24691358024691357,
133
+ "grad_norm": 0.3868694603443146,
134
+ "learning_rate": 2.9920955734617622e-05,
135
+ "loss": 1.0517,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.2606310013717421,
140
+ "grad_norm": 0.41545096039772034,
141
+ "learning_rate": 2.9896026854323896e-05,
142
+ "loss": 1.0053,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.27434842249657065,
147
+ "grad_norm": 0.4710679054260254,
148
+ "learning_rate": 2.986769988098864e-05,
149
+ "loss": 1.0253,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.2880658436213992,
154
+ "grad_norm": 0.48391249775886536,
155
+ "learning_rate": 2.9835981276582676e-05,
156
+ "loss": 1.0411,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.3017832647462277,
161
+ "grad_norm": 0.5029139518737793,
162
+ "learning_rate": 2.9800878276778313e-05,
163
+ "loss": 0.94,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.31550068587105623,
168
+ "grad_norm": 0.49302148818969727,
169
+ "learning_rate": 2.976239888929872e-05,
170
+ "loss": 1.0161,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.3292181069958848,
175
+ "grad_norm": 0.5704795122146606,
176
+ "learning_rate": 2.97205518920912e-05,
177
+ "loss": 1.0147,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.3429355281207133,
182
+ "grad_norm": 0.5088088512420654,
183
+ "learning_rate": 2.9675346831324778e-05,
184
+ "loss": 0.9711,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.35665294924554186,
189
+ "grad_norm": 0.534210741519928,
190
+ "learning_rate": 2.962679401921249e-05,
191
+ "loss": 0.913,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.37037037037037035,
196
+ "grad_norm": 0.5042473077774048,
197
+ "learning_rate": 2.9574904531658977e-05,
198
+ "loss": 1.01,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.3840877914951989,
203
+ "grad_norm": 0.5204794406890869,
204
+ "learning_rate": 2.9519690205733844e-05,
205
+ "loss": 0.9121,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.39780521262002744,
210
+ "grad_norm": 0.510765790939331,
211
+ "learning_rate": 2.9461163636971352e-05,
212
+ "loss": 0.933,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.411522633744856,
217
+ "grad_norm": 0.5383373498916626,
218
+ "learning_rate": 2.9399338176497145e-05,
219
+ "loss": 0.889,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.4252400548696845,
224
+ "grad_norm": 0.5727680921554565,
225
+ "learning_rate": 2.9334227927982563e-05,
226
+ "loss": 0.8609,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.438957475994513,
231
+ "grad_norm": 0.542536199092865,
232
+ "learning_rate": 2.9265847744427305e-05,
233
+ "loss": 0.9212,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.45267489711934156,
238
+ "grad_norm": 0.5726959109306335,
239
+ "learning_rate": 2.9194213224771155e-05,
240
+ "loss": 0.8392,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.4663923182441701,
245
+ "grad_norm": 0.5851187705993652,
246
+ "learning_rate": 2.9119340710335535e-05,
247
+ "loss": 0.8463,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.48010973936899864,
252
+ "grad_norm": 0.5985710620880127,
253
+ "learning_rate": 2.9041247281095725e-05,
254
+ "loss": 0.8925,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.49382716049382713,
259
+ "grad_norm": 0.6218758225440979,
260
+ "learning_rate": 2.8959950751784533e-05,
261
+ "loss": 0.8125,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5075445816186557,
266
+ "grad_norm": 0.661232590675354,
267
+ "learning_rate": 2.8875469667828426e-05,
268
+ "loss": 0.8103,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.5212620027434842,
273
+ "grad_norm": 0.6368886828422546,
274
+ "learning_rate": 2.87878233011169e-05,
275
+ "loss": 0.827,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.5349794238683128,
280
+ "grad_norm": 0.6714680194854736,
281
+ "learning_rate": 2.8697031645606183e-05,
282
+ "loss": 0.8288,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.5486968449931413,
287
+ "grad_norm": 0.6813381314277649,
288
+ "learning_rate": 2.860311541275818e-05,
289
+ "loss": 0.8088,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.5624142661179699,
294
+ "grad_norm": 0.7461832165718079,
295
+ "learning_rate": 2.8506096026815783e-05,
296
+ "loss": 0.8205,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.5761316872427984,
301
+ "grad_norm": 0.6457212567329407,
302
+ "learning_rate": 2.8405995619915528e-05,
303
+ "loss": 0.8314,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.5898491083676269,
308
+ "grad_norm": 0.7194303870201111,
309
+ "learning_rate": 2.8302837027038814e-05,
310
+ "loss": 0.7881,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.6035665294924554,
315
+ "grad_norm": 0.7200083136558533,
316
+ "learning_rate": 2.8196643780802768e-05,
317
+ "loss": 0.8154,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.6172839506172839,
322
+ "grad_norm": 0.69374680519104,
323
+ "learning_rate": 2.808744010609196e-05,
324
+ "loss": 0.7565,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.6310013717421125,
329
+ "grad_norm": 0.7076025605201721,
330
+ "learning_rate": 2.79752509145322e-05,
331
+ "loss": 0.7397,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.644718792866941,
336
+ "grad_norm": 0.6978985071182251,
337
+ "learning_rate": 2.7860101798807693e-05,
338
+ "loss": 0.7728,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.6584362139917695,
343
+ "grad_norm": 0.758421778678894,
344
+ "learning_rate": 2.7742019026822818e-05,
345
+ "loss": 0.776,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.6721536351165981,
350
+ "grad_norm": 0.7375482320785522,
351
+ "learning_rate": 2.762102953570984e-05,
352
+ "loss": 0.7629,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.6858710562414266,
357
+ "grad_norm": 0.6563310623168945,
358
+ "learning_rate": 2.749716092568404e-05,
359
+ "loss": 0.7426,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.6995884773662552,
364
+ "grad_norm": 0.792753279209137,
365
+ "learning_rate": 2.737044145374749e-05,
366
+ "loss": 0.7458,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.7133058984910837,
371
+ "grad_norm": 0.7958997488021851,
372
+ "learning_rate": 2.7240900027243072e-05,
373
+ "loss": 0.7465,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.7270233196159122,
378
+ "grad_norm": 0.8392963409423828,
379
+ "learning_rate": 2.7108566197260103e-05,
380
+ "loss": 0.6873,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.7407407407407407,
385
+ "grad_norm": 0.7651315927505493,
386
+ "learning_rate": 2.697347015189311e-05,
387
+ "loss": 0.7016,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.7544581618655692,
392
+ "grad_norm": 0.7778927683830261,
393
+ "learning_rate": 2.683564270935531e-05,
394
+ "loss": 0.6612,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.7681755829903978,
399
+ "grad_norm": 0.8361443281173706,
400
+ "learning_rate": 2.6695115310948335e-05,
401
+ "loss": 0.6759,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.7818930041152263,
406
+ "grad_norm": 0.8205651640892029,
407
+ "learning_rate": 2.655192001388982e-05,
408
+ "loss": 0.6457,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.7956104252400549,
413
+ "grad_norm": 0.7632591724395752,
414
+ "learning_rate": 2.6406089484000465e-05,
415
+ "loss": 0.7204,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.8093278463648834,
420
+ "grad_norm": 0.8065452575683594,
421
+ "learning_rate": 2.6257656988252314e-05,
422
+ "loss": 0.6296,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.823045267489712,
427
+ "grad_norm": 0.8871366381645203,
428
+ "learning_rate": 2.6106656387179853e-05,
429
+ "loss": 0.6288,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.8367626886145405,
434
+ "grad_norm": 0.7919726967811584,
435
+ "learning_rate": 2.5953122127155703e-05,
436
+ "loss": 0.6996,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.850480109739369,
441
+ "grad_norm": 0.7500154376029968,
442
+ "learning_rate": 2.5797089232532727e-05,
443
+ "loss": 0.6738,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.8641975308641975,
448
+ "grad_norm": 0.8016030192375183,
449
+ "learning_rate": 2.5638593297654208e-05,
450
+ "loss": 0.6557,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.877914951989026,
455
+ "grad_norm": 0.8199147582054138,
456
+ "learning_rate": 2.547767047873406e-05,
457
+ "loss": 0.6848,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.8916323731138546,
462
+ "grad_norm": 0.8543243408203125,
463
+ "learning_rate": 2.5314357485608832e-05,
464
+ "loss": 0.6676,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.9053497942386831,
469
+ "grad_norm": 0.8435254096984863,
470
+ "learning_rate": 2.514869157336347e-05,
471
+ "loss": 0.6253,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.9190672153635117,
476
+ "grad_norm": 0.8155385851860046,
477
+ "learning_rate": 2.49807105338326e-05,
478
+ "loss": 0.6156,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.9327846364883402,
483
+ "grad_norm": 0.8313052654266357,
484
+ "learning_rate": 2.481045268697947e-05,
485
+ "loss": 0.5689,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.9465020576131687,
490
+ "grad_norm": 0.8453279733657837,
491
+ "learning_rate": 2.4637956872154342e-05,
492
+ "loss": 0.6183,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.9602194787379973,
497
+ "grad_norm": 0.8089984655380249,
498
+ "learning_rate": 2.446326243923446e-05,
499
+ "loss": 0.5591,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.9739368998628258,
504
+ "grad_norm": 0.9062568545341492,
505
+ "learning_rate": 2.4286409239647515e-05,
506
+ "loss": 0.6174,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.9876543209876543,
511
+ "grad_norm": 0.9152640700340271,
512
+ "learning_rate": 2.410743761728067e-05,
513
+ "loss": 0.5664,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.0,
518
+ "grad_norm": 1.2532458305358887,
519
+ "learning_rate": 2.3926388399277344e-05,
520
+ "loss": 0.5643,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.0137174211248285,
525
+ "grad_norm": 1.107286810874939,
526
+ "learning_rate": 2.3743302886723657e-05,
527
+ "loss": 0.5225,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.027434842249657,
532
+ "grad_norm": 0.956028938293457,
533
+ "learning_rate": 2.3558222845226783e-05,
534
+ "loss": 0.5159,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.0411522633744856,
539
+ "grad_norm": 0.9799565672874451,
540
+ "learning_rate": 2.3371190495387375e-05,
541
+ "loss": 0.4982,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.0548696844993142,
546
+ "grad_norm": 0.8768431544303894,
547
+ "learning_rate": 2.3182248503168173e-05,
548
+ "loss": 0.5439,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.0685871056241427,
553
+ "grad_norm": 0.8403708934783936,
554
+ "learning_rate": 2.2991439970160965e-05,
555
+ "loss": 0.4915,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.0823045267489713,
560
+ "grad_norm": 0.9563457369804382,
561
+ "learning_rate": 2.2798808423754288e-05,
562
+ "loss": 0.5344,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.0960219478737998,
567
+ "grad_norm": 0.994430661201477,
568
+ "learning_rate": 2.2604397807203857e-05,
569
+ "loss": 0.4886,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.1097393689986284,
574
+ "grad_norm": 1.0950026512145996,
575
+ "learning_rate": 2.2408252469608255e-05,
576
+ "loss": 0.5039,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.123456790123457,
581
+ "grad_norm": 0.8684844374656677,
582
+ "learning_rate": 2.2210417155791934e-05,
583
+ "loss": 0.5414,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.1371742112482854,
588
+ "grad_norm": 0.8997437953948975,
589
+ "learning_rate": 2.2010936996098042e-05,
590
+ "loss": 0.4471,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.1508916323731138,
595
+ "grad_norm": 1.0063364505767822,
596
+ "learning_rate": 2.1809857496093203e-05,
597
+ "loss": 0.456,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.1646090534979423,
602
+ "grad_norm": 0.9689503312110901,
603
+ "learning_rate": 2.160722452618678e-05,
604
+ "loss": 0.5293,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.1783264746227708,
609
+ "grad_norm": 0.9166932702064514,
610
+ "learning_rate": 2.1403084311166896e-05,
611
+ "loss": 0.4858,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.1920438957475994,
616
+ "grad_norm": 0.9573662281036377,
617
+ "learning_rate": 2.1197483419655564e-05,
618
+ "loss": 0.5091,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.205761316872428,
623
+ "grad_norm": 0.8931414484977722,
624
+ "learning_rate": 2.099046875348543e-05,
625
+ "loss": 0.4717,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.2194787379972565,
630
+ "grad_norm": 0.9017981886863708,
631
+ "learning_rate": 2.0782087537000525e-05,
632
+ "loss": 0.4776,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.233196159122085,
637
+ "grad_norm": 0.9682060480117798,
638
+ "learning_rate": 2.0572387306283357e-05,
639
+ "loss": 0.458,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.2469135802469136,
644
+ "grad_norm": 0.9869005084037781,
645
+ "learning_rate": 2.036141589831098e-05,
646
+ "loss": 0.52,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.260631001371742,
651
+ "grad_norm": 1.0599266290664673,
652
+ "learning_rate": 2.0149221440042375e-05,
653
+ "loss": 0.4583,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.2743484224965707,
658
+ "grad_norm": 0.8293225765228271,
659
+ "learning_rate": 1.993585233743969e-05,
660
+ "loss": 0.4339,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.2880658436213992,
665
+ "grad_norm": 1.0139296054840088,
666
+ "learning_rate": 1.9721357264425844e-05,
667
+ "loss": 0.4546,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.3017832647462277,
672
+ "grad_norm": 0.9689605236053467,
673
+ "learning_rate": 1.9505785151780973e-05,
674
+ "loss": 0.4263,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.3155006858710563,
679
+ "grad_norm": 0.9394211769104004,
680
+ "learning_rate": 1.9289185175980338e-05,
681
+ "loss": 0.4735,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.3292181069958848,
686
+ "grad_norm": 1.0727108716964722,
687
+ "learning_rate": 1.9071606747976112e-05,
688
+ "loss": 0.3985,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.3429355281207134,
693
+ "grad_norm": 0.8843740224838257,
694
+ "learning_rate": 1.8853099501925742e-05,
695
+ "loss": 0.4251,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.356652949245542,
700
+ "grad_norm": 0.9701921939849854,
701
+ "learning_rate": 1.863371328386936e-05,
702
+ "loss": 0.4775,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.3703703703703702,
707
+ "grad_norm": 0.9475935101509094,
708
+ "learning_rate": 1.841349814035885e-05,
709
+ "loss": 0.4255,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.3840877914951988,
714
+ "grad_norm": 0.9424192309379578,
715
+ "learning_rate": 1.8192504307041224e-05,
716
+ "loss": 0.4175,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.3978052126200273,
721
+ "grad_norm": 0.92666095495224,
722
+ "learning_rate": 1.7970782197198796e-05,
723
+ "loss": 0.4293,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.4115226337448559,
728
+ "grad_norm": 1.0038453340530396,
729
+ "learning_rate": 1.774838239024888e-05,
730
+ "loss": 0.3889,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.4252400548696844,
735
+ "grad_norm": 1.072291612625122,
736
+ "learning_rate": 1.7525355620205574e-05,
737
+ "loss": 0.4388,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.438957475994513,
742
+ "grad_norm": 0.9682796001434326,
743
+ "learning_rate": 1.730175276410629e-05,
744
+ "loss": 0.4271,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.4526748971193415,
749
+ "grad_norm": 0.9968134164810181,
750
+ "learning_rate": 1.7077624830405602e-05,
751
+ "loss": 0.4449,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.46639231824417,
756
+ "grad_norm": 0.944649875164032,
757
+ "learning_rate": 1.685302294733921e-05,
758
+ "loss": 0.4337,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.4801097393689986,
763
+ "grad_norm": 0.949520468711853,
764
+ "learning_rate": 1.6627998351260496e-05,
765
+ "loss": 0.4223,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.4938271604938271,
770
+ "grad_norm": 0.9722627997398376,
771
+ "learning_rate": 1.640260237495247e-05,
772
+ "loss": 0.4536,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.5075445816186557,
777
+ "grad_norm": 1.1368709802627563,
778
+ "learning_rate": 1.6176886435917676e-05,
779
+ "loss": 0.3889,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.5212620027434842,
784
+ "grad_norm": 0.9086707234382629,
785
+ "learning_rate": 1.5950902024648793e-05,
786
+ "loss": 0.3921,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.5349794238683128,
791
+ "grad_norm": 1.1461021900177002,
792
+ "learning_rate": 1.5724700692882606e-05,
793
+ "loss": 0.3492,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.5486968449931413,
798
+ "grad_norm": 1.0213220119476318,
799
+ "learning_rate": 1.549833404183996e-05,
800
+ "loss": 0.396,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.5624142661179699,
805
+ "grad_norm": 0.9958617687225342,
806
+ "learning_rate": 1.527185371045446e-05,
807
+ "loss": 0.4026,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.5761316872427984,
812
+ "grad_norm": 1.0077898502349854,
813
+ "learning_rate": 1.5045311363592562e-05,
814
+ "loss": 0.4052,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.589849108367627,
819
+ "grad_norm": 1.0151335000991821,
820
+ "learning_rate": 1.481875868026774e-05,
821
+ "loss": 0.3579,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.6035665294924555,
826
+ "grad_norm": 0.9512467980384827,
827
+ "learning_rate": 1.4592247341851426e-05,
828
+ "loss": 0.3699,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.617283950617284,
833
+ "grad_norm": 1.1125658750534058,
834
+ "learning_rate": 1.436582902028342e-05,
835
+ "loss": 0.3692,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.6310013717421126,
840
+ "grad_norm": 0.9458398818969727,
841
+ "learning_rate": 1.4139555366284447e-05,
842
+ "loss": 0.4035,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.6447187928669411,
847
+ "grad_norm": 0.9057902097702026,
848
+ "learning_rate": 1.3913477997573565e-05,
849
+ "loss": 0.3908,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.6584362139917697,
854
+ "grad_norm": 1.0327421426773071,
855
+ "learning_rate": 1.3687648487093068e-05,
856
+ "loss": 0.3592,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.6721536351165982,
861
+ "grad_norm": 1.0575224161148071,
862
+ "learning_rate": 1.3462118351243652e-05,
863
+ "loss": 0.3925,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.6858710562414267,
868
+ "grad_norm": 1.074633002281189,
869
+ "learning_rate": 1.3236939038132438e-05,
870
+ "loss": 0.4321,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.6995884773662553,
875
+ "grad_norm": 0.9927712678909302,
876
+ "learning_rate": 1.301216191583659e-05,
877
+ "loss": 0.328,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.7133058984910838,
882
+ "grad_norm": 1.0187026262283325,
883
+ "learning_rate": 1.2787838260685207e-05,
884
+ "loss": 0.3617,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.7270233196159122,
889
+ "grad_norm": 1.0585708618164062,
890
+ "learning_rate": 1.256401924556211e-05,
891
+ "loss": 0.3859,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.7407407407407407,
896
+ "grad_norm": 1.1495975255966187,
897
+ "learning_rate": 1.2340755928232249e-05,
898
+ "loss": 0.3519,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.7544581618655692,
903
+ "grad_norm": 1.0765626430511475,
904
+ "learning_rate": 1.2118099239694373e-05,
905
+ "loss": 0.3535,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.7681755829903978,
910
+ "grad_norm": 0.929316520690918,
911
+ "learning_rate": 1.1896099972562607e-05,
912
+ "loss": 0.3702,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.7818930041152263,
917
+ "grad_norm": 1.0712732076644897,
918
+ "learning_rate": 1.1674808769479596e-05,
919
+ "loss": 0.329,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.7956104252400549,
924
+ "grad_norm": 1.0400203466415405,
925
+ "learning_rate": 1.1454276111563876e-05,
926
+ "loss": 0.3618,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.8093278463648834,
931
+ "grad_norm": 0.9378494024276733,
932
+ "learning_rate": 1.1234552306894075e-05,
933
+ "loss": 0.3342,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.823045267489712,
938
+ "grad_norm": 0.9590099453926086,
939
+ "learning_rate": 1.1015687479032615e-05,
940
+ "loss": 0.3684,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.8367626886145405,
945
+ "grad_norm": 0.9713229537010193,
946
+ "learning_rate": 1.0797731555591448e-05,
947
+ "loss": 0.3584,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.850480109739369,
952
+ "grad_norm": 0.9658066034317017,
953
+ "learning_rate": 1.0580734256842577e-05,
954
+ "loss": 0.3256,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.8641975308641974,
959
+ "grad_norm": 1.0665819644927979,
960
+ "learning_rate": 1.036474508437579e-05,
961
+ "loss": 0.3235,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.877914951989026,
966
+ "grad_norm": 0.9527893662452698,
967
+ "learning_rate": 1.0149813309806345e-05,
968
+ "loss": 0.3634,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.8916323731138545,
973
+ "grad_norm": 1.090286374092102,
974
+ "learning_rate": 9.935987963535077e-06,
975
+ "loss": 0.3175,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.905349794238683,
980
+ "grad_norm": 0.9725489020347595,
981
+ "learning_rate": 9.723317823563562e-06,
982
+ "loss": 0.3969,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.9190672153635115,
987
+ "grad_norm": 1.1476311683654785,
988
+ "learning_rate": 9.511851404366818e-06,
989
+ "loss": 0.3407,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.93278463648834,
994
+ "grad_norm": 0.8596852421760559,
995
+ "learning_rate": 9.301636945826163e-06,
996
+ "loss": 0.2975,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 1.9465020576131686,
1001
+ "grad_norm": 1.0431839227676392,
1002
+ "learning_rate": 9.092722402224705e-06,
1003
+ "loss": 0.3311,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 1.9602194787379972,
1008
+ "grad_norm": 1.2009830474853516,
1009
+ "learning_rate": 8.885155431307938e-06,
1010
+ "loss": 0.3098,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 1.9739368998628257,
1015
+ "grad_norm": 1.0051283836364746,
1016
+ "learning_rate": 8.678983383412067e-06,
1017
+ "loss": 0.3255,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 1.9876543209876543,
1022
+ "grad_norm": 0.986889660358429,
1023
+ "learning_rate": 8.47425329066237e-06,
1024
+ "loss": 0.3119,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.0,
1029
+ "grad_norm": 1.4370043277740479,
1030
+ "learning_rate": 8.271011856244232e-06,
1031
+ "loss": 0.281,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.0137174211248285,
1036
+ "grad_norm": 1.057409644126892,
1037
+ "learning_rate": 8.069305443749158e-06,
1038
+ "loss": 0.2804,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.027434842249657,
1043
+ "grad_norm": 1.1250669956207275,
1044
+ "learning_rate": 7.869180066598258e-06,
1045
+ "loss": 0.2781,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.0411522633744856,
1050
+ "grad_norm": 1.0327444076538086,
1051
+ "learning_rate": 7.67068137754568e-06,
1052
+ "loss": 0.2454,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.054869684499314,
1057
+ "grad_norm": 0.9646955728530884,
1058
+ "learning_rate": 7.47385465826421e-06,
1059
+ "loss": 0.269,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.0685871056241427,
1064
+ "grad_norm": 1.0620466470718384,
1065
+ "learning_rate": 7.278744809015629e-06,
1066
+ "loss": 0.255,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.0823045267489713,
1071
+ "grad_norm": 1.2195289134979248,
1072
+ "learning_rate": 7.085396338408007e-06,
1073
+ "loss": 0.2654,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.0960219478738,
1078
+ "grad_norm": 0.9989861249923706,
1079
+ "learning_rate": 6.893853353242378e-06,
1080
+ "loss": 0.2678,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.1097393689986284,
1085
+ "grad_norm": 0.8964051604270935,
1086
+ "learning_rate": 6.704159548451039e-06,
1087
+ "loss": 0.2376,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.123456790123457,
1092
+ "grad_norm": 1.1280827522277832,
1093
+ "learning_rate": 6.516358197129864e-06,
1094
+ "loss": 0.26,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.1371742112482854,
1099
+ "grad_norm": 1.1098802089691162,
1100
+ "learning_rate": 6.330492140666776e-06,
1101
+ "loss": 0.2668,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.150891632373114,
1106
+ "grad_norm": 0.9676617383956909,
1107
+ "learning_rate": 6.146603778968776e-06,
1108
+ "loss": 0.2561,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.1646090534979425,
1113
+ "grad_norm": 1.0433140993118286,
1114
+ "learning_rate": 5.964735060789591e-06,
1115
+ "loss": 0.2768,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.178326474622771,
1120
+ "grad_norm": 1.0165446996688843,
1121
+ "learning_rate": 5.7849274741603635e-06,
1122
+ "loss": 0.2838,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.1920438957475996,
1127
+ "grad_norm": 0.9863305687904358,
1128
+ "learning_rate": 5.607222036925295e-06,
1129
+ "loss": 0.2647,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.205761316872428,
1134
+ "grad_norm": 0.9141923785209656,
1135
+ "learning_rate": 5.431659287384682e-06,
1136
+ "loss": 0.2592,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.2194787379972567,
1141
+ "grad_norm": 1.0824416875839233,
1142
+ "learning_rate": 5.258279275047247e-06,
1143
+ "loss": 0.2606,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.2331961591220852,
1148
+ "grad_norm": 1.013136863708496,
1149
+ "learning_rate": 5.08712155149405e-06,
1150
+ "loss": 0.264,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.246913580246914,
1155
+ "grad_norm": 1.0065057277679443,
1156
+ "learning_rate": 4.918225161355908e-06,
1157
+ "loss": 0.2314,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.260631001371742,
1162
+ "grad_norm": 1.0977758169174194,
1163
+ "learning_rate": 4.751628633406569e-06,
1164
+ "loss": 0.2322,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.274348422496571,
1169
+ "grad_norm": 0.9866920709609985,
1170
+ "learning_rate": 4.587369971773419e-06,
1171
+ "loss": 0.2395,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.288065843621399,
1176
+ "grad_norm": 1.0764834880828857,
1177
+ "learning_rate": 4.425486647268019e-06,
1178
+ "loss": 0.2754,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.3017832647462275,
1183
+ "grad_norm": 0.9970492720603943,
1184
+ "learning_rate": 4.266015588838185e-06,
1185
+ "loss": 0.2604,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.315500685871056,
1190
+ "grad_norm": 1.199155330657959,
1191
+ "learning_rate": 4.108993175143772e-06,
1192
+ "loss": 0.252,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.3292181069958846,
1197
+ "grad_norm": 1.1609810590744019,
1198
+ "learning_rate": 3.954455226257909e-06,
1199
+ "loss": 0.2565,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.342935528120713,
1204
+ "grad_norm": 0.9952213168144226,
1205
+ "learning_rate": 3.8024369954957174e-06,
1206
+ "loss": 0.2286,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.3566529492455417,
1211
+ "grad_norm": 0.9645949006080627,
1212
+ "learning_rate": 3.6529731613722955e-06,
1213
+ "loss": 0.2518,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.3703703703703702,
1218
+ "grad_norm": 0.8817917704582214,
1219
+ "learning_rate": 3.5060978196918303e-06,
1220
+ "loss": 0.237,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.384087791495199,
1225
+ "grad_norm": 1.1733688116073608,
1226
+ "learning_rate": 3.3618444757696152e-06,
1227
+ "loss": 0.292,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.3978052126200273,
1232
+ "grad_norm": 0.9009637832641602,
1233
+ "learning_rate": 3.2202460367888293e-06,
1234
+ "loss": 0.2713,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.411522633744856,
1239
+ "grad_norm": 1.1742184162139893,
1240
+ "learning_rate": 3.081334804293688e-06,
1241
+ "loss": 0.2362,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.4252400548696844,
1246
+ "grad_norm": 1.013698935508728,
1247
+ "learning_rate": 2.9451424668208195e-06,
1248
+ "loss": 0.2847,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.438957475994513,
1253
+ "grad_norm": 1.0418685674667358,
1254
+ "learning_rate": 2.8117000926704363e-06,
1255
+ "loss": 0.2095,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.4526748971193415,
1260
+ "grad_norm": 1.0569798946380615,
1261
+ "learning_rate": 2.6810381228190163e-06,
1262
+ "loss": 0.2389,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.46639231824417,
1267
+ "grad_norm": 1.0391570329666138,
1268
+ "learning_rate": 2.553186363975074e-06,
1269
+ "loss": 0.2446,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.4801097393689986,
1274
+ "grad_norm": 0.97417813539505,
1275
+ "learning_rate": 2.4281739817796488e-06,
1276
+ "loss": 0.2754,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.493827160493827,
1281
+ "grad_norm": 1.0047510862350464,
1282
+ "learning_rate": 2.306029494152996e-06,
1283
+ "loss": 0.244,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.5075445816186557,
1288
+ "grad_norm": 1.0940197706222534,
1289
+ "learning_rate": 2.1867807647890803e-06,
1290
+ "loss": 0.2473,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.521262002743484,
1295
+ "grad_norm": 0.9839754104614258,
1296
+ "learning_rate": 2.070454996799261e-06,
1297
+ "loss": 0.2167,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.5349794238683128,
1302
+ "grad_norm": 0.9579572677612305,
1303
+ "learning_rate": 1.957078726506733e-06,
1304
+ "loss": 0.2748,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.5486968449931413,
1309
+ "grad_norm": 1.0771347284317017,
1310
+ "learning_rate": 1.8466778173930016e-06,
1311
+ "loss": 0.2283,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.56241426611797,
1316
+ "grad_norm": 0.9137755632400513,
1317
+ "learning_rate": 1.7392774541979151e-06,
1318
+ "loss": 0.1989,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.5761316872427984,
1323
+ "grad_norm": 1.064967155456543,
1324
+ "learning_rate": 1.6349021371744833e-06,
1325
+ "loss": 0.2226,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.589849108367627,
1330
+ "grad_norm": 1.1061336994171143,
1331
+ "learning_rate": 1.533575676499876e-06,
1332
+ "loss": 0.2233,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.6035665294924555,
1337
+ "grad_norm": 0.9804483652114868,
1338
+ "learning_rate": 1.4353211868438115e-06,
1339
+ "loss": 0.2316,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.617283950617284,
1344
+ "grad_norm": 0.98353511095047,
1345
+ "learning_rate": 1.340161082095646e-06,
1346
+ "loss": 0.2227,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.6310013717421126,
1351
+ "grad_norm": 1.0998910665512085,
1352
+ "learning_rate": 1.248117070251264e-06,
1353
+ "loss": 0.2519,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.644718792866941,
1358
+ "grad_norm": 1.0841447114944458,
1359
+ "learning_rate": 1.159210148461065e-06,
1360
+ "loss": 0.2118,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.6584362139917697,
1365
+ "grad_norm": 0.9606541395187378,
1366
+ "learning_rate": 1.0734605982400603e-06,
1367
+ "loss": 0.2111,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.672153635116598,
1372
+ "grad_norm": 1.0418294668197632,
1373
+ "learning_rate": 9.908879808412485e-07,
1374
+ "loss": 0.2942,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.6858710562414267,
1379
+ "grad_norm": 1.0719671249389648,
1380
+ "learning_rate": 9.115111327932718e-07,
1381
+ "loss": 0.2175,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.6995884773662553,
1386
+ "grad_norm": 0.981621265411377,
1387
+ "learning_rate": 8.353481616034369e-07,
1388
+ "loss": 0.2613,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.713305898491084,
1393
+ "grad_norm": 1.18305504322052,
1394
+ "learning_rate": 7.624164416269935e-07,
1395
+ "loss": 0.2357,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.7270233196159124,
1400
+ "grad_norm": 1.00554621219635,
1401
+ "learning_rate": 6.927326101037007e-07,
1402
+ "loss": 0.2671,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.7407407407407405,
1407
+ "grad_norm": 1.073001742362976,
1408
+ "learning_rate": 6.263125633625067e-07,
1409
+ "loss": 0.1962,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.7544581618655695,
1414
+ "grad_norm": 1.155756950378418,
1415
+ "learning_rate": 5.631714531952925e-07,
1416
+ "loss": 0.2379,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.7681755829903976,
1421
+ "grad_norm": 0.8633406162261963,
1422
+ "learning_rate": 5.033236834004057e-07,
1423
+ "loss": 0.2273,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.7818930041152266,
1428
+ "grad_norm": 0.9453356266021729,
1429
+ "learning_rate": 4.467829064968815e-07,
1430
+ "loss": 0.2475,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.7956104252400547,
1435
+ "grad_norm": 1.0707476139068604,
1436
+ "learning_rate": 3.9356202060999767e-07,
1437
+ "loss": 0.209,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.8093278463648836,
1442
+ "grad_norm": 0.9674614071846008,
1443
+ "learning_rate": 3.4367316652895996e-07,
1444
+ "loss": 0.2232,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.8230452674897117,
1449
+ "grad_norm": 1.1861839294433594,
1450
+ "learning_rate": 2.9712772493732387e-07,
1451
+ "loss": 0.2064,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.8367626886145407,
1456
+ "grad_norm": 0.9691592454910278,
1457
+ "learning_rate": 2.5393631381683493e-07,
1458
+ "loss": 0.2669,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.850480109739369,
1463
+ "grad_norm": 0.9858601689338684,
1464
+ "learning_rate": 2.1410878602523776e-07,
1465
+ "loss": 0.2328,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.8641975308641974,
1470
+ "grad_norm": 0.9588889479637146,
1471
+ "learning_rate": 1.7765422704864088e-07,
1472
+ "loss": 0.2335,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.877914951989026,
1477
+ "grad_norm": 0.9827353954315186,
1478
+ "learning_rate": 1.4458095292892436e-07,
1479
+ "loss": 0.2344,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.8916323731138545,
1484
+ "grad_norm": 0.96021568775177,
1485
+ "learning_rate": 1.1489650836668419e-07,
1486
+ "loss": 0.2168,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.905349794238683,
1491
+ "grad_norm": 1.048067331314087,
1492
+ "learning_rate": 8.860766500012218e-08,
1493
+ "loss": 0.2404,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 2.9190672153635115,
1498
+ "grad_norm": 0.9892206192016602,
1499
+ "learning_rate": 6.572041986029842e-08,
1500
+ "loss": 0.2222,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 2.93278463648834,
1505
+ "grad_norm": 0.9867884516716003,
1506
+ "learning_rate": 4.623999400308054e-08,
1507
+ "loss": 0.2223,
1508
+ "step": 1070
1509
+ },
1510
+ {
1511
+ "epoch": 2.9465020576131686,
1512
+ "grad_norm": 1.0633527040481567,
1513
+ "learning_rate": 3.0170831318119815e-08,
1514
+ "loss": 0.2487,
1515
+ "step": 1075
1516
+ },
1517
+ {
1518
+ "epoch": 2.960219478737997,
1519
+ "grad_norm": 0.97935950756073,
1520
+ "learning_rate": 1.7516597515100374e-08,
1521
+ "loss": 0.2496,
1522
+ "step": 1080
1523
+ },
1524
+ {
1525
+ "epoch": 2.9739368998628257,
1526
+ "grad_norm": 0.9585884809494019,
1527
+ "learning_rate": 8.280179287519785e-09,
1528
+ "loss": 0.2247,
1529
+ "step": 1085
1530
+ },
1531
+ {
1532
+ "epoch": 2.9876543209876543,
1533
+ "grad_norm": 0.981431245803833,
1534
+ "learning_rate": 2.463683654167492e-09,
1535
+ "loss": 0.2549,
1536
+ "step": 1090
1537
+ },
1538
+ {
1539
+ "epoch": 3.0,
1540
+ "grad_norm": 1.2818795442581177,
1541
+ "learning_rate": 6.843747847762316e-11,
1542
+ "loss": 0.2225,
1543
+ "step": 1095
1544
+ },
1545
+ {
1546
+ "epoch": 3.0,
1547
+ "step": 1095,
1548
+ "total_flos": 1.681814355403866e+18,
1549
+ "train_loss": 0.5136630487768618,
1550
+ "train_runtime": 798.9244,
1551
+ "train_samples_per_second": 43.776,
1552
+ "train_steps_per_second": 1.371
1553
+ }
1554
+ ],
1555
+ "logging_steps": 5,
1556
+ "max_steps": 1095,
1557
+ "num_input_tokens_seen": 0,
1558
+ "num_train_epochs": 3,
1559
+ "save_steps": 20000,
1560
+ "stateful_callbacks": {
1561
+ "TrainerControl": {
1562
+ "args": {
1563
+ "should_epoch_stop": false,
1564
+ "should_evaluate": false,
1565
+ "should_log": false,
1566
+ "should_save": false,
1567
+ "should_training_stop": false
1568
+ },
1569
+ "attributes": {}
1570
+ }
1571
+ },
1572
+ "total_flos": 1.681814355403866e+18,
1573
+ "train_batch_size": 2,
1574
+ "trial_name": null,
1575
+ "trial_params": null
1576
+ }
21_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9afb5b0eed9286ec6f35c8c379c43c04f39c0ab576cbaa015d13a1d36683df7b
3
+ size 8209
21_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff