RayDu0010 commited on
Commit
8ff9d9f
·
verified ·
1 Parent(s): 90a562d

Upload folder using huggingface_hub

Browse files
27_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
+ "o_proj",
29
+ "down_proj",
30
+ "gate_proj",
31
+ "q_proj",
32
+ "up_proj",
33
+ "k_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
27_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ab0289c1d97e3955fcca8e86230929ad72be0eb7da287917d5f8d495bbc2f78
3
+ size 791751704
27_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
+ }
27_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5985427869765468e+18,
4
+ "train_loss": 0.5499852971898185,
5
+ "train_runtime": 792.1755,
6
+ "train_samples": 11517,
7
+ "train_samples_per_second": 43.615,
8
+ "train_steps_per_second": 1.363
9
+ }
27_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 %}
27_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
+ }
27_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
27_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
+ }
27_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
27_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
+ }
27_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5985427869765468e+18,
4
+ "train_loss": 0.5499852971898185,
5
+ "train_runtime": 792.1755,
6
+ "train_samples": 11517,
7
+ "train_samples_per_second": 43.615,
8
+ "train_steps_per_second": 1.363
9
+ }
27_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1555 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1080,
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.013888888888888888,
14
+ "grad_norm": 3.2211008071899414,
15
+ "learning_rate": 2.222222222222222e-06,
16
+ "loss": 1.4919,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.027777777777777776,
21
+ "grad_norm": 2.112604856491089,
22
+ "learning_rate": 4.9999999999999996e-06,
23
+ "loss": 1.449,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.041666666666666664,
28
+ "grad_norm": 0.774435818195343,
29
+ "learning_rate": 7.777777777777777e-06,
30
+ "loss": 1.3416,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.05555555555555555,
35
+ "grad_norm": 0.49576497077941895,
36
+ "learning_rate": 1.0555555555555555e-05,
37
+ "loss": 1.3337,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.06944444444444445,
42
+ "grad_norm": 0.5466096997261047,
43
+ "learning_rate": 1.3333333333333333e-05,
44
+ "loss": 1.3148,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.08333333333333333,
49
+ "grad_norm": 0.38828131556510925,
50
+ "learning_rate": 1.6111111111111115e-05,
51
+ "loss": 1.2929,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.09722222222222222,
56
+ "grad_norm": 0.4057466387748718,
57
+ "learning_rate": 1.888888888888889e-05,
58
+ "loss": 1.2491,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.1111111111111111,
63
+ "grad_norm": 0.38087013363838196,
64
+ "learning_rate": 2.1666666666666667e-05,
65
+ "loss": 1.2524,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.125,
70
+ "grad_norm": 0.3372047245502472,
71
+ "learning_rate": 2.4444444444444445e-05,
72
+ "loss": 1.2145,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.1388888888888889,
77
+ "grad_norm": 0.37490731477737427,
78
+ "learning_rate": 2.7222222222222223e-05,
79
+ "loss": 1.2623,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.1527777777777778,
84
+ "grad_norm": 0.3841039836406708,
85
+ "learning_rate": 3e-05,
86
+ "loss": 1.2091,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.16666666666666666,
91
+ "grad_norm": 0.3887983560562134,
92
+ "learning_rate": 2.999824208523885e-05,
93
+ "loss": 1.1803,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.18055555555555555,
98
+ "grad_norm": 0.3718923330307007,
99
+ "learning_rate": 2.9992968752990648e-05,
100
+ "loss": 1.1532,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.19444444444444445,
105
+ "grad_norm": 0.47127917408943176,
106
+ "learning_rate": 2.9984181239264532e-05,
107
+ "loss": 1.1891,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.20833333333333334,
112
+ "grad_norm": 0.4221467077732086,
113
+ "learning_rate": 2.997188160375385e-05,
114
+ "loss": 1.1654,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.2222222222222222,
119
+ "grad_norm": 0.4136931002140045,
120
+ "learning_rate": 2.9956072729353382e-05,
121
+ "loss": 1.0683,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.2361111111111111,
126
+ "grad_norm": 0.3720996677875519,
127
+ "learning_rate": 2.9936758321483616e-05,
128
+ "loss": 1.0427,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.25,
133
+ "grad_norm": 0.43978968262672424,
134
+ "learning_rate": 2.9913942907222238e-05,
135
+ "loss": 1.0969,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.2638888888888889,
140
+ "grad_norm": 0.4235962927341461,
141
+ "learning_rate": 2.9887631834243058e-05,
142
+ "loss": 1.0168,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.2777777777777778,
147
+ "grad_norm": 0.4260789752006531,
148
+ "learning_rate": 2.985783126956255e-05,
149
+ "loss": 1.0679,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.2916666666666667,
154
+ "grad_norm": 0.5100179314613342,
155
+ "learning_rate": 2.9824548198094386e-05,
156
+ "loss": 1.0315,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.3055555555555556,
161
+ "grad_norm": 0.4651437997817993,
162
+ "learning_rate": 2.9787790421012247e-05,
163
+ "loss": 1.0422,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.3194444444444444,
168
+ "grad_norm": 0.5040125846862793,
169
+ "learning_rate": 2.9747566553921326e-05,
170
+ "loss": 1.0048,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.3333333333333333,
175
+ "grad_norm": 0.4472350478172302,
176
+ "learning_rate": 2.9703886024838916e-05,
177
+ "loss": 1.0111,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.3472222222222222,
182
+ "grad_norm": 0.5227202773094177,
183
+ "learning_rate": 2.9656759071984602e-05,
184
+ "loss": 1.0351,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.3611111111111111,
189
+ "grad_norm": 0.5318294763565063,
190
+ "learning_rate": 2.960619674138052e-05,
191
+ "loss": 1.0424,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.375,
196
+ "grad_norm": 0.5562703013420105,
197
+ "learning_rate": 2.955221088426231e-05,
198
+ "loss": 0.9892,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.3888888888888889,
203
+ "grad_norm": 0.5283619165420532,
204
+ "learning_rate": 2.9494814154301328e-05,
205
+ "loss": 0.9624,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4027777777777778,
210
+ "grad_norm": 0.600264310836792,
211
+ "learning_rate": 2.9434020004638757e-05,
212
+ "loss": 0.9501,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.4166666666666667,
217
+ "grad_norm": 0.5495845675468445,
218
+ "learning_rate": 2.9369842684732334e-05,
219
+ "loss": 0.9355,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.4305555555555556,
224
+ "grad_norm": 0.6037551760673523,
225
+ "learning_rate": 2.9302297237016462e-05,
226
+ "loss": 0.9779,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.4444444444444444,
231
+ "grad_norm": 0.5766875147819519,
232
+ "learning_rate": 2.9231399493376414e-05,
233
+ "loss": 0.9252,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.4583333333333333,
238
+ "grad_norm": 0.5481635928153992,
239
+ "learning_rate": 2.9157166071437542e-05,
240
+ "loss": 0.9503,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.4722222222222222,
245
+ "grad_norm": 0.5580893158912659,
246
+ "learning_rate": 2.9079614370670268e-05,
247
+ "loss": 0.8964,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.4861111111111111,
252
+ "grad_norm": 0.6972624659538269,
253
+ "learning_rate": 2.8998762568311857e-05,
254
+ "loss": 0.8597,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.5,
259
+ "grad_norm": 0.6588099002838135,
260
+ "learning_rate": 2.89146296151059e-05,
261
+ "loss": 0.8535,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5138888888888888,
266
+ "grad_norm": 0.7054685950279236,
267
+ "learning_rate": 2.8827235230860425e-05,
268
+ "loss": 0.9052,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.5277777777777778,
273
+ "grad_norm": 0.602948784828186,
274
+ "learning_rate": 2.873659989982586e-05,
275
+ "loss": 0.8759,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.5416666666666666,
280
+ "grad_norm": 0.6691058874130249,
281
+ "learning_rate": 2.864274486589371e-05,
282
+ "loss": 0.8327,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.5555555555555556,
287
+ "grad_norm": 0.6832404136657715,
288
+ "learning_rate": 2.8545692127617248e-05,
289
+ "loss": 0.821,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.5694444444444444,
294
+ "grad_norm": 0.6601212620735168,
295
+ "learning_rate": 2.8445464433055303e-05,
296
+ "loss": 0.9004,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.5833333333333334,
301
+ "grad_norm": 0.7965134978294373,
302
+ "learning_rate": 2.8342085274440372e-05,
303
+ "loss": 0.8618,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.5972222222222222,
308
+ "grad_norm": 0.782162070274353,
309
+ "learning_rate": 2.823557888267232e-05,
310
+ "loss": 0.8363,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.6111111111111112,
315
+ "grad_norm": 0.6964525580406189,
316
+ "learning_rate": 2.8125970221638906e-05,
317
+ "loss": 0.8187,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.625,
322
+ "grad_norm": 0.7283791899681091,
323
+ "learning_rate": 2.8013284982364558e-05,
324
+ "loss": 0.8657,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.6388888888888888,
329
+ "grad_norm": 0.7080844044685364,
330
+ "learning_rate": 2.7897549576988668e-05,
331
+ "loss": 0.8612,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.6527777777777778,
336
+ "grad_norm": 0.8012256622314453,
337
+ "learning_rate": 2.7778791132574908e-05,
338
+ "loss": 0.8231,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.6666666666666666,
343
+ "grad_norm": 0.8633471727371216,
344
+ "learning_rate": 2.7657037484752935e-05,
345
+ "loss": 0.7644,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.6805555555555556,
350
+ "grad_norm": 0.7956590056419373,
351
+ "learning_rate": 2.753231717119405e-05,
352
+ "loss": 0.7997,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.6944444444444444,
357
+ "grad_norm": 0.8399053812026978,
358
+ "learning_rate": 2.7404659424922274e-05,
359
+ "loss": 0.753,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.7083333333333334,
364
+ "grad_norm": 0.7861112952232361,
365
+ "learning_rate": 2.727409416746249e-05,
366
+ "loss": 0.7989,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.7222222222222222,
371
+ "grad_norm": 0.7473494410514832,
372
+ "learning_rate": 2.714065200182714e-05,
373
+ "loss": 0.7778,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.7361111111111112,
378
+ "grad_norm": 0.7678909301757812,
379
+ "learning_rate": 2.700436420534326e-05,
380
+ "loss": 0.791,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.75,
385
+ "grad_norm": 0.9624865055084229,
386
+ "learning_rate": 2.686526272232141e-05,
387
+ "loss": 0.7434,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.7638888888888888,
392
+ "grad_norm": 0.7595170736312866,
393
+ "learning_rate": 2.67233801565683e-05,
394
+ "loss": 0.7364,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.7777777777777778,
399
+ "grad_norm": 0.8897536993026733,
400
+ "learning_rate": 2.6578749763744815e-05,
401
+ "loss": 0.7895,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.7916666666666666,
406
+ "grad_norm": 0.8211910724639893,
407
+ "learning_rate": 2.6431405443571282e-05,
408
+ "loss": 0.7302,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.8055555555555556,
413
+ "grad_norm": 0.775287926197052,
414
+ "learning_rate": 2.6281381731881763e-05,
415
+ "loss": 0.7526,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.8194444444444444,
420
+ "grad_norm": 0.917742133140564,
421
+ "learning_rate": 2.6128713792529225e-05,
422
+ "loss": 0.6939,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.8333333333333334,
427
+ "grad_norm": 0.822134256362915,
428
+ "learning_rate": 2.5973437409143557e-05,
429
+ "loss": 0.7377,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.8472222222222222,
434
+ "grad_norm": 0.8758741021156311,
435
+ "learning_rate": 2.5815588976744274e-05,
436
+ "loss": 0.7084,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.8611111111111112,
441
+ "grad_norm": 0.8832114934921265,
442
+ "learning_rate": 2.565520549320996e-05,
443
+ "loss": 0.6638,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.875,
448
+ "grad_norm": 0.8048897981643677,
449
+ "learning_rate": 2.549232455060637e-05,
450
+ "loss": 0.7156,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.8888888888888888,
455
+ "grad_norm": 0.9665600657463074,
456
+ "learning_rate": 2.532698432637528e-05,
457
+ "loss": 0.6762,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.9027777777777778,
462
+ "grad_norm": 0.8282063603401184,
463
+ "learning_rate": 2.5159223574386117e-05,
464
+ "loss": 0.6406,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.9166666666666666,
469
+ "grad_norm": 0.8876408338546753,
470
+ "learning_rate": 2.498908161585253e-05,
471
+ "loss": 0.6599,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.9305555555555556,
476
+ "grad_norm": 0.8858140707015991,
477
+ "learning_rate": 2.48165983301159e-05,
478
+ "loss": 0.6776,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.9444444444444444,
483
+ "grad_norm": 0.9803429245948792,
484
+ "learning_rate": 2.464181414529809e-05,
485
+ "loss": 0.6476,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.9583333333333334,
490
+ "grad_norm": 0.8738537430763245,
491
+ "learning_rate": 2.4464770028825586e-05,
492
+ "loss": 0.6321,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.9722222222222222,
497
+ "grad_norm": 0.9205712080001831,
498
+ "learning_rate": 2.4285507477827138e-05,
499
+ "loss": 0.604,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.9861111111111112,
504
+ "grad_norm": 0.8464882969856262,
505
+ "learning_rate": 2.410406850940735e-05,
506
+ "loss": 0.6451,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.0,
511
+ "grad_norm": 1.0285252332687378,
512
+ "learning_rate": 2.3920495650798343e-05,
513
+ "loss": 0.6959,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.0138888888888888,
518
+ "grad_norm": 0.9646236896514893,
519
+ "learning_rate": 2.3734831929391824e-05,
520
+ "loss": 0.5478,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.0277777777777777,
525
+ "grad_norm": 0.8589456081390381,
526
+ "learning_rate": 2.3547120862653995e-05,
527
+ "loss": 0.565,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.0416666666666667,
532
+ "grad_norm": 0.9315431714057922,
533
+ "learning_rate": 2.3357406447925528e-05,
534
+ "loss": 0.5559,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.0555555555555556,
539
+ "grad_norm": 1.054972529411316,
540
+ "learning_rate": 2.3165733152109097e-05,
541
+ "loss": 0.5359,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.0694444444444444,
546
+ "grad_norm": 0.9502842426300049,
547
+ "learning_rate": 2.297214590124684e-05,
548
+ "loss": 0.5511,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.0833333333333333,
553
+ "grad_norm": 0.9008628129959106,
554
+ "learning_rate": 2.2776690069990208e-05,
555
+ "loss": 0.482,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.0972222222222223,
560
+ "grad_norm": 0.895050048828125,
561
+ "learning_rate": 2.257941147096465e-05,
562
+ "loss": 0.5666,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.1111111111111112,
567
+ "grad_norm": 1.10245680809021,
568
+ "learning_rate": 2.2380356344031677e-05,
569
+ "loss": 0.5948,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.125,
574
+ "grad_norm": 0.9714730381965637,
575
+ "learning_rate": 2.217957134545074e-05,
576
+ "loss": 0.5297,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.1388888888888888,
581
+ "grad_norm": 1.0223896503448486,
582
+ "learning_rate": 2.197710353694355e-05,
583
+ "loss": 0.5037,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.1527777777777777,
588
+ "grad_norm": 0.877342164516449,
589
+ "learning_rate": 2.177300037466334e-05,
590
+ "loss": 0.5331,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.1666666666666667,
595
+ "grad_norm": 0.9664136171340942,
596
+ "learning_rate": 2.156730969807168e-05,
597
+ "loss": 0.512,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.1805555555555556,
602
+ "grad_norm": 0.9725602865219116,
603
+ "learning_rate": 2.1360079718725452e-05,
604
+ "loss": 0.4956,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.1944444444444444,
609
+ "grad_norm": 1.0216833353042603,
610
+ "learning_rate": 2.1151359008976604e-05,
611
+ "loss": 0.4865,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.2083333333333333,
616
+ "grad_norm": 1.0147571563720703,
617
+ "learning_rate": 2.0941196490587352e-05,
618
+ "loss": 0.533,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.2222222222222223,
623
+ "grad_norm": 1.0112186670303345,
624
+ "learning_rate": 2.072964142326348e-05,
625
+ "loss": 0.4889,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.2361111111111112,
630
+ "grad_norm": 0.9771940112113953,
631
+ "learning_rate": 2.05167433931084e-05,
632
+ "loss": 0.5168,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.25,
637
+ "grad_norm": 1.0951805114746094,
638
+ "learning_rate": 2.0302552301000757e-05,
639
+ "loss": 0.4746,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.2638888888888888,
644
+ "grad_norm": 0.9993045926094055,
645
+ "learning_rate": 2.008711835089822e-05,
646
+ "loss": 0.4721,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.2777777777777777,
651
+ "grad_norm": 1.0383926630020142,
652
+ "learning_rate": 1.9870492038070255e-05,
653
+ "loss": 0.5339,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.2916666666666667,
658
+ "grad_norm": 1.1353601217269897,
659
+ "learning_rate": 1.965272413726258e-05,
660
+ "loss": 0.4655,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.3055555555555556,
665
+ "grad_norm": 0.9714365005493164,
666
+ "learning_rate": 1.943386569079618e-05,
667
+ "loss": 0.4823,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.3194444444444444,
672
+ "grad_norm": 0.9634111523628235,
673
+ "learning_rate": 1.9213967996603542e-05,
674
+ "loss": 0.489,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.3333333333333333,
679
+ "grad_norm": 1.0810520648956299,
680
+ "learning_rate": 1.8993082596205e-05,
681
+ "loss": 0.4849,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.3472222222222223,
686
+ "grad_norm": 1.058505892753601,
687
+ "learning_rate": 1.8771261262628018e-05,
688
+ "loss": 0.4845,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.3611111111111112,
693
+ "grad_norm": 0.9834576845169067,
694
+ "learning_rate": 1.8548555988272138e-05,
695
+ "loss": 0.4709,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.375,
700
+ "grad_norm": 0.9450607299804688,
701
+ "learning_rate": 1.832501897272258e-05,
702
+ "loss": 0.5097,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.3888888888888888,
707
+ "grad_norm": 1.1241111755371094,
708
+ "learning_rate": 1.810070261051526e-05,
709
+ "loss": 0.469,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.4027777777777777,
714
+ "grad_norm": 1.060816764831543,
715
+ "learning_rate": 1.7875659478856077e-05,
716
+ "loss": 0.5055,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.4166666666666667,
721
+ "grad_norm": 0.8707916140556335,
722
+ "learning_rate": 1.764994232529744e-05,
723
+ "loss": 0.484,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.4305555555555556,
728
+ "grad_norm": 1.0018506050109863,
729
+ "learning_rate": 1.7423604055374824e-05,
730
+ "loss": 0.4324,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.4444444444444444,
735
+ "grad_norm": 1.1296194791793823,
736
+ "learning_rate": 1.7196697720206327e-05,
737
+ "loss": 0.4396,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.4583333333333333,
742
+ "grad_norm": 1.1075674295425415,
743
+ "learning_rate": 1.6969276504058073e-05,
744
+ "loss": 0.4283,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.4722222222222223,
749
+ "grad_norm": 1.078908920288086,
750
+ "learning_rate": 1.6741393711878455e-05,
751
+ "loss": 0.4565,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.4861111111111112,
756
+ "grad_norm": 0.8687962293624878,
757
+ "learning_rate": 1.6513102756804025e-05,
758
+ "loss": 0.4449,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.5,
763
+ "grad_norm": 1.022986888885498,
764
+ "learning_rate": 1.6284457147640084e-05,
765
+ "loss": 0.4173,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.5138888888888888,
770
+ "grad_norm": 0.9766154885292053,
771
+ "learning_rate": 1.6055510476318827e-05,
772
+ "loss": 0.4417,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.5277777777777777,
777
+ "grad_norm": 1.0998139381408691,
778
+ "learning_rate": 1.5826316405337983e-05,
779
+ "loss": 0.4366,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.5416666666666665,
784
+ "grad_norm": 1.0709365606307983,
785
+ "learning_rate": 1.5596928655182962e-05,
786
+ "loss": 0.4119,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.5555555555555556,
791
+ "grad_norm": 1.0134344100952148,
792
+ "learning_rate": 1.536740099173537e-05,
793
+ "loss": 0.4144,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.5694444444444444,
798
+ "grad_norm": 1.1979199647903442,
799
+ "learning_rate": 1.5137787213670899e-05,
800
+ "loss": 0.4942,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.5833333333333335,
805
+ "grad_norm": 1.0069036483764648,
806
+ "learning_rate": 1.490814113984951e-05,
807
+ "loss": 0.3919,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.5972222222222223,
812
+ "grad_norm": 1.0106252431869507,
813
+ "learning_rate": 1.4678516596700956e-05,
814
+ "loss": 0.4103,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.6111111111111112,
819
+ "grad_norm": 1.2134196758270264,
820
+ "learning_rate": 1.4448967405608415e-05,
821
+ "loss": 0.4135,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.625,
826
+ "grad_norm": 1.0365575551986694,
827
+ "learning_rate": 1.4219547370293414e-05,
828
+ "loss": 0.4455,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.6388888888888888,
833
+ "grad_norm": 1.132775068283081,
834
+ "learning_rate": 1.399031026420483e-05,
835
+ "loss": 0.4093,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.6527777777777777,
840
+ "grad_norm": 1.1647281646728516,
841
+ "learning_rate": 1.3761309817915017e-05,
842
+ "loss": 0.4561,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.6666666666666665,
847
+ "grad_norm": 1.1083650588989258,
848
+ "learning_rate": 1.3532599706525943e-05,
849
+ "loss": 0.3914,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.6805555555555556,
854
+ "grad_norm": 1.0493947267532349,
855
+ "learning_rate": 1.3304233537088392e-05,
856
+ "loss": 0.4207,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.6944444444444444,
861
+ "grad_norm": 1.030792474746704,
862
+ "learning_rate": 1.307626483603705e-05,
863
+ "loss": 0.3568,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.7083333333333335,
868
+ "grad_norm": 1.0136348009109497,
869
+ "learning_rate": 1.2848747036644558e-05,
870
+ "loss": 0.4144,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.7222222222222223,
875
+ "grad_norm": 1.188499093055725,
876
+ "learning_rate": 1.2621733466497287e-05,
877
+ "loss": 0.3628,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.7361111111111112,
882
+ "grad_norm": 1.1271867752075195,
883
+ "learning_rate": 1.2395277334996045e-05,
884
+ "loss": 0.4152,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.75,
889
+ "grad_norm": 1.1080422401428223,
890
+ "learning_rate": 1.2169431720884336e-05,
891
+ "loss": 0.4124,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.7638888888888888,
896
+ "grad_norm": 1.0047310590744019,
897
+ "learning_rate": 1.1944249559807342e-05,
898
+ "loss": 0.4124,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.7777777777777777,
903
+ "grad_norm": 1.1300867795944214,
904
+ "learning_rate": 1.1719783631904364e-05,
905
+ "loss": 0.408,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.7916666666666665,
910
+ "grad_norm": 1.1100444793701172,
911
+ "learning_rate": 1.1496086549437821e-05,
912
+ "loss": 0.3588,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.8055555555555556,
917
+ "grad_norm": 1.1678626537322998,
918
+ "learning_rate": 1.127321074446148e-05,
919
+ "loss": 0.3867,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.8194444444444444,
924
+ "grad_norm": 1.0988038778305054,
925
+ "learning_rate": 1.1051208456531016e-05,
926
+ "loss": 0.4278,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.8333333333333335,
931
+ "grad_norm": 1.2045801877975464,
932
+ "learning_rate": 1.0830131720459602e-05,
933
+ "loss": 0.3993,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.8472222222222223,
938
+ "grad_norm": 1.0833828449249268,
939
+ "learning_rate": 1.0610032354121613e-05,
940
+ "loss": 0.3421,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.8611111111111112,
945
+ "grad_norm": 1.2317794561386108,
946
+ "learning_rate": 1.0390961946307041e-05,
947
+ "loss": 0.3798,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.875,
952
+ "grad_norm": 1.0517349243164062,
953
+ "learning_rate": 1.0172971844629716e-05,
954
+ "loss": 0.3828,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.8888888888888888,
959
+ "grad_norm": 0.9857127070426941,
960
+ "learning_rate": 9.956113143491959e-06,
961
+ "loss": 0.3568,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.9027777777777777,
966
+ "grad_norm": 1.0072497129440308,
967
+ "learning_rate": 9.740436672108686e-06,
968
+ "loss": 0.3513,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.9166666666666665,
973
+ "grad_norm": 1.079379916191101,
974
+ "learning_rate": 9.525992982593584e-06,
975
+ "loss": 0.3963,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.9305555555555556,
980
+ "grad_norm": 1.128957748413086,
981
+ "learning_rate": 9.312832338110292e-06,
982
+ "loss": 0.3973,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.9444444444444444,
987
+ "grad_norm": 1.1786658763885498,
988
+ "learning_rate": 9.101004701091253e-06,
989
+ "loss": 0.3662,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.9583333333333335,
994
+ "grad_norm": 1.18641996383667,
995
+ "learning_rate": 8.890559721527139e-06,
996
+ "loss": 0.354,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 1.9722222222222223,
1001
+ "grad_norm": 1.2030516862869263,
1002
+ "learning_rate": 8.68154672532941e-06,
1003
+ "loss": 0.395,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 1.9861111111111112,
1008
+ "grad_norm": 1.213351845741272,
1009
+ "learning_rate": 8.474014702768905e-06,
1010
+ "loss": 0.3542,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.0,
1015
+ "grad_norm": 1.160871148109436,
1016
+ "learning_rate": 8.268012296993067e-06,
1017
+ "loss": 0.3575,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.013888888888889,
1022
+ "grad_norm": 1.0242027044296265,
1023
+ "learning_rate": 8.063587792624568e-06,
1024
+ "loss": 0.2924,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.0277777777777777,
1029
+ "grad_norm": 1.2001488208770752,
1030
+ "learning_rate": 7.860789104443897e-06,
1031
+ "loss": 0.3014,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.0416666666666665,
1036
+ "grad_norm": 1.0160436630249023,
1037
+ "learning_rate": 7.659663766158734e-06,
1038
+ "loss": 0.2964,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.0555555555555554,
1043
+ "grad_norm": 0.9895650744438171,
1044
+ "learning_rate": 7.4602589192625295e-06,
1045
+ "loss": 0.2746,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.0694444444444446,
1050
+ "grad_norm": 1.0355356931686401,
1051
+ "learning_rate": 7.262621301985145e-06,
1052
+ "loss": 0.2711,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.0833333333333335,
1057
+ "grad_norm": 1.052233338356018,
1058
+ "learning_rate": 7.066797238337863e-06,
1059
+ "loss": 0.3509,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.0972222222222223,
1064
+ "grad_norm": 1.0358434915542603,
1065
+ "learning_rate": 6.872832627255643e-06,
1066
+ "loss": 0.2925,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.111111111111111,
1071
+ "grad_norm": 1.1014931201934814,
1072
+ "learning_rate": 6.680772931838868e-06,
1073
+ "loss": 0.2599,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.125,
1078
+ "grad_norm": 1.1987323760986328,
1079
+ "learning_rate": 6.49066316869736e-06,
1080
+ "loss": 0.2816,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.138888888888889,
1085
+ "grad_norm": 1.1125656366348267,
1086
+ "learning_rate": 6.302547897398959e-06,
1087
+ "loss": 0.2794,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.1527777777777777,
1092
+ "grad_norm": 1.1091867685317993,
1093
+ "learning_rate": 6.116471210025302e-06,
1094
+ "loss": 0.3008,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.1666666666666665,
1099
+ "grad_norm": 1.089145541191101,
1100
+ "learning_rate": 5.9324767208371055e-06,
1101
+ "loss": 0.2663,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.1805555555555554,
1106
+ "grad_norm": 1.0546962022781372,
1107
+ "learning_rate": 5.750607556051515e-06,
1108
+ "loss": 0.3325,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.1944444444444446,
1113
+ "grad_norm": 1.2454535961151123,
1114
+ "learning_rate": 5.570906343733769e-06,
1115
+ "loss": 0.2676,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.2083333333333335,
1120
+ "grad_norm": 1.0933462381362915,
1121
+ "learning_rate": 5.393415203805708e-06,
1122
+ "loss": 0.2559,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.2222222222222223,
1127
+ "grad_norm": 1.2037767171859741,
1128
+ "learning_rate": 5.218175738173304e-06,
1129
+ "loss": 0.2752,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.236111111111111,
1134
+ "grad_norm": 1.166928768157959,
1135
+ "learning_rate": 5.045229020975681e-06,
1136
+ "loss": 0.2722,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.25,
1141
+ "grad_norm": 1.1887221336364746,
1142
+ "learning_rate": 4.874615588957773e-06,
1143
+ "loss": 0.296,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.263888888888889,
1148
+ "grad_norm": 1.0863522291183472,
1149
+ "learning_rate": 4.706375431968998e-06,
1150
+ "loss": 0.298,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.2777777777777777,
1155
+ "grad_norm": 0.9994515776634216,
1156
+ "learning_rate": 4.5405479835900695e-06,
1157
+ "loss": 0.2448,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.2916666666666665,
1162
+ "grad_norm": 1.2771220207214355,
1163
+ "learning_rate": 4.3771721118902345e-06,
1164
+ "loss": 0.2528,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.3055555555555554,
1169
+ "grad_norm": 1.2188071012496948,
1170
+ "learning_rate": 4.2162861103170135e-06,
1171
+ "loss": 0.3031,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.3194444444444446,
1176
+ "grad_norm": 1.2380175590515137,
1177
+ "learning_rate": 4.05792768872069e-06,
1178
+ "loss": 0.3106,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.3333333333333335,
1183
+ "grad_norm": 1.0944781303405762,
1184
+ "learning_rate": 3.902133964515503e-06,
1185
+ "loss": 0.3063,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.3472222222222223,
1190
+ "grad_norm": 1.0908677577972412,
1191
+ "learning_rate": 3.7489414539797903e-06,
1192
+ "loss": 0.2835,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.361111111111111,
1197
+ "grad_norm": 1.041326880455017,
1198
+ "learning_rate": 3.5983860636969528e-06,
1199
+ "loss": 0.2332,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.375,
1204
+ "grad_norm": 1.3400294780731201,
1205
+ "learning_rate": 3.4505030821393935e-06,
1206
+ "loss": 0.2695,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.388888888888889,
1211
+ "grad_norm": 1.3053709268569946,
1212
+ "learning_rate": 3.3053271713972635e-06,
1213
+ "loss": 0.2832,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.4027777777777777,
1218
+ "grad_norm": 1.0280226469039917,
1219
+ "learning_rate": 3.162892359054098e-06,
1220
+ "loss": 0.2612,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.4166666666666665,
1225
+ "grad_norm": 1.1506812572479248,
1226
+ "learning_rate": 3.023232030211105e-06,
1227
+ "loss": 0.2533,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.4305555555555554,
1232
+ "grad_norm": 1.2825955152511597,
1233
+ "learning_rate": 2.8863789196621094e-06,
1234
+ "loss": 0.2594,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.4444444444444446,
1239
+ "grad_norm": 1.1212204694747925,
1240
+ "learning_rate": 2.7523651042208564e-06,
1241
+ "loss": 0.2711,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.4583333333333335,
1246
+ "grad_norm": 1.4847643375396729,
1247
+ "learning_rate": 2.6212219952026e-06,
1248
+ "loss": 0.2818,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.4722222222222223,
1253
+ "grad_norm": 1.0873907804489136,
1254
+ "learning_rate": 2.492980331061622e-06,
1255
+ "loss": 0.2661,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.486111111111111,
1260
+ "grad_norm": 1.050211787223816,
1261
+ "learning_rate": 2.367670170186516e-06,
1262
+ "loss": 0.2483,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.5,
1267
+ "grad_norm": 1.0944018363952637,
1268
+ "learning_rate": 2.24532088385481e-06,
1269
+ "loss": 0.2535,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.513888888888889,
1274
+ "grad_norm": 1.0953317880630493,
1275
+ "learning_rate": 2.125961149348706e-06,
1276
+ "loss": 0.2898,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.5277777777777777,
1281
+ "grad_norm": 1.0513213872909546,
1282
+ "learning_rate": 2.0096189432334194e-06,
1283
+ "loss": 0.2394,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.5416666666666665,
1288
+ "grad_norm": 1.1305993795394897,
1289
+ "learning_rate": 1.896321534799823e-06,
1290
+ "loss": 0.2864,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.5555555555555554,
1295
+ "grad_norm": 1.0719528198242188,
1296
+ "learning_rate": 1.7860954796727997e-06,
1297
+ "loss": 0.2893,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.5694444444444446,
1302
+ "grad_norm": 1.2391268014907837,
1303
+ "learning_rate": 1.6789666135869376e-06,
1304
+ "loss": 0.2536,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.5833333333333335,
1309
+ "grad_norm": 1.0820634365081787,
1310
+ "learning_rate": 1.574960046330905e-06,
1311
+ "loss": 0.238,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.5972222222222223,
1316
+ "grad_norm": 1.1792165040969849,
1317
+ "learning_rate": 1.4741001558620166e-06,
1318
+ "loss": 0.2482,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.611111111111111,
1323
+ "grad_norm": 1.0961277484893799,
1324
+ "learning_rate": 1.3764105825923068e-06,
1325
+ "loss": 0.2614,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.625,
1330
+ "grad_norm": 1.0383102893829346,
1331
+ "learning_rate": 1.2819142238474863e-06,
1332
+ "loss": 0.2766,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.638888888888889,
1337
+ "grad_norm": 1.2211796045303345,
1338
+ "learning_rate": 1.1906332285000793e-06,
1339
+ "loss": 0.2826,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.6527777777777777,
1344
+ "grad_norm": 1.1081433296203613,
1345
+ "learning_rate": 1.1025889917779735e-06,
1346
+ "loss": 0.2822,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.6666666666666665,
1351
+ "grad_norm": 0.9788774847984314,
1352
+ "learning_rate": 1.0178021502496166e-06,
1353
+ "loss": 0.268,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.6805555555555554,
1358
+ "grad_norm": 1.018909215927124,
1359
+ "learning_rate": 9.362925769870396e-07,
1360
+ "loss": 0.2696,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.6944444444444446,
1365
+ "grad_norm": 1.1516112089157104,
1366
+ "learning_rate": 8.580793769078488e-07,
1367
+ "loss": 0.2815,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.7083333333333335,
1372
+ "grad_norm": 0.987594485282898,
1373
+ "learning_rate": 7.831808822972392e-07,
1374
+ "loss": 0.2472,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.7222222222222223,
1379
+ "grad_norm": 1.1561530828475952,
1380
+ "learning_rate": 7.116146485111063e-07,
1381
+ "loss": 0.2745,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.736111111111111,
1386
+ "grad_norm": 1.1640846729278564,
1387
+ "learning_rate": 6.433974498612882e-07,
1388
+ "loss": 0.2522,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.75,
1393
+ "grad_norm": 1.0885223150253296,
1394
+ "learning_rate": 5.785452756838483e-07,
1395
+ "loss": 0.2419,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.763888888888889,
1400
+ "grad_norm": 1.0816514492034912,
1401
+ "learning_rate": 5.170733265913585e-07,
1402
+ "loss": 0.2743,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.7777777777777777,
1407
+ "grad_norm": 1.1799240112304688,
1408
+ "learning_rate": 4.589960109100444e-07,
1409
+ "loss": 0.2388,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.7916666666666665,
1414
+ "grad_norm": 1.2002804279327393,
1415
+ "learning_rate": 4.043269413026429e-07,
1416
+ "loss": 0.2703,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.8055555555555554,
1421
+ "grad_norm": 1.1375762224197388,
1422
+ "learning_rate": 3.5307893157774664e-07,
1423
+ "loss": 0.2598,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.8194444444444446,
1428
+ "grad_norm": 1.1245205402374268,
1429
+ "learning_rate": 3.0526399368639103e-07,
1430
+ "loss": 0.2471,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.8333333333333335,
1435
+ "grad_norm": 1.103769302368164,
1436
+ "learning_rate": 2.6089333490659506e-07,
1437
+ "loss": 0.2425,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.8472222222222223,
1442
+ "grad_norm": 1.021943211555481,
1443
+ "learning_rate": 2.1997735521649408e-07,
1444
+ "loss": 0.2504,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.861111111111111,
1449
+ "grad_norm": 1.1182405948638916,
1450
+ "learning_rate": 1.8252564485670975e-07,
1451
+ "loss": 0.2583,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.875,
1456
+ "grad_norm": 1.1222693920135498,
1457
+ "learning_rate": 1.4854698208250638e-07,
1458
+ "loss": 0.2629,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.888888888888889,
1463
+ "grad_norm": 1.1009235382080078,
1464
+ "learning_rate": 1.1804933110626359e-07,
1465
+ "loss": 0.235,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.9027777777777777,
1470
+ "grad_norm": 1.1490674018859863,
1471
+ "learning_rate": 9.103984023075773e-08,
1472
+ "loss": 0.2667,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.9166666666666665,
1477
+ "grad_norm": 1.192660927772522,
1478
+ "learning_rate": 6.752484017368554e-08,
1479
+ "loss": 0.2848,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.9305555555555554,
1484
+ "grad_norm": 1.0776135921478271,
1485
+ "learning_rate": 4.7509842583806086e-08,
1486
+ "loss": 0.2471,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.9444444444444446,
1491
+ "grad_norm": 1.0938776731491089,
1492
+ "learning_rate": 3.099953874908079e-08,
1493
+ "loss": 0.2478,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 2.9583333333333335,
1498
+ "grad_norm": 1.159061312675476,
1499
+ "learning_rate": 1.7997798497084718e-08,
1500
+ "loss": 0.2697,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 2.9722222222222223,
1505
+ "grad_norm": 1.0631920099258423,
1506
+ "learning_rate": 8.507669287967091e-09,
1507
+ "loss": 0.2484,
1508
+ "step": 1070
1509
+ },
1510
+ {
1511
+ "epoch": 2.986111111111111,
1512
+ "grad_norm": 1.1377451419830322,
1513
+ "learning_rate": 2.5313755001593607e-09,
1514
+ "loss": 0.2464,
1515
+ "step": 1075
1516
+ },
1517
+ {
1518
+ "epoch": 3.0,
1519
+ "grad_norm": 1.2484397888183594,
1520
+ "learning_rate": 7.03179089989181e-11,
1521
+ "loss": 0.2523,
1522
+ "step": 1080
1523
+ },
1524
+ {
1525
+ "epoch": 3.0,
1526
+ "step": 1080,
1527
+ "total_flos": 1.5985427869765468e+18,
1528
+ "train_loss": 0.5499852971898185,
1529
+ "train_runtime": 792.1755,
1530
+ "train_samples_per_second": 43.615,
1531
+ "train_steps_per_second": 1.363
1532
+ }
1533
+ ],
1534
+ "logging_steps": 5,
1535
+ "max_steps": 1080,
1536
+ "num_input_tokens_seen": 0,
1537
+ "num_train_epochs": 3,
1538
+ "save_steps": 20000,
1539
+ "stateful_callbacks": {
1540
+ "TrainerControl": {
1541
+ "args": {
1542
+ "should_epoch_stop": false,
1543
+ "should_evaluate": false,
1544
+ "should_log": false,
1545
+ "should_save": false,
1546
+ "should_training_stop": false
1547
+ },
1548
+ "attributes": {}
1549
+ }
1550
+ },
1551
+ "total_flos": 1.5985427869765468e+18,
1552
+ "train_batch_size": 2,
1553
+ "trial_name": null,
1554
+ "trial_params": null
1555
+ }
27_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58230b551fccb8c07bc37e00d7344000cc26e0d320b8fbb71062fa93f5e61949
3
+ size 8209
27_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff