RayDu0010 commited on
Commit
d39bf10
·
verified ·
1 Parent(s): 7659d1e

Upload folder using huggingface_hub

Browse files
9_128_e3_3e-5/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "ibm-granite/granite-3.3-8b-instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 256,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 128,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "v_proj",
28
+ "up_proj",
29
+ "down_proj",
30
+ "o_proj",
31
+ "k_proj",
32
+ "gate_proj",
33
+ "q_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
9_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a7d4b109e4e9d36739e78f5757eeaf34fd63d04c5f3673d027bd8946e15b25d
3
+ size 791751704
9_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
+ }
9_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.9997709539779543e+18,
4
+ "train_loss": 0.49729131393091025,
5
+ "train_runtime": 968.4082,
6
+ "train_samples": 14586,
7
+ "train_samples_per_second": 45.185,
8
+ "train_steps_per_second": 1.413
9
+ }
9_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 %}
9_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
+ }
9_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
9_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
+ }
9_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
9_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
+ }
9_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.9997709539779543e+18,
4
+ "train_loss": 0.49729131393091025,
5
+ "train_runtime": 968.4082,
6
+ "train_samples": 14586,
7
+ "train_samples_per_second": 45.185,
8
+ "train_steps_per_second": 1.413
9
+ }
9_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1954 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1368,
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.010964912280701754,
14
+ "grad_norm": 3.24426531791687,
15
+ "learning_rate": 1.7391304347826088e-06,
16
+ "loss": 1.4932,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.021929824561403508,
21
+ "grad_norm": 2.1502578258514404,
22
+ "learning_rate": 3.913043478260869e-06,
23
+ "loss": 1.4498,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.03289473684210526,
28
+ "grad_norm": 1.2595070600509644,
29
+ "learning_rate": 6.086956521739131e-06,
30
+ "loss": 1.3814,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.043859649122807015,
35
+ "grad_norm": 0.7001549005508423,
36
+ "learning_rate": 8.260869565217392e-06,
37
+ "loss": 1.3215,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.05482456140350877,
42
+ "grad_norm": 0.4792288839817047,
43
+ "learning_rate": 1.0434782608695653e-05,
44
+ "loss": 1.2688,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.06578947368421052,
49
+ "grad_norm": 0.3867693841457367,
50
+ "learning_rate": 1.2608695652173912e-05,
51
+ "loss": 1.2524,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.07675438596491228,
56
+ "grad_norm": 0.4167414605617523,
57
+ "learning_rate": 1.4782608695652174e-05,
58
+ "loss": 1.2529,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.08771929824561403,
63
+ "grad_norm": 0.438427597284317,
64
+ "learning_rate": 1.6956521739130433e-05,
65
+ "loss": 1.2756,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.09868421052631579,
70
+ "grad_norm": 0.40318217873573303,
71
+ "learning_rate": 1.9130434782608694e-05,
72
+ "loss": 1.1826,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.10964912280701754,
77
+ "grad_norm": 0.49343574047088623,
78
+ "learning_rate": 2.1304347826086958e-05,
79
+ "loss": 1.1891,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.1206140350877193,
84
+ "grad_norm": 0.37749776244163513,
85
+ "learning_rate": 2.347826086956522e-05,
86
+ "loss": 1.2024,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.13157894736842105,
91
+ "grad_norm": 0.3650110960006714,
92
+ "learning_rate": 2.565217391304348e-05,
93
+ "loss": 1.195,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.1425438596491228,
98
+ "grad_norm": 0.5029582381248474,
99
+ "learning_rate": 2.782608695652174e-05,
100
+ "loss": 1.1836,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.15350877192982457,
105
+ "grad_norm": 0.36065730452537537,
106
+ "learning_rate": 3e-05,
107
+ "loss": 1.1111,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.16447368421052633,
112
+ "grad_norm": 0.42705437541007996,
113
+ "learning_rate": 2.999890332631331e-05,
114
+ "loss": 1.1878,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.17543859649122806,
119
+ "grad_norm": 0.42906564474105835,
120
+ "learning_rate": 2.999561346561234e-05,
121
+ "loss": 1.1339,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.18640350877192982,
126
+ "grad_norm": 0.3949109613895416,
127
+ "learning_rate": 2.9990130898950905e-05,
128
+ "loss": 1.0679,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.19736842105263158,
133
+ "grad_norm": 0.46161895990371704,
134
+ "learning_rate": 2.9982456428007215e-05,
135
+ "loss": 1.1259,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.20833333333333334,
140
+ "grad_norm": 0.472602516412735,
141
+ "learning_rate": 2.9972591174966656e-05,
142
+ "loss": 1.0261,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.21929824561403508,
147
+ "grad_norm": 0.4412432014942169,
148
+ "learning_rate": 2.996053658235768e-05,
149
+ "loss": 1.014,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.23026315789473684,
154
+ "grad_norm": 0.41926974058151245,
155
+ "learning_rate": 2.994629441284089e-05,
156
+ "loss": 1.0404,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.2412280701754386,
161
+ "grad_norm": 0.46813884377479553,
162
+ "learning_rate": 2.9929866748951292e-05,
163
+ "loss": 1.0692,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.25219298245614036,
168
+ "grad_norm": 0.46364185214042664,
169
+ "learning_rate": 2.9911255992793788e-05,
170
+ "loss": 1.0182,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.2631578947368421,
175
+ "grad_norm": 0.4689925014972687,
176
+ "learning_rate": 2.9890464865691914e-05,
177
+ "loss": 0.9718,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.2741228070175439,
182
+ "grad_norm": 0.5339643359184265,
183
+ "learning_rate": 2.9867496407789935e-05,
184
+ "loss": 0.9994,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.2850877192982456,
189
+ "grad_norm": 0.4611864686012268,
190
+ "learning_rate": 2.9842353977608316e-05,
191
+ "loss": 0.9998,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.29605263157894735,
196
+ "grad_norm": 0.5565639138221741,
197
+ "learning_rate": 2.9815041251552594e-05,
198
+ "loss": 1.0322,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.30701754385964913,
203
+ "grad_norm": 0.6286779642105103,
204
+ "learning_rate": 2.978556222337584e-05,
205
+ "loss": 1.0102,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.31798245614035087,
210
+ "grad_norm": 0.5537821650505066,
211
+ "learning_rate": 2.9753921203594646e-05,
212
+ "loss": 0.9312,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.32894736842105265,
217
+ "grad_norm": 0.600766658782959,
218
+ "learning_rate": 2.972012281885886e-05,
219
+ "loss": 0.9943,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.3399122807017544,
224
+ "grad_norm": 0.5232401490211487,
225
+ "learning_rate": 2.968417201127504e-05,
226
+ "loss": 0.9611,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.3508771929824561,
231
+ "grad_norm": 0.5713093876838684,
232
+ "learning_rate": 2.9646074037683818e-05,
233
+ "loss": 0.9487,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.3618421052631579,
238
+ "grad_norm": 0.570633590221405,
239
+ "learning_rate": 2.9605834468891202e-05,
240
+ "loss": 0.9353,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.37280701754385964,
245
+ "grad_norm": 0.6094421744346619,
246
+ "learning_rate": 2.9563459188854033e-05,
247
+ "loss": 0.934,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.38377192982456143,
252
+ "grad_norm": 0.6095627546310425,
253
+ "learning_rate": 2.9518954393819587e-05,
254
+ "loss": 0.9962,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.39473684210526316,
259
+ "grad_norm": 0.5608710646629333,
260
+ "learning_rate": 2.9472326591419556e-05,
261
+ "loss": 0.901,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.4057017543859649,
266
+ "grad_norm": 0.5257043838500977,
267
+ "learning_rate": 2.9423582599718464e-05,
268
+ "loss": 0.9036,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.4166666666666667,
273
+ "grad_norm": 0.7401961088180542,
274
+ "learning_rate": 2.9372729546216718e-05,
275
+ "loss": 0.9458,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.4276315789473684,
280
+ "grad_norm": 0.6545663475990295,
281
+ "learning_rate": 2.9319774866808414e-05,
282
+ "loss": 0.8378,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.43859649122807015,
287
+ "grad_norm": 0.7008340358734131,
288
+ "learning_rate": 2.926472630469401e-05,
289
+ "loss": 0.8717,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.44956140350877194,
294
+ "grad_norm": 0.6411566138267517,
295
+ "learning_rate": 2.9207591909248117e-05,
296
+ "loss": 0.8359,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.4605263157894737,
301
+ "grad_norm": 0.6739814281463623,
302
+ "learning_rate": 2.9148380034842482e-05,
303
+ "loss": 0.8357,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.47149122807017546,
308
+ "grad_norm": 0.6448566317558289,
309
+ "learning_rate": 2.9087099339624388e-05,
310
+ "loss": 0.8301,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.4824561403508772,
315
+ "grad_norm": 0.7340844869613647,
316
+ "learning_rate": 2.902375878425062e-05,
317
+ "loss": 0.8351,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.4934210526315789,
322
+ "grad_norm": 0.7562801837921143,
323
+ "learning_rate": 2.8958367630577235e-05,
324
+ "loss": 0.8045,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.5043859649122807,
329
+ "grad_norm": 0.7216281294822693,
330
+ "learning_rate": 2.8890935440305247e-05,
331
+ "loss": 0.8075,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.5153508771929824,
336
+ "grad_norm": 0.6866181492805481,
337
+ "learning_rate": 2.882147207358247e-05,
338
+ "loss": 0.8269,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.5263157894736842,
343
+ "grad_norm": 0.7293913960456848,
344
+ "learning_rate": 2.8749987687561775e-05,
345
+ "loss": 0.8048,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.5372807017543859,
350
+ "grad_norm": 0.7445973753929138,
351
+ "learning_rate": 2.867649273491585e-05,
352
+ "loss": 0.8416,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.5482456140350878,
357
+ "grad_norm": 0.7006743550300598,
358
+ "learning_rate": 2.8600997962308786e-05,
359
+ "loss": 0.7928,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.5592105263157895,
364
+ "grad_norm": 0.7185664176940918,
365
+ "learning_rate": 2.852351440882466e-05,
366
+ "loss": 0.8392,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.5701754385964912,
371
+ "grad_norm": 0.7762722373008728,
372
+ "learning_rate": 2.8444053404353372e-05,
373
+ "loss": 0.7783,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.581140350877193,
378
+ "grad_norm": 0.800458550453186,
379
+ "learning_rate": 2.8362626567933958e-05,
380
+ "loss": 0.7992,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.5921052631578947,
385
+ "grad_norm": 0.7102886438369751,
386
+ "learning_rate": 2.8279245806055592e-05,
387
+ "loss": 0.7493,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.6030701754385965,
392
+ "grad_norm": 0.7695249319076538,
393
+ "learning_rate": 2.8193923310916624e-05,
394
+ "loss": 0.7832,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.6140350877192983,
399
+ "grad_norm": 0.7752018570899963,
400
+ "learning_rate": 2.8106671558641753e-05,
401
+ "loss": 0.7556,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.625,
406
+ "grad_norm": 0.7446553111076355,
407
+ "learning_rate": 2.8017503307457763e-05,
408
+ "loss": 0.7318,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.6359649122807017,
413
+ "grad_norm": 0.8375803232192993,
414
+ "learning_rate": 2.7926431595827945e-05,
415
+ "loss": 0.7435,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.6469298245614035,
420
+ "grad_norm": 0.7837749719619751,
421
+ "learning_rate": 2.783346974054561e-05,
422
+ "loss": 0.7501,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.6578947368421053,
427
+ "grad_norm": 0.7391999363899231,
428
+ "learning_rate": 2.7738631334786825e-05,
429
+ "loss": 0.721,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.668859649122807,
434
+ "grad_norm": 0.7342454791069031,
435
+ "learning_rate": 2.7641930246122806e-05,
436
+ "loss": 0.6731,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.6798245614035088,
441
+ "grad_norm": 0.8315247297286987,
442
+ "learning_rate": 2.7543380614492134e-05,
443
+ "loss": 0.7283,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.6907894736842105,
448
+ "grad_norm": 0.8511914610862732,
449
+ "learning_rate": 2.7442996850133197e-05,
450
+ "loss": 0.6996,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.7017543859649122,
455
+ "grad_norm": 0.8434128761291504,
456
+ "learning_rate": 2.7340793631477043e-05,
457
+ "loss": 0.7237,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.7127192982456141,
462
+ "grad_norm": 0.9416542053222656,
463
+ "learning_rate": 2.7236785903001095e-05,
464
+ "loss": 0.7171,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.7236842105263158,
469
+ "grad_norm": 0.856392502784729,
470
+ "learning_rate": 2.713098887304389e-05,
471
+ "loss": 0.709,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.7346491228070176,
476
+ "grad_norm": 0.7916982173919678,
477
+ "learning_rate": 2.702341801158127e-05,
478
+ "loss": 0.723,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.7456140350877193,
483
+ "grad_norm": 0.9043979048728943,
484
+ "learning_rate": 2.6914089047964342e-05,
485
+ "loss": 0.6858,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.756578947368421,
490
+ "grad_norm": 0.8785055875778198,
491
+ "learning_rate": 2.6803017968619445e-05,
492
+ "loss": 0.6559,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.7675438596491229,
497
+ "grad_norm": 0.8278961777687073,
498
+ "learning_rate": 2.6690221014710585e-05,
499
+ "loss": 0.6677,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.7785087719298246,
504
+ "grad_norm": 0.8543934226036072,
505
+ "learning_rate": 2.6575714679764613e-05,
506
+ "loss": 0.6494,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.7894736842105263,
511
+ "grad_norm": 0.9262869358062744,
512
+ "learning_rate": 2.6459515707259447e-05,
513
+ "loss": 0.6293,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 0.8004385964912281,
518
+ "grad_norm": 0.8156819939613342,
519
+ "learning_rate": 2.634164108817584e-05,
520
+ "loss": 0.6507,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 0.8114035087719298,
525
+ "grad_norm": 0.9190047383308411,
526
+ "learning_rate": 2.6222108058512866e-05,
527
+ "loss": 0.6386,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 0.8223684210526315,
532
+ "grad_norm": 0.863660454750061,
533
+ "learning_rate": 2.610093409676763e-05,
534
+ "loss": 0.6369,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 0.8333333333333334,
539
+ "grad_norm": 1.0574290752410889,
540
+ "learning_rate": 2.597813692137952e-05,
541
+ "loss": 0.62,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 0.8442982456140351,
546
+ "grad_norm": 0.8489395976066589,
547
+ "learning_rate": 2.5853734488139337e-05,
548
+ "loss": 0.646,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 0.8552631578947368,
553
+ "grad_norm": 0.9370837807655334,
554
+ "learning_rate": 2.5727744987563765e-05,
555
+ "loss": 0.63,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 0.8662280701754386,
560
+ "grad_norm": 0.9266082644462585,
561
+ "learning_rate": 2.5600186842235476e-05,
562
+ "loss": 0.6068,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 0.8771929824561403,
567
+ "grad_norm": 0.8708203434944153,
568
+ "learning_rate": 2.5471078704109335e-05,
569
+ "loss": 0.6095,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 0.8881578947368421,
574
+ "grad_norm": 0.7840025424957275,
575
+ "learning_rate": 2.5340439451785065e-05,
576
+ "loss": 0.6108,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 0.8991228070175439,
581
+ "grad_norm": 0.9310855865478516,
582
+ "learning_rate": 2.5208288187746717e-05,
583
+ "loss": 0.632,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 0.9100877192982456,
588
+ "grad_norm": 0.8249394297599792,
589
+ "learning_rate": 2.5074644235569487e-05,
590
+ "loss": 0.5878,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 0.9210526315789473,
595
+ "grad_norm": 0.9249837398529053,
596
+ "learning_rate": 2.4939527137094137e-05,
597
+ "loss": 0.5976,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 0.9320175438596491,
602
+ "grad_norm": 0.8325455188751221,
603
+ "learning_rate": 2.480295664956954e-05,
604
+ "loss": 0.6374,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 0.9429824561403509,
609
+ "grad_norm": 0.9041548371315002,
610
+ "learning_rate": 2.4664952742763697e-05,
611
+ "loss": 0.5983,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 0.9539473684210527,
616
+ "grad_norm": 0.9164990186691284,
617
+ "learning_rate": 2.4525535596043712e-05,
618
+ "loss": 0.5942,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 0.9649122807017544,
623
+ "grad_norm": 0.8874028325080872,
624
+ "learning_rate": 2.438472559542509e-05,
625
+ "loss": 0.6187,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 0.9758771929824561,
630
+ "grad_norm": 1.0253710746765137,
631
+ "learning_rate": 2.4242543330590828e-05,
632
+ "loss": 0.5603,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 0.9868421052631579,
637
+ "grad_norm": 0.826774537563324,
638
+ "learning_rate": 2.4099009591880734e-05,
639
+ "loss": 0.5702,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 0.9978070175438597,
644
+ "grad_norm": 0.8926154971122742,
645
+ "learning_rate": 2.3954145367251397e-05,
646
+ "loss": 0.6038,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.0087719298245614,
651
+ "grad_norm": 0.884126603603363,
652
+ "learning_rate": 2.3807971839207258e-05,
653
+ "loss": 0.5823,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.019736842105263,
658
+ "grad_norm": 0.8890111446380615,
659
+ "learning_rate": 2.3660510381703226e-05,
660
+ "loss": 0.5096,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.030701754385965,
665
+ "grad_norm": 0.8804746866226196,
666
+ "learning_rate": 2.3511782557019344e-05,
667
+ "loss": 0.4853,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.0416666666666667,
672
+ "grad_norm": 0.8731418251991272,
673
+ "learning_rate": 2.336181011260785e-05,
674
+ "loss": 0.5108,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.0526315789473684,
679
+ "grad_norm": 0.9769871234893799,
680
+ "learning_rate": 2.321061497791321e-05,
681
+ "loss": 0.4927,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.0635964912280702,
686
+ "grad_norm": 0.8549882173538208,
687
+ "learning_rate": 2.3058219261165537e-05,
688
+ "loss": 0.4572,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.0745614035087718,
693
+ "grad_norm": 0.9094993472099304,
694
+ "learning_rate": 2.2904645246147823e-05,
695
+ "loss": 0.4869,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.0855263157894737,
700
+ "grad_norm": 0.9365506172180176,
701
+ "learning_rate": 2.274991538893757e-05,
702
+ "loss": 0.4958,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.0964912280701755,
707
+ "grad_norm": 0.8872578740119934,
708
+ "learning_rate": 2.2594052314623165e-05,
709
+ "loss": 0.5302,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.1074561403508771,
714
+ "grad_norm": 0.8636729121208191,
715
+ "learning_rate": 2.243707881399559e-05,
716
+ "loss": 0.4744,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.118421052631579,
721
+ "grad_norm": 0.9333797097206116,
722
+ "learning_rate": 2.2279017840215868e-05,
723
+ "loss": 0.4918,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.1293859649122808,
728
+ "grad_norm": 1.0834002494812012,
729
+ "learning_rate": 2.2119892505458773e-05,
730
+ "loss": 0.4844,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.1403508771929824,
735
+ "grad_norm": 1.0561366081237793,
736
+ "learning_rate": 2.1959726077533307e-05,
737
+ "loss": 0.4558,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.1513157894736843,
742
+ "grad_norm": 0.9655598402023315,
743
+ "learning_rate": 2.1798541976480402e-05,
744
+ "loss": 0.4829,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.162280701754386,
749
+ "grad_norm": 0.977446436882019,
750
+ "learning_rate": 2.163636377114837e-05,
751
+ "loss": 0.4453,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.1732456140350878,
756
+ "grad_norm": 0.9137710928916931,
757
+ "learning_rate": 2.147321517574659e-05,
758
+ "loss": 0.4608,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.1842105263157894,
763
+ "grad_norm": 0.9051221013069153,
764
+ "learning_rate": 2.1309120046377944e-05,
765
+ "loss": 0.4626,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.1951754385964912,
770
+ "grad_norm": 1.0096217393875122,
771
+ "learning_rate": 2.1144102377550495e-05,
772
+ "loss": 0.4817,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.206140350877193,
777
+ "grad_norm": 1.0037966966629028,
778
+ "learning_rate": 2.0978186298668944e-05,
779
+ "loss": 0.4779,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.2171052631578947,
784
+ "grad_norm": 0.9060343503952026,
785
+ "learning_rate": 2.0811396070506343e-05,
786
+ "loss": 0.4081,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.2280701754385965,
791
+ "grad_norm": 1.028432846069336,
792
+ "learning_rate": 2.0643756081656616e-05,
793
+ "loss": 0.4355,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.2390350877192982,
798
+ "grad_norm": 1.0631004571914673,
799
+ "learning_rate": 2.0475290844968372e-05,
800
+ "loss": 0.4498,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.25,
805
+ "grad_norm": 0.9762498736381531,
806
+ "learning_rate": 2.0306024993960587e-05,
807
+ "loss": 0.4403,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.2609649122807016,
812
+ "grad_norm": 1.0591838359832764,
813
+ "learning_rate": 2.0135983279220557e-05,
814
+ "loss": 0.445,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.2719298245614035,
819
+ "grad_norm": 0.8875951766967773,
820
+ "learning_rate": 1.9965190564784848e-05,
821
+ "loss": 0.4249,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.2828947368421053,
826
+ "grad_norm": 0.9278407692909241,
827
+ "learning_rate": 1.979367182450357e-05,
828
+ "loss": 0.4918,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.293859649122807,
833
+ "grad_norm": 0.9412364363670349,
834
+ "learning_rate": 1.962145213838862e-05,
835
+ "loss": 0.4205,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.3048245614035088,
840
+ "grad_norm": 0.9890954494476318,
841
+ "learning_rate": 1.9448556688946403e-05,
842
+ "loss": 0.39,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.3157894736842106,
847
+ "grad_norm": 0.9949614405632019,
848
+ "learning_rate": 1.927501075749559e-05,
849
+ "loss": 0.4633,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.3267543859649122,
854
+ "grad_norm": 1.0368655920028687,
855
+ "learning_rate": 1.910083972047037e-05,
856
+ "loss": 0.4534,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.337719298245614,
861
+ "grad_norm": 0.9379305839538574,
862
+ "learning_rate": 1.8926069045709845e-05,
863
+ "loss": 0.4698,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.3486842105263157,
868
+ "grad_norm": 1.0334619283676147,
869
+ "learning_rate": 1.875072428873405e-05,
870
+ "loss": 0.4549,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.3596491228070176,
875
+ "grad_norm": 0.9264979362487793,
876
+ "learning_rate": 1.857483108900713e-05,
877
+ "loss": 0.3994,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.3706140350877192,
882
+ "grad_norm": 1.0656267404556274,
883
+ "learning_rate": 1.839841516618824e-05,
884
+ "loss": 0.4177,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.381578947368421,
889
+ "grad_norm": 0.9710007309913635,
890
+ "learning_rate": 1.82215023163708e-05,
891
+ "loss": 0.3933,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.3925438596491229,
896
+ "grad_norm": 0.9420899748802185,
897
+ "learning_rate": 1.8044118408310428e-05,
898
+ "loss": 0.4383,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.4035087719298245,
903
+ "grad_norm": 1.0052410364151,
904
+ "learning_rate": 1.7866289379642388e-05,
905
+ "loss": 0.4166,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.4144736842105263,
910
+ "grad_norm": 0.9635876417160034,
911
+ "learning_rate": 1.768804123308886e-05,
912
+ "loss": 0.4246,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.4254385964912282,
917
+ "grad_norm": 0.965676486492157,
918
+ "learning_rate": 1.75094000326568e-05,
919
+ "loss": 0.4121,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.4364035087719298,
924
+ "grad_norm": 1.079981803894043,
925
+ "learning_rate": 1.7330391899826706e-05,
926
+ "loss": 0.3998,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.4473684210526316,
931
+ "grad_norm": 1.0700271129608154,
932
+ "learning_rate": 1.7151043009733123e-05,
933
+ "loss": 0.3892,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.4583333333333333,
938
+ "grad_norm": 1.0209262371063232,
939
+ "learning_rate": 1.697137958733718e-05,
940
+ "loss": 0.4353,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.469298245614035,
945
+ "grad_norm": 1.0594371557235718,
946
+ "learning_rate": 1.6791427903591916e-05,
947
+ "loss": 0.4037,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.4802631578947367,
952
+ "grad_norm": 0.9944431185722351,
953
+ "learning_rate": 1.661121427160085e-05,
954
+ "loss": 0.3986,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.4912280701754386,
959
+ "grad_norm": 1.0131406784057617,
960
+ "learning_rate": 1.643076504277042e-05,
961
+ "loss": 0.3945,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.5021929824561404,
966
+ "grad_norm": 0.9437420964241028,
967
+ "learning_rate": 1.6250106602956753e-05,
968
+ "loss": 0.3663,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.513157894736842,
973
+ "grad_norm": 1.0365841388702393,
974
+ "learning_rate": 1.6069265368607488e-05,
975
+ "loss": 0.3574,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.5241228070175439,
980
+ "grad_norm": 1.088201642036438,
981
+ "learning_rate": 1.588826778289904e-05,
982
+ "loss": 0.3995,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.5350877192982457,
987
+ "grad_norm": 0.9893851280212402,
988
+ "learning_rate": 1.5707140311870037e-05,
989
+ "loss": 0.3423,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.5460526315789473,
994
+ "grad_norm": 1.1008005142211914,
995
+ "learning_rate": 1.5525909440551317e-05,
996
+ "loss": 0.338,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 1.557017543859649,
1001
+ "grad_norm": 1.01732337474823,
1002
+ "learning_rate": 1.5344601669093258e-05,
1003
+ "loss": 0.3854,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 1.567982456140351,
1008
+ "grad_norm": 0.9191359281539917,
1009
+ "learning_rate": 1.5163243508890813e-05,
1010
+ "loss": 0.3588,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 1.5789473684210527,
1015
+ "grad_norm": 0.9609974026679993,
1016
+ "learning_rate": 1.4981861478706945e-05,
1017
+ "loss": 0.3751,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 1.5899122807017543,
1022
+ "grad_norm": 0.9675068259239197,
1023
+ "learning_rate": 1.4800482100794941e-05,
1024
+ "loss": 0.3855,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 1.6008771929824561,
1029
+ "grad_norm": 1.0315802097320557,
1030
+ "learning_rate": 1.4619131897020278e-05,
1031
+ "loss": 0.3914,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 1.611842105263158,
1036
+ "grad_norm": 0.908302366733551,
1037
+ "learning_rate": 1.4437837384982504e-05,
1038
+ "loss": 0.3664,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 1.6228070175438596,
1043
+ "grad_norm": 0.9855623245239258,
1044
+ "learning_rate": 1.4256625074137738e-05,
1045
+ "loss": 0.397,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 1.6337719298245614,
1050
+ "grad_norm": 0.9747766256332397,
1051
+ "learning_rate": 1.4075521461922372e-05,
1052
+ "loss": 0.3444,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 1.6447368421052633,
1057
+ "grad_norm": 1.0947595834732056,
1058
+ "learning_rate": 1.3894553029878557e-05,
1059
+ "loss": 0.3417,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 1.655701754385965,
1064
+ "grad_norm": 0.957144558429718,
1065
+ "learning_rate": 1.3713746239781964e-05,
1066
+ "loss": 0.3931,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 1.6666666666666665,
1071
+ "grad_norm": 1.0409021377563477,
1072
+ "learning_rate": 1.3533127529772469e-05,
1073
+ "loss": 0.3473,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 1.6776315789473686,
1078
+ "grad_norm": 1.0445263385772705,
1079
+ "learning_rate": 1.3352723310488275e-05,
1080
+ "loss": 0.3278,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 1.6885964912280702,
1085
+ "grad_norm": 1.1239886283874512,
1086
+ "learning_rate": 1.3172559961204103e-05,
1087
+ "loss": 0.3277,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 1.6995614035087718,
1092
+ "grad_norm": 1.0442458391189575,
1093
+ "learning_rate": 1.2992663825973866e-05,
1094
+ "loss": 0.3905,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 1.7105263157894737,
1099
+ "grad_norm": 0.9254198670387268,
1100
+ "learning_rate": 1.2813061209778617e-05,
1101
+ "loss": 0.3257,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 1.7214912280701755,
1106
+ "grad_norm": 0.9384222626686096,
1107
+ "learning_rate": 1.2633778374680117e-05,
1108
+ "loss": 0.296,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 1.7324561403508771,
1113
+ "grad_norm": 0.9774355888366699,
1114
+ "learning_rate": 1.2454841535980735e-05,
1115
+ "loss": 0.352,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 1.743421052631579,
1120
+ "grad_norm": 1.020918369293213,
1121
+ "learning_rate": 1.2276276858390137e-05,
1122
+ "loss": 0.358,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 1.7543859649122808,
1127
+ "grad_norm": 0.9767550826072693,
1128
+ "learning_rate": 1.209811045219944e-05,
1129
+ "loss": 0.3411,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 1.7653508771929824,
1134
+ "grad_norm": 1.097368597984314,
1135
+ "learning_rate": 1.1920368369463245e-05,
1136
+ "loss": 0.292,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 1.776315789473684,
1141
+ "grad_norm": 0.9820191264152527,
1142
+ "learning_rate": 1.1743076600190237e-05,
1143
+ "loss": 0.3215,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 1.787280701754386,
1148
+ "grad_norm": 1.0999784469604492,
1149
+ "learning_rate": 1.1566261068542843e-05,
1150
+ "loss": 0.3386,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 1.7982456140350878,
1155
+ "grad_norm": 0.9196261167526245,
1156
+ "learning_rate": 1.138994762904653e-05,
1157
+ "loss": 0.3284,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 1.8092105263157894,
1162
+ "grad_norm": 1.006937861442566,
1163
+ "learning_rate": 1.1214162062809253e-05,
1164
+ "loss": 0.3159,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 1.8201754385964912,
1169
+ "grad_norm": 1.019486427307129,
1170
+ "learning_rate": 1.1038930073751678e-05,
1171
+ "loss": 0.2926,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 1.831140350877193,
1176
+ "grad_norm": 1.008124589920044,
1177
+ "learning_rate": 1.0864277284848672e-05,
1178
+ "loss": 0.3207,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 1.8421052631578947,
1183
+ "grad_norm": 1.1085612773895264,
1184
+ "learning_rate": 1.0690229234382621e-05,
1185
+ "loss": 0.3469,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 1.8530701754385965,
1190
+ "grad_norm": 0.9389194250106812,
1191
+ "learning_rate": 1.0516811372209143e-05,
1192
+ "loss": 0.3348,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 1.8640350877192984,
1197
+ "grad_norm": 1.0715816020965576,
1198
+ "learning_rate": 1.0344049056035741e-05,
1199
+ "loss": 0.3444,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 1.875,
1204
+ "grad_norm": 1.0719966888427734,
1205
+ "learning_rate": 1.0171967547713901e-05,
1206
+ "loss": 0.3256,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 1.8859649122807016,
1211
+ "grad_norm": 1.1906548738479614,
1212
+ "learning_rate": 1.0000592009545247e-05,
1213
+ "loss": 0.3298,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 1.8969298245614035,
1218
+ "grad_norm": 1.0440380573272705,
1219
+ "learning_rate": 9.829947500602217e-06,
1220
+ "loss": 0.3008,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 1.9078947368421053,
1225
+ "grad_norm": 1.051279902458191,
1226
+ "learning_rate": 9.660058973063838e-06,
1227
+ "loss": 0.3,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 1.918859649122807,
1232
+ "grad_norm": 0.9557648301124573,
1233
+ "learning_rate": 9.49095126856715e-06,
1234
+ "loss": 0.2851,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 1.9298245614035088,
1239
+ "grad_norm": 0.9850110411643982,
1240
+ "learning_rate": 9.322649114574791e-06,
1241
+ "loss": 0.326,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 1.9407894736842106,
1246
+ "grad_norm": 0.9415509700775146,
1247
+ "learning_rate": 9.155177120759248e-06,
1248
+ "loss": 0.2783,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 1.9517543859649122,
1253
+ "grad_norm": 1.0071932077407837,
1254
+ "learning_rate": 8.988559775404372e-06,
1255
+ "loss": 0.3124,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 1.962719298245614,
1260
+ "grad_norm": 0.9348342418670654,
1261
+ "learning_rate": 8.822821441824622e-06,
1262
+ "loss": 0.2995,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 1.973684210526316,
1267
+ "grad_norm": 1.0431472063064575,
1268
+ "learning_rate": 8.657986354802565e-06,
1269
+ "loss": 0.2858,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 1.9846491228070176,
1274
+ "grad_norm": 1.0253784656524658,
1275
+ "learning_rate": 8.494078617045218e-06,
1276
+ "loss": 0.3137,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 1.9956140350877192,
1281
+ "grad_norm": 1.0688952207565308,
1282
+ "learning_rate": 8.331122195659646e-06,
1283
+ "loss": 0.3184,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.0065789473684212,
1288
+ "grad_norm": 0.9592809081077576,
1289
+ "learning_rate": 8.169140918648447e-06,
1290
+ "loss": 0.2948,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.017543859649123,
1295
+ "grad_norm": 1.105006217956543,
1296
+ "learning_rate": 8.008158471425512e-06,
1297
+ "loss": 0.2397,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.0285087719298245,
1302
+ "grad_norm": 1.1872037649154663,
1303
+ "learning_rate": 7.848198393352689e-06,
1304
+ "loss": 0.2636,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.039473684210526,
1309
+ "grad_norm": 1.0474228858947754,
1310
+ "learning_rate": 7.689284074297794e-06,
1311
+ "loss": 0.278,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.050438596491228,
1316
+ "grad_norm": 1.014209508895874,
1317
+ "learning_rate": 7.531438751214437e-06,
1318
+ "loss": 0.2296,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.06140350877193,
1323
+ "grad_norm": 0.9980344176292419,
1324
+ "learning_rate": 7.374685504744278e-06,
1325
+ "loss": 0.2419,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.0723684210526314,
1330
+ "grad_norm": 1.115631103515625,
1331
+ "learning_rate": 7.219047255842076e-06,
1332
+ "loss": 0.2399,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.0833333333333335,
1337
+ "grad_norm": 0.9669972062110901,
1338
+ "learning_rate": 7.064546762424118e-06,
1339
+ "loss": 0.2333,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.094298245614035,
1344
+ "grad_norm": 0.9526334404945374,
1345
+ "learning_rate": 6.911206616040505e-06,
1346
+ "loss": 0.2582,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.1052631578947367,
1351
+ "grad_norm": 1.1515368223190308,
1352
+ "learning_rate": 6.759049238571732e-06,
1353
+ "loss": 0.2427,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.116228070175439,
1358
+ "grad_norm": 0.8898414969444275,
1359
+ "learning_rate": 6.608096878950069e-06,
1360
+ "loss": 0.2768,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.1271929824561404,
1365
+ "grad_norm": 1.1969611644744873,
1366
+ "learning_rate": 6.458371609906287e-06,
1367
+ "loss": 0.2201,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.138157894736842,
1372
+ "grad_norm": 0.8385275602340698,
1373
+ "learning_rate": 6.309895324742081e-06,
1374
+ "loss": 0.207,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.1491228070175437,
1379
+ "grad_norm": 1.0890440940856934,
1380
+ "learning_rate": 6.1626897341288055e-06,
1381
+ "loss": 0.2293,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.1600877192982457,
1386
+ "grad_norm": 1.135362148284912,
1387
+ "learning_rate": 6.016776362932819e-06,
1388
+ "loss": 0.2618,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.1710526315789473,
1393
+ "grad_norm": 0.9805251359939575,
1394
+ "learning_rate": 5.872176547068081e-06,
1395
+ "loss": 0.2504,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.182017543859649,
1400
+ "grad_norm": 1.0886223316192627,
1401
+ "learning_rate": 5.72891143037635e-06,
1402
+ "loss": 0.2292,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.192982456140351,
1407
+ "grad_norm": 1.105898380279541,
1408
+ "learning_rate": 5.58700196153546e-06,
1409
+ "loss": 0.2667,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.2039473684210527,
1414
+ "grad_norm": 1.1456786394119263,
1415
+ "learning_rate": 5.44646889099612e-06,
1416
+ "loss": 0.245,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.2149122807017543,
1421
+ "grad_norm": 0.9122210741043091,
1422
+ "learning_rate": 5.307332767947734e-06,
1423
+ "loss": 0.2418,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.2258771929824563,
1428
+ "grad_norm": 0.9057987928390503,
1429
+ "learning_rate": 5.169613937313649e-06,
1430
+ "loss": 0.2205,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.236842105263158,
1435
+ "grad_norm": 1.0202924013137817,
1436
+ "learning_rate": 5.033332536776216e-06,
1437
+ "loss": 0.2406,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.2478070175438596,
1442
+ "grad_norm": 1.0220569372177124,
1443
+ "learning_rate": 4.8985084938322395e-06,
1444
+ "loss": 0.21,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.2587719298245617,
1449
+ "grad_norm": 1.172656536102295,
1450
+ "learning_rate": 4.765161522879077e-06,
1451
+ "loss": 0.2407,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.2697368421052633,
1456
+ "grad_norm": 1.0824159383773804,
1457
+ "learning_rate": 4.633311122331957e-06,
1458
+ "loss": 0.2471,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.280701754385965,
1463
+ "grad_norm": 0.9344537258148193,
1464
+ "learning_rate": 4.502976571772872e-06,
1465
+ "loss": 0.2209,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.2916666666666665,
1470
+ "grad_norm": 0.9334734678268433,
1471
+ "learning_rate": 4.374176929131424e-06,
1472
+ "loss": 0.2639,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.3026315789473686,
1477
+ "grad_norm": 1.0213098526000977,
1478
+ "learning_rate": 4.2469310278981335e-06,
1479
+ "loss": 0.232,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.31359649122807,
1484
+ "grad_norm": 1.0980297327041626,
1485
+ "learning_rate": 4.121257474370557e-06,
1486
+ "loss": 0.2138,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.324561403508772,
1491
+ "grad_norm": 0.9363732933998108,
1492
+ "learning_rate": 3.997174644932599e-06,
1493
+ "loss": 0.2171,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 2.3355263157894735,
1498
+ "grad_norm": 1.0077205896377563,
1499
+ "learning_rate": 3.874700683367457e-06,
1500
+ "loss": 0.1983,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 2.3464912280701755,
1505
+ "grad_norm": 1.0382026433944702,
1506
+ "learning_rate": 3.7538534982045913e-06,
1507
+ "loss": 0.2531,
1508
+ "step": 1070
1509
+ },
1510
+ {
1511
+ "epoch": 2.357456140350877,
1512
+ "grad_norm": 1.0411885976791382,
1513
+ "learning_rate": 3.634650760101076e-06,
1514
+ "loss": 0.2479,
1515
+ "step": 1075
1516
+ },
1517
+ {
1518
+ "epoch": 2.3684210526315788,
1519
+ "grad_norm": 1.1133902072906494,
1520
+ "learning_rate": 3.5171098992577515e-06,
1521
+ "loss": 0.2474,
1522
+ "step": 1080
1523
+ },
1524
+ {
1525
+ "epoch": 2.379385964912281,
1526
+ "grad_norm": 0.8952088356018066,
1527
+ "learning_rate": 3.4012481028705067e-06,
1528
+ "loss": 0.2177,
1529
+ "step": 1085
1530
+ },
1531
+ {
1532
+ "epoch": 2.3903508771929824,
1533
+ "grad_norm": 0.9758759140968323,
1534
+ "learning_rate": 3.2870823126171317e-06,
1535
+ "loss": 0.2088,
1536
+ "step": 1090
1537
+ },
1538
+ {
1539
+ "epoch": 2.401315789473684,
1540
+ "grad_norm": 1.0291149616241455,
1541
+ "learning_rate": 3.1746292221800317e-06,
1542
+ "loss": 0.2448,
1543
+ "step": 1095
1544
+ },
1545
+ {
1546
+ "epoch": 2.412280701754386,
1547
+ "grad_norm": 1.018467903137207,
1548
+ "learning_rate": 3.063905274805251e-06,
1549
+ "loss": 0.2409,
1550
+ "step": 1100
1551
+ },
1552
+ {
1553
+ "epoch": 2.4232456140350878,
1554
+ "grad_norm": 1.0696269273757935,
1555
+ "learning_rate": 2.9549266608980595e-06,
1556
+ "loss": 0.2103,
1557
+ "step": 1105
1558
+ },
1559
+ {
1560
+ "epoch": 2.4342105263157894,
1561
+ "grad_norm": 0.9848340153694153,
1562
+ "learning_rate": 2.847709315655566e-06,
1563
+ "loss": 0.2107,
1564
+ "step": 1110
1565
+ },
1566
+ {
1567
+ "epoch": 2.4451754385964914,
1568
+ "grad_norm": 1.0225777626037598,
1569
+ "learning_rate": 2.7422689167365967e-06,
1570
+ "loss": 0.2342,
1571
+ "step": 1115
1572
+ },
1573
+ {
1574
+ "epoch": 2.456140350877193,
1575
+ "grad_norm": 0.9974656701087952,
1576
+ "learning_rate": 2.6386208819693037e-06,
1577
+ "loss": 0.2256,
1578
+ "step": 1120
1579
+ },
1580
+ {
1581
+ "epoch": 2.4671052631578947,
1582
+ "grad_norm": 0.9634082913398743,
1583
+ "learning_rate": 2.536780367096666e-06,
1584
+ "loss": 0.2291,
1585
+ "step": 1125
1586
+ },
1587
+ {
1588
+ "epoch": 2.4780701754385963,
1589
+ "grad_norm": 0.882702648639679,
1590
+ "learning_rate": 2.4367622635604035e-06,
1591
+ "loss": 0.2352,
1592
+ "step": 1130
1593
+ },
1594
+ {
1595
+ "epoch": 2.4890350877192984,
1596
+ "grad_norm": 0.9883916974067688,
1597
+ "learning_rate": 2.3385811963234903e-06,
1598
+ "loss": 0.2155,
1599
+ "step": 1135
1600
+ },
1601
+ {
1602
+ "epoch": 2.5,
1603
+ "grad_norm": 1.12102210521698,
1604
+ "learning_rate": 2.2422515217316653e-06,
1605
+ "loss": 0.2392,
1606
+ "step": 1140
1607
+ },
1608
+ {
1609
+ "epoch": 2.5109649122807016,
1610
+ "grad_norm": 1.0628376007080078,
1611
+ "learning_rate": 2.147787325414173e-06,
1612
+ "loss": 0.2314,
1613
+ "step": 1145
1614
+ },
1615
+ {
1616
+ "epoch": 2.5219298245614032,
1617
+ "grad_norm": 0.9789189100265503,
1618
+ "learning_rate": 2.055202420224136e-06,
1619
+ "loss": 0.2343,
1620
+ "step": 1150
1621
+ },
1622
+ {
1623
+ "epoch": 2.5328947368421053,
1624
+ "grad_norm": 0.9841337203979492,
1625
+ "learning_rate": 1.964510344218797e-06,
1626
+ "loss": 0.2197,
1627
+ "step": 1155
1628
+ },
1629
+ {
1630
+ "epoch": 2.543859649122807,
1631
+ "grad_norm": 1.084327220916748,
1632
+ "learning_rate": 1.8757243586799376e-06,
1633
+ "loss": 0.2286,
1634
+ "step": 1160
1635
+ },
1636
+ {
1637
+ "epoch": 2.5548245614035086,
1638
+ "grad_norm": 0.9269506931304932,
1639
+ "learning_rate": 1.7888574461747687e-06,
1640
+ "loss": 0.2097,
1641
+ "step": 1165
1642
+ },
1643
+ {
1644
+ "epoch": 2.5657894736842106,
1645
+ "grad_norm": 1.0006529092788696,
1646
+ "learning_rate": 1.7039223086575827e-06,
1647
+ "loss": 0.2224,
1648
+ "step": 1170
1649
+ },
1650
+ {
1651
+ "epoch": 2.5767543859649122,
1652
+ "grad_norm": 1.046647310256958,
1653
+ "learning_rate": 1.6209313656124247e-06,
1654
+ "loss": 0.2647,
1655
+ "step": 1175
1656
+ },
1657
+ {
1658
+ "epoch": 2.587719298245614,
1659
+ "grad_norm": 0.8911044597625732,
1660
+ "learning_rate": 1.5398967522370978e-06,
1661
+ "loss": 0.2204,
1662
+ "step": 1180
1663
+ },
1664
+ {
1665
+ "epoch": 2.598684210526316,
1666
+ "grad_norm": 1.0781792402267456,
1667
+ "learning_rate": 1.4608303176686965e-06,
1668
+ "loss": 0.2057,
1669
+ "step": 1185
1670
+ },
1671
+ {
1672
+ "epoch": 2.6096491228070176,
1673
+ "grad_norm": 0.9152336716651917,
1674
+ "learning_rate": 1.3837436232509904e-06,
1675
+ "loss": 0.184,
1676
+ "step": 1190
1677
+ },
1678
+ {
1679
+ "epoch": 2.620614035087719,
1680
+ "grad_norm": 0.9757503867149353,
1681
+ "learning_rate": 1.3086479408438912e-06,
1682
+ "loss": 0.2129,
1683
+ "step": 1195
1684
+ },
1685
+ {
1686
+ "epoch": 2.6315789473684212,
1687
+ "grad_norm": 0.9043612480163574,
1688
+ "learning_rate": 1.235554251175256e-06,
1689
+ "loss": 0.2095,
1690
+ "step": 1200
1691
+ },
1692
+ {
1693
+ "epoch": 2.642543859649123,
1694
+ "grad_norm": 0.9414308071136475,
1695
+ "learning_rate": 1.1644732422352295e-06,
1696
+ "loss": 0.2267,
1697
+ "step": 1205
1698
+ },
1699
+ {
1700
+ "epoch": 2.6535087719298245,
1701
+ "grad_norm": 0.9960950613021851,
1702
+ "learning_rate": 1.0954153077134322e-06,
1703
+ "loss": 0.219,
1704
+ "step": 1210
1705
+ },
1706
+ {
1707
+ "epoch": 2.6644736842105265,
1708
+ "grad_norm": 1.0561095476150513,
1709
+ "learning_rate": 1.0283905454791414e-06,
1710
+ "loss": 0.2317,
1711
+ "step": 1215
1712
+ },
1713
+ {
1714
+ "epoch": 2.675438596491228,
1715
+ "grad_norm": 1.1242793798446655,
1716
+ "learning_rate": 9.634087561047845e-07,
1717
+ "loss": 0.2123,
1718
+ "step": 1220
1719
+ },
1720
+ {
1721
+ "epoch": 2.68640350877193,
1722
+ "grad_norm": 0.9190773367881775,
1723
+ "learning_rate": 9.004794414328221e-07,
1724
+ "loss": 0.2026,
1725
+ "step": 1225
1726
+ },
1727
+ {
1728
+ "epoch": 2.6973684210526314,
1729
+ "grad_norm": 1.0502454042434692,
1730
+ "learning_rate": 8.396118031863914e-07,
1731
+ "loss": 0.2091,
1732
+ "step": 1230
1733
+ },
1734
+ {
1735
+ "epoch": 2.7083333333333335,
1736
+ "grad_norm": 1.0512956380844116,
1737
+ "learning_rate": 7.80814741623791e-07,
1738
+ "loss": 0.2127,
1739
+ "step": 1235
1740
+ },
1741
+ {
1742
+ "epoch": 2.719298245614035,
1743
+ "grad_norm": 0.9547901749610901,
1744
+ "learning_rate": 7.240968542370574e-07,
1745
+ "loss": 0.2145,
1746
+ "step": 1240
1747
+ },
1748
+ {
1749
+ "epoch": 2.7302631578947367,
1750
+ "grad_norm": 1.1893854141235352,
1751
+ "learning_rate": 6.694664344948109e-07,
1752
+ "loss": 0.2187,
1753
+ "step": 1245
1754
+ },
1755
+ {
1756
+ "epoch": 2.7412280701754383,
1757
+ "grad_norm": 1.0072098970413208,
1758
+ "learning_rate": 6.169314706295637e-07,
1759
+ "loss": 0.2259,
1760
+ "step": 1250
1761
+ },
1762
+ {
1763
+ "epoch": 2.7521929824561404,
1764
+ "grad_norm": 1.034569263458252,
1765
+ "learning_rate": 5.664996444696475e-07,
1766
+ "loss": 0.2316,
1767
+ "step": 1255
1768
+ },
1769
+ {
1770
+ "epoch": 2.763157894736842,
1771
+ "grad_norm": 0.9266517758369446,
1772
+ "learning_rate": 5.181783303159604e-07,
1773
+ "loss": 0.1944,
1774
+ "step": 1260
1775
+ },
1776
+ {
1777
+ "epoch": 2.7741228070175437,
1778
+ "grad_norm": 1.055025339126587,
1779
+ "learning_rate": 4.719745938636649e-07,
1780
+ "loss": 0.2327,
1781
+ "step": 1265
1782
+ },
1783
+ {
1784
+ "epoch": 2.7850877192982457,
1785
+ "grad_norm": 0.9898583292961121,
1786
+ "learning_rate": 4.2789519116902875e-07,
1787
+ "loss": 0.2329,
1788
+ "step": 1270
1789
+ },
1790
+ {
1791
+ "epoch": 2.7960526315789473,
1792
+ "grad_norm": 0.9521634578704834,
1793
+ "learning_rate": 3.8594656766152535e-07,
1794
+ "loss": 0.2464,
1795
+ "step": 1275
1796
+ },
1797
+ {
1798
+ "epoch": 2.807017543859649,
1799
+ "grad_norm": 0.9560325145721436,
1800
+ "learning_rate": 3.461348572013678e-07,
1801
+ "loss": 0.2082,
1802
+ "step": 1280
1803
+ },
1804
+ {
1805
+ "epoch": 2.817982456140351,
1806
+ "grad_norm": 1.0245527029037476,
1807
+ "learning_rate": 3.084658811825947e-07,
1808
+ "loss": 0.2245,
1809
+ "step": 1285
1810
+ },
1811
+ {
1812
+ "epoch": 2.8289473684210527,
1813
+ "grad_norm": 0.8283141255378723,
1814
+ "learning_rate": 2.7294514768184563e-07,
1815
+ "loss": 0.1987,
1816
+ "step": 1290
1817
+ },
1818
+ {
1819
+ "epoch": 2.8399122807017543,
1820
+ "grad_norm": 1.0773205757141113,
1821
+ "learning_rate": 2.3957785065295447e-07,
1822
+ "loss": 0.2309,
1823
+ "step": 1295
1824
+ },
1825
+ {
1826
+ "epoch": 2.8508771929824563,
1827
+ "grad_norm": 1.1377276182174683,
1828
+ "learning_rate": 2.083688691674762e-07,
1829
+ "loss": 0.2134,
1830
+ "step": 1300
1831
+ },
1832
+ {
1833
+ "epoch": 2.861842105263158,
1834
+ "grad_norm": 0.9509216547012329,
1835
+ "learning_rate": 1.793227667012498e-07,
1836
+ "loss": 0.1915,
1837
+ "step": 1305
1838
+ },
1839
+ {
1840
+ "epoch": 2.8728070175438596,
1841
+ "grad_norm": 0.9714044332504272,
1842
+ "learning_rate": 1.5244379046710666e-07,
1843
+ "loss": 0.2193,
1844
+ "step": 1310
1845
+ },
1846
+ {
1847
+ "epoch": 2.8837719298245617,
1848
+ "grad_norm": 0.9448513388633728,
1849
+ "learning_rate": 1.2773587079384751e-07,
1850
+ "loss": 0.2162,
1851
+ "step": 1315
1852
+ },
1853
+ {
1854
+ "epoch": 2.8947368421052633,
1855
+ "grad_norm": 1.0036886930465698,
1856
+ "learning_rate": 1.052026205515172e-07,
1857
+ "loss": 0.2082,
1858
+ "step": 1320
1859
+ },
1860
+ {
1861
+ "epoch": 2.905701754385965,
1862
+ "grad_norm": 0.9712037444114685,
1863
+ "learning_rate": 8.48473346231321e-08,
1864
+ "loss": 0.1992,
1865
+ "step": 1325
1866
+ },
1867
+ {
1868
+ "epoch": 2.9166666666666665,
1869
+ "grad_norm": 0.9526965022087097,
1870
+ "learning_rate": 6.667298942288736e-08,
1871
+ "loss": 0.1852,
1872
+ "step": 1330
1873
+ },
1874
+ {
1875
+ "epoch": 2.9276315789473686,
1876
+ "grad_norm": 1.0061296224594116,
1877
+ "learning_rate": 5.068224246093489e-08,
1878
+ "loss": 0.2312,
1879
+ "step": 1335
1880
+ },
1881
+ {
1882
+ "epoch": 2.93859649122807,
1883
+ "grad_norm": 1.0219966173171997,
1884
+ "learning_rate": 3.687743195479931e-08,
1885
+ "loss": 0.2381,
1886
+ "step": 1340
1887
+ },
1888
+ {
1889
+ "epoch": 2.949561403508772,
1890
+ "grad_norm": 0.9002558588981628,
1891
+ "learning_rate": 2.5260576487471376e-08,
1892
+ "loss": 0.2042,
1893
+ "step": 1345
1894
+ },
1895
+ {
1896
+ "epoch": 2.9605263157894735,
1897
+ "grad_norm": 0.9882487058639526,
1898
+ "learning_rate": 1.583337471224744e-08,
1899
+ "loss": 0.2274,
1900
+ "step": 1350
1901
+ },
1902
+ {
1903
+ "epoch": 2.9714912280701755,
1904
+ "grad_norm": 0.9593895673751831,
1905
+ "learning_rate": 8.597205104343142e-09,
1906
+ "loss": 0.2385,
1907
+ "step": 1355
1908
+ },
1909
+ {
1910
+ "epoch": 2.982456140350877,
1911
+ "grad_norm": 1.0448355674743652,
1912
+ "learning_rate": 3.5531257593313103e-09,
1913
+ "loss": 0.1949,
1914
+ "step": 1360
1915
+ },
1916
+ {
1917
+ "epoch": 2.9934210526315788,
1918
+ "grad_norm": 0.876778244972229,
1919
+ "learning_rate": 7.018742384257149e-10,
1920
+ "loss": 0.2007,
1921
+ "step": 1365
1922
+ },
1923
+ {
1924
+ "epoch": 3.0,
1925
+ "step": 1368,
1926
+ "total_flos": 1.9997709539779543e+18,
1927
+ "train_loss": 0.49729131393091025,
1928
+ "train_runtime": 968.4082,
1929
+ "train_samples_per_second": 45.185,
1930
+ "train_steps_per_second": 1.413
1931
+ }
1932
+ ],
1933
+ "logging_steps": 5,
1934
+ "max_steps": 1368,
1935
+ "num_input_tokens_seen": 0,
1936
+ "num_train_epochs": 3,
1937
+ "save_steps": 20000,
1938
+ "stateful_callbacks": {
1939
+ "TrainerControl": {
1940
+ "args": {
1941
+ "should_epoch_stop": false,
1942
+ "should_evaluate": false,
1943
+ "should_log": false,
1944
+ "should_save": false,
1945
+ "should_training_stop": false
1946
+ },
1947
+ "attributes": {}
1948
+ }
1949
+ },
1950
+ "total_flos": 1.9997709539779543e+18,
1951
+ "train_batch_size": 2,
1952
+ "trial_name": null,
1953
+ "trial_params": null
1954
+ }
9_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5963cd6698a5ec7b1040432901131b384d0bcbbcc0530e055deea332af67c160
3
+ size 8209
9_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff