RayDu0010 commited on
Commit
554c110
·
verified ·
1 Parent(s): f008cbb

Upload folder using huggingface_hub

Browse files
126_128_e3_3e-5/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "ibm-granite/granite-3.3-8b-instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 256,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 128,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "down_proj",
28
+ "v_proj",
29
+ "o_proj",
30
+ "up_proj",
31
+ "q_proj",
32
+ "k_proj",
33
+ "gate_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
126_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e9c64a4bcbcb36b4d4c27b00cab38b0058b617fe5f64a6c80ab138a37ac9eae
3
+ size 791751704
126_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
+ }
126_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.3711430478609777e+18,
4
+ "train_loss": 0.6045596268238166,
5
+ "train_runtime": 644.6715,
6
+ "train_samples": 10395,
7
+ "train_samples_per_second": 48.373,
8
+ "train_steps_per_second": 1.512
9
+ }
126_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 %}
126_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
+ }
126_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
126_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
+ }
126_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
126_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
+ }
126_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.3711430478609777e+18,
4
+ "train_loss": 0.6045596268238166,
5
+ "train_runtime": 644.6715,
6
+ "train_samples": 10395,
7
+ "train_samples_per_second": 48.373,
8
+ "train_steps_per_second": 1.512
9
+ }
126_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 975,
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.015384615384615385,
14
+ "grad_norm": 3.191135883331299,
15
+ "learning_rate": 2.4489795918367347e-06,
16
+ "loss": 1.5896,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.03076923076923077,
21
+ "grad_norm": 2.2008650302886963,
22
+ "learning_rate": 5.510204081632653e-06,
23
+ "loss": 1.5372,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.046153846153846156,
28
+ "grad_norm": 0.8214209079742432,
29
+ "learning_rate": 8.571428571428571e-06,
30
+ "loss": 1.4147,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.06153846153846154,
35
+ "grad_norm": 0.4854404926300049,
36
+ "learning_rate": 1.163265306122449e-05,
37
+ "loss": 1.4242,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.07692307692307693,
42
+ "grad_norm": 0.4039292633533478,
43
+ "learning_rate": 1.4693877551020408e-05,
44
+ "loss": 1.4064,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.09230769230769231,
49
+ "grad_norm": 0.4518930912017822,
50
+ "learning_rate": 1.7755102040816327e-05,
51
+ "loss": 1.3914,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.1076923076923077,
56
+ "grad_norm": 0.4490149915218353,
57
+ "learning_rate": 2.0816326530612247e-05,
58
+ "loss": 1.3371,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.12307692307692308,
63
+ "grad_norm": 0.45870330929756165,
64
+ "learning_rate": 2.3877551020408164e-05,
65
+ "loss": 1.3218,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.13846153846153847,
70
+ "grad_norm": 0.40856820344924927,
71
+ "learning_rate": 2.6938775510204084e-05,
72
+ "loss": 1.2739,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.15384615384615385,
77
+ "grad_norm": 0.4209417402744293,
78
+ "learning_rate": 3e-05,
79
+ "loss": 1.2788,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.16923076923076924,
84
+ "grad_norm": 0.4109303951263428,
85
+ "learning_rate": 2.9997841914583366e-05,
86
+ "loss": 1.2715,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.18461538461538463,
91
+ "grad_norm": 0.42402413487434387,
92
+ "learning_rate": 2.9991368279311155e-05,
93
+ "loss": 1.2645,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.2,
98
+ "grad_norm": 0.36688071489334106,
99
+ "learning_rate": 2.998058095693775e-05,
100
+ "loss": 1.2513,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.2153846153846154,
105
+ "grad_norm": 0.4094462990760803,
106
+ "learning_rate": 2.996548305145823e-05,
107
+ "loss": 1.2691,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.23076923076923078,
112
+ "grad_norm": 0.4490308463573456,
113
+ "learning_rate": 2.9946078907215212e-05,
114
+ "loss": 1.2602,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.24615384615384617,
119
+ "grad_norm": 0.4254547953605652,
120
+ "learning_rate": 2.9922374107648796e-05,
121
+ "loss": 1.2233,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.26153846153846155,
126
+ "grad_norm": 0.45248717069625854,
127
+ "learning_rate": 2.989437547368994e-05,
128
+ "loss": 1.1324,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.27692307692307694,
133
+ "grad_norm": 0.44229620695114136,
134
+ "learning_rate": 2.98620910617978e-05,
135
+ "loss": 1.1777,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.2923076923076923,
140
+ "grad_norm": 0.47411033511161804,
141
+ "learning_rate": 2.982553016164151e-05,
142
+ "loss": 1.1322,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.3076923076923077,
147
+ "grad_norm": 0.5014300346374512,
148
+ "learning_rate": 2.9784703293427125e-05,
149
+ "loss": 1.1336,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.3230769230769231,
154
+ "grad_norm": 0.46827614307403564,
155
+ "learning_rate": 2.9739622204870503e-05,
156
+ "loss": 1.1823,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.3384615384615385,
161
+ "grad_norm": 0.5334767699241638,
162
+ "learning_rate": 2.9690299867816947e-05,
163
+ "loss": 1.0821,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.35384615384615387,
168
+ "grad_norm": 0.43920257687568665,
169
+ "learning_rate": 2.9636750474508627e-05,
170
+ "loss": 1.118,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.36923076923076925,
175
+ "grad_norm": 0.555946946144104,
176
+ "learning_rate": 2.957898943350085e-05,
177
+ "loss": 1.063,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.38461538461538464,
182
+ "grad_norm": 0.5551937818527222,
183
+ "learning_rate": 2.9517033365228314e-05,
184
+ "loss": 1.0341,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.4,
189
+ "grad_norm": 0.5497499108314514,
190
+ "learning_rate": 2.945090009722268e-05,
191
+ "loss": 1.1253,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.4153846153846154,
196
+ "grad_norm": 0.5459065437316895,
197
+ "learning_rate": 2.9380608658982763e-05,
198
+ "loss": 1.0253,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.4307692307692308,
203
+ "grad_norm": 0.652377724647522,
204
+ "learning_rate": 2.930617927649895e-05,
205
+ "loss": 1.1149,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4461538461538462,
210
+ "grad_norm": 0.618680477142334,
211
+ "learning_rate": 2.9227633366433227e-05,
212
+ "loss": 1.1067,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.46153846153846156,
217
+ "grad_norm": 0.6362542510032654,
218
+ "learning_rate": 2.9144993529956657e-05,
219
+ "loss": 1.0252,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.47692307692307695,
224
+ "grad_norm": 0.6453359723091125,
225
+ "learning_rate": 2.905828354624604e-05,
226
+ "loss": 1.0505,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.49230769230769234,
231
+ "grad_norm": 0.6349513530731201,
232
+ "learning_rate": 2.896752836564155e-05,
233
+ "loss": 0.9646,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.5076923076923077,
238
+ "grad_norm": 0.6579886078834534,
239
+ "learning_rate": 2.887275410246742e-05,
240
+ "loss": 1.0122,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.5230769230769231,
245
+ "grad_norm": 0.7696048021316528,
246
+ "learning_rate": 2.8773988027517678e-05,
247
+ "loss": 0.953,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.5384615384615384,
252
+ "grad_norm": 0.7107468247413635,
253
+ "learning_rate": 2.867125856020913e-05,
254
+ "loss": 0.93,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.5538461538461539,
259
+ "grad_norm": 0.6523647904396057,
260
+ "learning_rate": 2.8564595260403804e-05,
261
+ "loss": 1.0067,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5692307692307692,
266
+ "grad_norm": 0.6959507465362549,
267
+ "learning_rate": 2.8454028819903277e-05,
268
+ "loss": 0.9288,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.5846153846153846,
273
+ "grad_norm": 0.7379077672958374,
274
+ "learning_rate": 2.833959105361726e-05,
275
+ "loss": 0.8966,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.6,
280
+ "grad_norm": 0.7674935460090637,
281
+ "learning_rate": 2.822131489040902e-05,
282
+ "loss": 0.934,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.6153846153846154,
287
+ "grad_norm": 0.7664425373077393,
288
+ "learning_rate": 2.8099234363620284e-05,
289
+ "loss": 0.9205,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.6307692307692307,
294
+ "grad_norm": 0.8975176811218262,
295
+ "learning_rate": 2.7973384601278323e-05,
296
+ "loss": 0.8789,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.6461538461538462,
301
+ "grad_norm": 0.8107626438140869,
302
+ "learning_rate": 2.7843801815988043e-05,
303
+ "loss": 0.9014,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.6615384615384615,
308
+ "grad_norm": 0.8643553853034973,
309
+ "learning_rate": 2.7710523294512002e-05,
310
+ "loss": 0.8522,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.676923076923077,
315
+ "grad_norm": 0.8077470064163208,
316
+ "learning_rate": 2.7573587387041342e-05,
317
+ "loss": 0.851,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.6923076923076923,
322
+ "grad_norm": 0.7755894660949707,
323
+ "learning_rate": 2.7433033496160713e-05,
324
+ "loss": 0.8735,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.7076923076923077,
329
+ "grad_norm": 0.894898533821106,
330
+ "learning_rate": 2.7288902065510407e-05,
331
+ "loss": 0.8731,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.7230769230769231,
336
+ "grad_norm": 0.8682807683944702,
337
+ "learning_rate": 2.71412345681489e-05,
338
+ "loss": 0.8826,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.7384615384615385,
343
+ "grad_norm": 0.8361955285072327,
344
+ "learning_rate": 2.6990073494619198e-05,
345
+ "loss": 0.826,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.7538461538461538,
350
+ "grad_norm": 0.7905547022819519,
351
+ "learning_rate": 2.6835462340722422e-05,
352
+ "loss": 0.7972,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.7692307692307693,
357
+ "grad_norm": 0.8578044176101685,
358
+ "learning_rate": 2.667744559500209e-05,
359
+ "loss": 0.828,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.7846153846153846,
364
+ "grad_norm": 0.8790921568870544,
365
+ "learning_rate": 2.6516068725942815e-05,
366
+ "loss": 0.846,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.8,
371
+ "grad_norm": 0.9101660251617432,
372
+ "learning_rate": 2.6351378168886948e-05,
373
+ "loss": 0.7741,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.8153846153846154,
378
+ "grad_norm": 0.8347858786582947,
379
+ "learning_rate": 2.618342131267309e-05,
380
+ "loss": 0.8165,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.8307692307692308,
385
+ "grad_norm": 0.9162393808364868,
386
+ "learning_rate": 2.601224648600017e-05,
387
+ "loss": 0.7888,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.8461538461538461,
392
+ "grad_norm": 0.864322304725647,
393
+ "learning_rate": 2.5837902943521144e-05,
394
+ "loss": 0.7808,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.8615384615384616,
399
+ "grad_norm": 0.8308318853378296,
400
+ "learning_rate": 2.566044085167021e-05,
401
+ "loss": 0.7345,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.8769230769230769,
406
+ "grad_norm": 0.8681084513664246,
407
+ "learning_rate": 2.5479911274227696e-05,
408
+ "loss": 0.7924,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.8923076923076924,
413
+ "grad_norm": 0.8732675909996033,
414
+ "learning_rate": 2.529636615762671e-05,
415
+ "loss": 0.7571,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.9076923076923077,
420
+ "grad_norm": 0.924938440322876,
421
+ "learning_rate": 2.5109858316005844e-05,
422
+ "loss": 0.7808,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.9230769230769231,
427
+ "grad_norm": 0.9509190917015076,
428
+ "learning_rate": 2.4920441416012183e-05,
429
+ "loss": 0.7517,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.9384615384615385,
434
+ "grad_norm": 1.0044610500335693,
435
+ "learning_rate": 2.472816996135899e-05,
436
+ "loss": 0.7589,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.9538461538461539,
441
+ "grad_norm": 0.9878382086753845,
442
+ "learning_rate": 2.4533099277142578e-05,
443
+ "loss": 0.7157,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.9692307692307692,
448
+ "grad_norm": 0.9564942717552185,
449
+ "learning_rate": 2.433528549392279e-05,
450
+ "loss": 0.7266,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.9846153846153847,
455
+ "grad_norm": 0.9731267094612122,
456
+ "learning_rate": 2.4134785531571735e-05,
457
+ "loss": 0.7104,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 1.0,
462
+ "grad_norm": 0.9944301843643188,
463
+ "learning_rate": 2.393165708289537e-05,
464
+ "loss": 0.6721,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 1.0153846153846153,
469
+ "grad_norm": 1.0032981634140015,
470
+ "learning_rate": 2.372595859703275e-05,
471
+ "loss": 0.6352,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 1.0307692307692307,
476
+ "grad_norm": 0.9027681350708008,
477
+ "learning_rate": 2.3517749262637542e-05,
478
+ "loss": 0.5951,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 1.0461538461538462,
483
+ "grad_norm": 0.9905908703804016,
484
+ "learning_rate": 2.330708899084683e-05,
485
+ "loss": 0.5574,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 1.0615384615384615,
490
+ "grad_norm": 1.0512447357177734,
491
+ "learning_rate": 2.3094038398042015e-05,
492
+ "loss": 0.6123,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.0769230769230769,
497
+ "grad_norm": 0.9578827023506165,
498
+ "learning_rate": 2.287865878840673e-05,
499
+ "loss": 0.6018,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.0923076923076924,
504
+ "grad_norm": 1.1320775747299194,
505
+ "learning_rate": 2.2661012136286932e-05,
506
+ "loss": 0.592,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.1076923076923078,
511
+ "grad_norm": 0.9369445443153381,
512
+ "learning_rate": 2.2441161068358067e-05,
513
+ "loss": 0.579,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.123076923076923,
518
+ "grad_norm": 1.0818852186203003,
519
+ "learning_rate": 2.2219168845604614e-05,
520
+ "loss": 0.5693,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.1384615384615384,
525
+ "grad_norm": 1.0641779899597168,
526
+ "learning_rate": 2.1995099345117035e-05,
527
+ "loss": 0.5313,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.1538461538461537,
532
+ "grad_norm": 0.9953758120536804,
533
+ "learning_rate": 2.1769017041711508e-05,
534
+ "loss": 0.5949,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.1692307692307693,
539
+ "grad_norm": 1.0875123739242554,
540
+ "learning_rate": 2.1540986989377635e-05,
541
+ "loss": 0.5945,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.1846153846153846,
546
+ "grad_norm": 1.1269574165344238,
547
+ "learning_rate": 2.1311074802559464e-05,
548
+ "loss": 0.5914,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.2,
553
+ "grad_norm": 1.0737024545669556,
554
+ "learning_rate": 2.107934663727534e-05,
555
+ "loss": 0.5707,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.2153846153846155,
560
+ "grad_norm": 1.0038108825683594,
561
+ "learning_rate": 2.0845869172081802e-05,
562
+ "loss": 0.5929,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.2307692307692308,
567
+ "grad_norm": 1.0682005882263184,
568
+ "learning_rate": 2.0610709588887233e-05,
569
+ "loss": 0.5211,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.2461538461538462,
574
+ "grad_norm": 1.027268648147583,
575
+ "learning_rate": 2.037393555362056e-05,
576
+ "loss": 0.5378,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.2615384615384615,
581
+ "grad_norm": 1.1356418132781982,
582
+ "learning_rate": 2.013561519676079e-05,
583
+ "loss": 0.537,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.2769230769230768,
588
+ "grad_norm": 1.033194661140442,
589
+ "learning_rate": 1.989581709373281e-05,
590
+ "loss": 0.54,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.2923076923076924,
595
+ "grad_norm": 1.1161775588989258,
596
+ "learning_rate": 1.965461024517517e-05,
597
+ "loss": 0.527,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.3076923076923077,
602
+ "grad_norm": 1.2823989391326904,
603
+ "learning_rate": 1.9412064057085496e-05,
604
+ "loss": 0.5262,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.323076923076923,
609
+ "grad_norm": 1.1141964197158813,
610
+ "learning_rate": 1.916824832084931e-05,
611
+ "loss": 0.5473,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.3384615384615386,
616
+ "grad_norm": 1.1521342992782593,
617
+ "learning_rate": 1.892323319315791e-05,
618
+ "loss": 0.5212,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.353846153846154,
623
+ "grad_norm": 1.1139543056488037,
624
+ "learning_rate": 1.867708917582115e-05,
625
+ "loss": 0.5125,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.3692307692307693,
630
+ "grad_norm": 1.0473060607910156,
631
+ "learning_rate": 1.8429887095480917e-05,
632
+ "loss": 0.477,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.3846153846153846,
637
+ "grad_norm": 1.2336174249649048,
638
+ "learning_rate": 1.8181698083231162e-05,
639
+ "loss": 0.5332,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.4,
644
+ "grad_norm": 1.1250574588775635,
645
+ "learning_rate": 1.793259355415026e-05,
646
+ "loss": 0.5502,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.4153846153846155,
651
+ "grad_norm": 1.0635682344436646,
652
+ "learning_rate": 1.768264518675175e-05,
653
+ "loss": 0.5409,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.4307692307692308,
658
+ "grad_norm": 1.1778167486190796,
659
+ "learning_rate": 1.7431924902359168e-05,
660
+ "loss": 0.49,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.4461538461538461,
665
+ "grad_norm": 1.1598814725875854,
666
+ "learning_rate": 1.71805048444111e-05,
667
+ "loss": 0.5484,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.4615384615384617,
672
+ "grad_norm": 1.1300697326660156,
673
+ "learning_rate": 1.692845735770228e-05,
674
+ "loss": 0.4913,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.476923076923077,
679
+ "grad_norm": 1.0996512174606323,
680
+ "learning_rate": 1.667585496756676e-05,
681
+ "loss": 0.4471,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.4923076923076923,
686
+ "grad_norm": 1.250686526298523,
687
+ "learning_rate": 1.642277035900912e-05,
688
+ "loss": 0.5164,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.5076923076923077,
693
+ "grad_norm": 1.1898046731948853,
694
+ "learning_rate": 1.6169276355789747e-05,
695
+ "loss": 0.546,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.523076923076923,
700
+ "grad_norm": 1.2050820589065552,
701
+ "learning_rate": 1.5915445899470185e-05,
702
+ "loss": 0.4694,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.5384615384615383,
707
+ "grad_norm": 1.1026623249053955,
708
+ "learning_rate": 1.5661352028424573e-05,
709
+ "loss": 0.4641,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.5538461538461539,
714
+ "grad_norm": 1.181199312210083,
715
+ "learning_rate": 1.5407067856823252e-05,
716
+ "loss": 0.4485,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.5692307692307692,
721
+ "grad_norm": 1.0810766220092773,
722
+ "learning_rate": 1.515266655359455e-05,
723
+ "loss": 0.4762,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.5846153846153848,
728
+ "grad_norm": 1.1683320999145508,
729
+ "learning_rate": 1.4898221321370785e-05,
730
+ "loss": 0.4701,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.6,
735
+ "grad_norm": 1.2383395433425903,
736
+ "learning_rate": 1.4643805375424637e-05,
737
+ "loss": 0.4816,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.6153846153846154,
742
+ "grad_norm": 1.0712422132492065,
743
+ "learning_rate": 1.438949192260179e-05,
744
+ "loss": 0.4473,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.6307692307692307,
749
+ "grad_norm": 1.1591110229492188,
750
+ "learning_rate": 1.413535414025608e-05,
751
+ "loss": 0.4308,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.646153846153846,
756
+ "grad_norm": 1.138411283493042,
757
+ "learning_rate": 1.3881465155193107e-05,
758
+ "loss": 0.4879,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.6615384615384614,
763
+ "grad_norm": 1.1001267433166504,
764
+ "learning_rate": 1.362789802262834e-05,
765
+ "loss": 0.4762,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.676923076923077,
770
+ "grad_norm": 1.220465898513794,
771
+ "learning_rate": 1.337472570516591e-05,
772
+ "loss": 0.4094,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.6923076923076923,
777
+ "grad_norm": 1.1158863306045532,
778
+ "learning_rate": 1.3122021051803974e-05,
779
+ "loss": 0.4694,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.7076923076923078,
784
+ "grad_norm": 1.2002766132354736,
785
+ "learning_rate": 1.286985677697281e-05,
786
+ "loss": 0.4276,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.7230769230769232,
791
+ "grad_norm": 1.1275635957717896,
792
+ "learning_rate": 1.2618305439611647e-05,
793
+ "loss": 0.4689,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.7384615384615385,
798
+ "grad_norm": 1.297777533531189,
799
+ "learning_rate": 1.236743942229017e-05,
800
+ "loss": 0.4617,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.7538461538461538,
805
+ "grad_norm": 1.2170557975769043,
806
+ "learning_rate": 1.2117330910380846e-05,
807
+ "loss": 0.4051,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.7692307692307692,
812
+ "grad_norm": 1.2399832010269165,
813
+ "learning_rate": 1.1868051871287964e-05,
814
+ "loss": 0.4547,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.7846153846153845,
819
+ "grad_norm": 1.2813540697097778,
820
+ "learning_rate": 1.161967403373937e-05,
821
+ "loss": 0.4369,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.8,
826
+ "grad_norm": 1.2256884574890137,
827
+ "learning_rate": 1.137226886714695e-05,
828
+ "loss": 0.4332,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.8153846153846154,
833
+ "grad_norm": 1.467110276222229,
834
+ "learning_rate": 1.1125907561041636e-05,
835
+ "loss": 0.4539,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.830769230769231,
840
+ "grad_norm": 1.1153144836425781,
841
+ "learning_rate": 1.0880661004589008e-05,
842
+ "loss": 0.4214,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.8461538461538463,
847
+ "grad_norm": 1.177450180053711,
848
+ "learning_rate": 1.0636599766191336e-05,
849
+ "loss": 0.4453,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.8615384615384616,
854
+ "grad_norm": 1.2653224468231201,
855
+ "learning_rate": 1.0393794073181874e-05,
856
+ "loss": 0.4127,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.876923076923077,
861
+ "grad_norm": 1.1197375059127808,
862
+ "learning_rate": 1.0152313791617299e-05,
863
+ "loss": 0.422,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.8923076923076922,
868
+ "grad_norm": 1.1471089124679565,
869
+ "learning_rate": 9.912228406174155e-06,
870
+ "loss": 0.4434,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.9076923076923076,
875
+ "grad_norm": 1.133317470550537,
876
+ "learning_rate": 9.67360700015498e-06,
877
+ "loss": 0.4197,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.9230769230769231,
882
+ "grad_norm": 1.1511826515197754,
883
+ "learning_rate": 9.436518235609969e-06,
884
+ "loss": 0.4271,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.9384615384615385,
889
+ "grad_norm": 1.30781090259552,
890
+ "learning_rate": 9.201030333579816e-06,
891
+ "loss": 0.3939,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.953846153846154,
896
+ "grad_norm": 1.1271767616271973,
897
+ "learning_rate": 8.96721105446548e-06,
898
+ "loss": 0.3711,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.9692307692307693,
903
+ "grad_norm": 1.098168134689331,
904
+ "learning_rate": 8.735127678530473e-06,
905
+ "loss": 0.3663,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.9846153846153847,
910
+ "grad_norm": 1.142554521560669,
911
+ "learning_rate": 8.504846986541336e-06,
912
+ "loss": 0.3951,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 2.0,
917
+ "grad_norm": 1.1693685054779053,
918
+ "learning_rate": 8.276435240551819e-06,
919
+ "loss": 0.3729,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 2.0153846153846153,
924
+ "grad_norm": 1.2102603912353516,
925
+ "learning_rate": 8.04995816483632e-06,
926
+ "loss": 0.3402,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 2.0307692307692307,
931
+ "grad_norm": 1.119484782218933,
932
+ "learning_rate": 7.82548092697809e-06,
933
+ "loss": 0.314,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 2.046153846153846,
938
+ "grad_norm": 1.3012409210205078,
939
+ "learning_rate": 7.603068119117569e-06,
940
+ "loss": 0.3415,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 2.0615384615384613,
945
+ "grad_norm": 1.1300331354141235,
946
+ "learning_rate": 7.3827837393663725e-06,
947
+ "loss": 0.3379,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 2.076923076923077,
952
+ "grad_norm": 2.4324357509613037,
953
+ "learning_rate": 7.164691173392167e-06,
954
+ "loss": 0.3203,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 2.0923076923076924,
959
+ "grad_norm": 1.119283676147461,
960
+ "learning_rate": 6.9488531761797625e-06,
961
+ "loss": 0.3326,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 2.1076923076923078,
966
+ "grad_norm": 1.340505838394165,
967
+ "learning_rate": 6.73533185397372e-06,
968
+ "loss": 0.3345,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 2.123076923076923,
973
+ "grad_norm": 1.2588993310928345,
974
+ "learning_rate": 6.524188646407571e-06,
975
+ "loss": 0.3304,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.1384615384615384,
980
+ "grad_norm": 1.0824459791183472,
981
+ "learning_rate": 6.315484308824933e-06,
982
+ "loss": 0.3243,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.1538461538461537,
987
+ "grad_norm": 1.2945126295089722,
988
+ "learning_rate": 6.109278894797447e-06,
989
+ "loss": 0.3171,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.169230769230769,
994
+ "grad_norm": 1.2287533283233643,
995
+ "learning_rate": 5.905631738844694e-06,
996
+ "loss": 0.2892,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.184615384615385,
1001
+ "grad_norm": 1.2344982624053955,
1002
+ "learning_rate": 5.704601439360997e-06,
1003
+ "loss": 0.3165,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.2,
1008
+ "grad_norm": 1.204910159111023,
1009
+ "learning_rate": 5.506245841754031e-06,
1010
+ "loss": 0.3033,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.2153846153846155,
1015
+ "grad_norm": 1.114548921585083,
1016
+ "learning_rate": 5.310622021800134e-06,
1017
+ "loss": 0.2886,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.230769230769231,
1022
+ "grad_norm": 1.2904489040374756,
1023
+ "learning_rate": 5.117786269221036e-06,
1024
+ "loss": 0.2853,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.246153846153846,
1029
+ "grad_norm": 1.241295337677002,
1030
+ "learning_rate": 4.927794071486797e-06,
1031
+ "loss": 0.336,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.2615384615384615,
1036
+ "grad_norm": 1.2287375926971436,
1037
+ "learning_rate": 4.740700097849584e-06,
1038
+ "loss": 0.322,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.276923076923077,
1043
+ "grad_norm": 1.2263306379318237,
1044
+ "learning_rate": 4.556558183612854e-06,
1045
+ "loss": 0.2966,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.292307692307692,
1050
+ "grad_norm": 1.2219051122665405,
1051
+ "learning_rate": 4.375421314640586e-06,
1052
+ "loss": 0.2969,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.3076923076923075,
1057
+ "grad_norm": 1.0307724475860596,
1058
+ "learning_rate": 4.197341612110815e-06,
1059
+ "loss": 0.2875,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.3230769230769233,
1064
+ "grad_norm": 1.1877847909927368,
1065
+ "learning_rate": 4.0223703175180805e-06,
1066
+ "loss": 0.3148,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.3384615384615386,
1071
+ "grad_norm": 1.30415678024292,
1072
+ "learning_rate": 3.850557777928945e-06,
1073
+ "loss": 0.3157,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.353846153846154,
1078
+ "grad_norm": 1.2754899263381958,
1079
+ "learning_rate": 3.6819534314948737e-06,
1080
+ "loss": 0.3304,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.3692307692307693,
1085
+ "grad_norm": 1.31760835647583,
1086
+ "learning_rate": 3.516605793226715e-06,
1087
+ "loss": 0.2785,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.3846153846153846,
1092
+ "grad_norm": 1.368857502937317,
1093
+ "learning_rate": 3.354562441034695e-06,
1094
+ "loss": 0.3498,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.4,
1099
+ "grad_norm": 1.2310904264450073,
1100
+ "learning_rate": 3.195870002038186e-06,
1101
+ "loss": 0.3047,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.4153846153846152,
1106
+ "grad_norm": 1.2456750869750977,
1107
+ "learning_rate": 3.0405741391489648e-06,
1108
+ "loss": 0.2946,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.430769230769231,
1113
+ "grad_norm": 1.1788861751556396,
1114
+ "learning_rate": 2.888719537931952e-06,
1115
+ "loss": 0.2875,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.4461538461538463,
1120
+ "grad_norm": 1.2730480432510376,
1121
+ "learning_rate": 2.7403498937472053e-06,
1122
+ "loss": 0.2942,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.4615384615384617,
1127
+ "grad_norm": 1.1647406816482544,
1128
+ "learning_rate": 2.595507899176767e-06,
1129
+ "loss": 0.27,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.476923076923077,
1134
+ "grad_norm": 1.198189616203308,
1135
+ "learning_rate": 2.4542352317401346e-06,
1136
+ "loss": 0.2756,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.4923076923076923,
1141
+ "grad_norm": 1.2865256071090698,
1142
+ "learning_rate": 2.3165725419017485e-06,
1143
+ "loss": 0.2888,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.5076923076923077,
1148
+ "grad_norm": 1.0661184787750244,
1149
+ "learning_rate": 2.182559441374069e-06,
1150
+ "loss": 0.3119,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.523076923076923,
1155
+ "grad_norm": 1.054689645767212,
1156
+ "learning_rate": 2.0522344917194692e-06,
1157
+ "loss": 0.2733,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.5384615384615383,
1162
+ "grad_norm": 1.1389565467834473,
1163
+ "learning_rate": 1.9256351932543927e-06,
1164
+ "loss": 0.2558,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.5538461538461537,
1169
+ "grad_norm": 1.2306803464889526,
1170
+ "learning_rate": 1.8027979742588086e-06,
1171
+ "loss": 0.2736,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.569230769230769,
1176
+ "grad_norm": 1.164689302444458,
1177
+ "learning_rate": 1.6837581804941681e-06,
1178
+ "loss": 0.2723,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.5846153846153848,
1183
+ "grad_norm": 1.1324998140335083,
1184
+ "learning_rate": 1.5685500650328716e-06,
1185
+ "loss": 0.2947,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.6,
1190
+ "grad_norm": 1.088495135307312,
1191
+ "learning_rate": 1.457206778402092e-06,
1192
+ "loss": 0.3083,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.6153846153846154,
1197
+ "grad_norm": 1.170236349105835,
1198
+ "learning_rate": 1.3497603590449131e-06,
1199
+ "loss": 0.2784,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.6307692307692307,
1204
+ "grad_norm": 1.5001955032348633,
1205
+ "learning_rate": 1.2462417241014296e-06,
1206
+ "loss": 0.263,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.646153846153846,
1211
+ "grad_norm": 1.0977262258529663,
1212
+ "learning_rate": 1.1466806605124885e-06,
1213
+ "loss": 0.2946,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.6615384615384614,
1218
+ "grad_norm": 1.170884370803833,
1219
+ "learning_rate": 1.0511058164486891e-06,
1220
+ "loss": 0.2731,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.676923076923077,
1225
+ "grad_norm": 1.1168737411499023,
1226
+ "learning_rate": 9.595446930669782e-07,
1227
+ "loss": 0.2932,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.6923076923076925,
1232
+ "grad_norm": 0.9551454782485962,
1233
+ "learning_rate": 8.720236365973699e-07,
1234
+ "loss": 0.2856,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.707692307692308,
1239
+ "grad_norm": 1.2225338220596313,
1240
+ "learning_rate": 7.88567830761952e-07,
1241
+ "loss": 0.2927,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.723076923076923,
1246
+ "grad_norm": 1.1854199171066284,
1247
+ "learning_rate": 7.09201289528384e-07,
1248
+ "loss": 0.293,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.7384615384615385,
1253
+ "grad_norm": 1.2780221700668335,
1254
+ "learning_rate": 6.339468502000356e-07,
1255
+ "loss": 0.2686,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.753846153846154,
1260
+ "grad_norm": 1.1779381036758423,
1261
+ "learning_rate": 5.628261668446394e-07,
1262
+ "loss": 0.2651,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.769230769230769,
1267
+ "grad_norm": 1.2358449697494507,
1268
+ "learning_rate": 4.958597040634738e-07,
1269
+ "loss": 0.2698,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.7846153846153845,
1274
+ "grad_norm": 1.1855942010879517,
1275
+ "learning_rate": 4.330667311027708e-07,
1276
+ "loss": 0.2722,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.8,
1281
+ "grad_norm": 1.2545822858810425,
1282
+ "learning_rate": 3.744653163090911e-07,
1283
+ "loss": 0.3136,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.815384615384615,
1288
+ "grad_norm": 1.0530261993408203,
1289
+ "learning_rate": 3.2007232193025757e-07,
1290
+ "loss": 0.3026,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.830769230769231,
1295
+ "grad_norm": 1.1272757053375244,
1296
+ "learning_rate": 2.699033992633254e-07,
1297
+ "loss": 0.2677,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.8461538461538463,
1302
+ "grad_norm": 1.1116807460784912,
1303
+ "learning_rate": 2.2397298415101407e-07,
1304
+ "loss": 0.2729,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.8615384615384616,
1309
+ "grad_norm": 1.3207794427871704,
1310
+ "learning_rate": 1.8229429282786036e-07,
1311
+ "loss": 0.2904,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.876923076923077,
1316
+ "grad_norm": 1.1643859148025513,
1317
+ "learning_rate": 1.4487931811732192e-07,
1318
+ "loss": 0.2849,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.8923076923076922,
1323
+ "grad_norm": 1.3089182376861572,
1324
+ "learning_rate": 1.1173882598090435e-07,
1325
+ "loss": 0.2775,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.9076923076923076,
1330
+ "grad_norm": 1.2784730195999146,
1331
+ "learning_rate": 8.288235242030928e-08,
1332
+ "loss": 0.3089,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.9230769230769234,
1337
+ "grad_norm": 1.116310477256775,
1338
+ "learning_rate": 5.831820073350591e-08,
1339
+ "loss": 0.2679,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.9384615384615387,
1344
+ "grad_norm": 1.16549813747406,
1345
+ "learning_rate": 3.8053439125500525e-08,
1346
+ "loss": 0.2813,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.953846153846154,
1351
+ "grad_norm": 1.0756598711013794,
1352
+ "learning_rate": 2.2093898674490076e-08,
1353
+ "loss": 0.2442,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.9692307692307693,
1358
+ "grad_norm": 1.2326387166976929,
1359
+ "learning_rate": 1.044417165400935e-08,
1360
+ "loss": 0.2909,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.9846153846153847,
1365
+ "grad_norm": 1.189927101135254,
1366
+ "learning_rate": 3.107610211524614e-09,
1367
+ "loss": 0.306,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 3.0,
1372
+ "grad_norm": 1.2568256855010986,
1373
+ "learning_rate": 8.632540387021327e-11,
1374
+ "loss": 0.2946,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 3.0,
1379
+ "step": 975,
1380
+ "total_flos": 1.3711430478609777e+18,
1381
+ "train_loss": 0.6045596268238166,
1382
+ "train_runtime": 644.6715,
1383
+ "train_samples_per_second": 48.373,
1384
+ "train_steps_per_second": 1.512
1385
+ }
1386
+ ],
1387
+ "logging_steps": 5,
1388
+ "max_steps": 975,
1389
+ "num_input_tokens_seen": 0,
1390
+ "num_train_epochs": 3,
1391
+ "save_steps": 20000,
1392
+ "stateful_callbacks": {
1393
+ "TrainerControl": {
1394
+ "args": {
1395
+ "should_epoch_stop": false,
1396
+ "should_evaluate": false,
1397
+ "should_log": false,
1398
+ "should_save": false,
1399
+ "should_training_stop": false
1400
+ },
1401
+ "attributes": {}
1402
+ }
1403
+ },
1404
+ "total_flos": 1.3711430478609777e+18,
1405
+ "train_batch_size": 2,
1406
+ "trial_name": null,
1407
+ "trial_params": null
1408
+ }
126_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f484ff76685ec9041bb488e3667b2482461a65c37bd096c5e5d1c2807bc2a739
3
+ size 8273
126_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff