RayDu0010 commited on
Commit
2491d76
·
verified ·
1 Parent(s): 1d0f867

Upload folder using huggingface_hub

Browse files
100_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
+ "gate_proj",
28
+ "q_proj",
29
+ "down_proj",
30
+ "k_proj",
31
+ "v_proj",
32
+ "up_proj",
33
+ "o_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
100_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a5277fa823561704e0c6e7497ffd885ed95fb00110e44f7c9f273e59843c178
3
+ size 791751704
100_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
+ }
100_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5637608849987338e+18,
4
+ "train_loss": 0.5088282435960163,
5
+ "train_runtime": 723.6343,
6
+ "train_samples": 11046,
7
+ "train_samples_per_second": 45.794,
8
+ "train_steps_per_second": 1.434
9
+ }
100_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 %}
100_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
+ }
100_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
100_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
+ }
100_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
100_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
+ }
100_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5637608849987338e+18,
4
+ "train_loss": 0.5088282435960163,
5
+ "train_runtime": 723.6343,
6
+ "train_samples": 11046,
7
+ "train_samples_per_second": 45.794,
8
+ "train_steps_per_second": 1.434
9
+ }
100_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1492 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1038,
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.01447178002894356,
14
+ "grad_norm": 2.8615591526031494,
15
+ "learning_rate": 2.307692307692308e-06,
16
+ "loss": 1.4769,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.02894356005788712,
21
+ "grad_norm": 2.151601791381836,
22
+ "learning_rate": 5.192307692307692e-06,
23
+ "loss": 1.4719,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.04341534008683068,
28
+ "grad_norm": 0.8743847608566284,
29
+ "learning_rate": 8.076923076923077e-06,
30
+ "loss": 1.3167,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.05788712011577424,
35
+ "grad_norm": 0.49110934138298035,
36
+ "learning_rate": 1.0961538461538462e-05,
37
+ "loss": 1.2605,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.0723589001447178,
42
+ "grad_norm": 0.3963072896003723,
43
+ "learning_rate": 1.3846153846153847e-05,
44
+ "loss": 1.3158,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.08683068017366136,
49
+ "grad_norm": 0.39099782705307007,
50
+ "learning_rate": 1.673076923076923e-05,
51
+ "loss": 1.212,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.10130246020260492,
56
+ "grad_norm": 0.3860986530780792,
57
+ "learning_rate": 1.9615384615384617e-05,
58
+ "loss": 1.2278,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.11577424023154848,
63
+ "grad_norm": 0.360788494348526,
64
+ "learning_rate": 2.25e-05,
65
+ "loss": 1.1546,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.13024602026049203,
70
+ "grad_norm": 0.343351274728775,
71
+ "learning_rate": 2.5384615384615386e-05,
72
+ "loss": 1.1238,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.1447178002894356,
77
+ "grad_norm": 0.35071519017219543,
78
+ "learning_rate": 2.8269230769230768e-05,
79
+ "loss": 1.1477,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.15918958031837915,
84
+ "grad_norm": 0.4042356610298157,
85
+ "learning_rate": 2.999969544502334e-05,
86
+ "loss": 1.1531,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.1736613603473227,
91
+ "grad_norm": 0.3548179268836975,
92
+ "learning_rate": 2.9996269343563534e-05,
93
+ "loss": 1.1397,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.18813314037626627,
98
+ "grad_norm": 0.37136110663414,
99
+ "learning_rate": 2.9989037319336417e-05,
100
+ "loss": 1.0947,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.20260492040520983,
105
+ "grad_norm": 0.40603527426719666,
106
+ "learning_rate": 2.9978001207766858e-05,
107
+ "loss": 1.0931,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.2170767004341534,
112
+ "grad_norm": 0.3855189085006714,
113
+ "learning_rate": 2.9963163809724016e-05,
114
+ "loss": 1.1052,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.23154848046309695,
119
+ "grad_norm": 0.4021053910255432,
120
+ "learning_rate": 2.99445288908105e-05,
121
+ "loss": 1.0685,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.2460202604920405,
126
+ "grad_norm": 0.4100794494152069,
127
+ "learning_rate": 2.992210118040671e-05,
128
+ "loss": 1.0407,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.26049204052098407,
133
+ "grad_norm": 0.4250035583972931,
134
+ "learning_rate": 2.9895886370470525e-05,
135
+ "loss": 1.0416,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.27496382054992763,
140
+ "grad_norm": 0.4670529067516327,
141
+ "learning_rate": 2.9865891114092777e-05,
142
+ "loss": 0.9995,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.2894356005788712,
147
+ "grad_norm": 0.49352172017097473,
148
+ "learning_rate": 2.9832123023808732e-05,
149
+ "loss": 0.9835,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.30390738060781475,
154
+ "grad_norm": 0.4847329556941986,
155
+ "learning_rate": 2.979459066966608e-05,
156
+ "loss": 0.9538,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.3183791606367583,
161
+ "grad_norm": 0.4724056124687195,
162
+ "learning_rate": 2.9753303577049967e-05,
163
+ "loss": 0.9552,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.33285094066570187,
168
+ "grad_norm": 0.49951690435409546,
169
+ "learning_rate": 2.970827222426551e-05,
170
+ "loss": 0.9723,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.3473227206946454,
175
+ "grad_norm": 0.5437686443328857,
176
+ "learning_rate": 2.9659508039878496e-05,
177
+ "loss": 0.9296,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.361794500723589,
182
+ "grad_norm": 0.547705888748169,
183
+ "learning_rate": 2.9607023399814915e-05,
184
+ "loss": 0.8867,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.37626628075253254,
189
+ "grad_norm": 0.596917986869812,
190
+ "learning_rate": 2.955083162422008e-05,
191
+ "loss": 0.9631,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.3907380607814761,
196
+ "grad_norm": 0.5863762497901917,
197
+ "learning_rate": 2.949094697407803e-05,
198
+ "loss": 0.953,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.40520984081041966,
203
+ "grad_norm": 0.5602851510047913,
204
+ "learning_rate": 2.942738464759229e-05,
205
+ "loss": 0.8917,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4196816208393632,
210
+ "grad_norm": 0.5136785507202148,
211
+ "learning_rate": 2.9360160776328642e-05,
212
+ "loss": 0.9125,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.4341534008683068,
217
+ "grad_norm": 0.5575056672096252,
218
+ "learning_rate": 2.9289292421121108e-05,
219
+ "loss": 0.8682,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.44862518089725034,
224
+ "grad_norm": 0.6020906567573547,
225
+ "learning_rate": 2.9214797567742036e-05,
226
+ "loss": 0.853,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.4630969609261939,
231
+ "grad_norm": 0.6466463804244995,
232
+ "learning_rate": 2.9136695122337492e-05,
233
+ "loss": 0.8577,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.47756874095513746,
238
+ "grad_norm": 0.66497403383255,
239
+ "learning_rate": 2.9055004906629016e-05,
240
+ "loss": 0.8777,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.492040520984081,
245
+ "grad_norm": 0.6498398780822754,
246
+ "learning_rate": 2.896974765288306e-05,
247
+ "loss": 0.8483,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.5065123010130246,
252
+ "grad_norm": 0.6811681985855103,
253
+ "learning_rate": 2.8880944998649318e-05,
254
+ "loss": 0.8126,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.5209840810419681,
259
+ "grad_norm": 0.6576763391494751,
260
+ "learning_rate": 2.87886194812693e-05,
261
+ "loss": 0.842,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5354558610709117,
266
+ "grad_norm": 0.6560257077217102,
267
+ "learning_rate": 2.8692794532156544e-05,
268
+ "loss": 0.8118,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.5499276410998553,
273
+ "grad_norm": 0.6648563742637634,
274
+ "learning_rate": 2.8593494470849942e-05,
275
+ "loss": 0.7685,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.5643994211287988,
280
+ "grad_norm": 0.6550049781799316,
281
+ "learning_rate": 2.849074449884164e-05,
282
+ "loss": 0.8377,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.5788712011577424,
287
+ "grad_norm": 0.6944078803062439,
288
+ "learning_rate": 2.8384570693181143e-05,
289
+ "loss": 0.7758,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.5933429811866859,
294
+ "grad_norm": 0.7304152846336365,
295
+ "learning_rate": 2.8274999999857125e-05,
296
+ "loss": 0.8103,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.6078147612156295,
301
+ "grad_norm": 0.8426342606544495,
302
+ "learning_rate": 2.816206022695885e-05,
303
+ "loss": 0.7471,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.622286541244573,
308
+ "grad_norm": 0.7130635380744934,
309
+ "learning_rate": 2.8045780037618675e-05,
310
+ "loss": 0.7708,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.6367583212735166,
315
+ "grad_norm": 0.7973529696464539,
316
+ "learning_rate": 2.7926188942737598e-05,
317
+ "loss": 0.76,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.6512301013024602,
322
+ "grad_norm": 0.7135194540023804,
323
+ "learning_rate": 2.7803317293495654e-05,
324
+ "loss": 0.7031,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.6657018813314037,
329
+ "grad_norm": 0.73508220911026,
330
+ "learning_rate": 2.7677196273649063e-05,
331
+ "loss": 0.729,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.6801736613603473,
336
+ "grad_norm": 0.753930926322937,
337
+ "learning_rate": 2.7547857891616045e-05,
338
+ "loss": 0.7269,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.6946454413892909,
343
+ "grad_norm": 0.7326066493988037,
344
+ "learning_rate": 2.741533497235336e-05,
345
+ "loss": 0.7229,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.7091172214182344,
350
+ "grad_norm": 0.7160481214523315,
351
+ "learning_rate": 2.7279661149025634e-05,
352
+ "loss": 0.7732,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.723589001447178,
357
+ "grad_norm": 0.7680026292800903,
358
+ "learning_rate": 2.714087085446956e-05,
359
+ "loss": 0.7357,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.7380607814761215,
364
+ "grad_norm": 0.7813519239425659,
365
+ "learning_rate": 2.6998999312455103e-05,
366
+ "loss": 0.7377,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.7525325615050651,
371
+ "grad_norm": 0.7649766206741333,
372
+ "learning_rate": 2.685408252874607e-05,
373
+ "loss": 0.7245,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.7670043415340086,
378
+ "grad_norm": 0.8014342188835144,
379
+ "learning_rate": 2.670615728196211e-05,
380
+ "loss": 0.7188,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.7814761215629522,
385
+ "grad_norm": 0.829677402973175,
386
+ "learning_rate": 2.655526111424466e-05,
387
+ "loss": 0.7073,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.7959479015918958,
392
+ "grad_norm": 0.7537582516670227,
393
+ "learning_rate": 2.640143232172904e-05,
394
+ "loss": 0.6762,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.8104196816208393,
399
+ "grad_norm": 0.9482523202896118,
400
+ "learning_rate": 2.6244709944825263e-05,
401
+ "loss": 0.6828,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.8248914616497829,
406
+ "grad_norm": 0.7638236284255981,
407
+ "learning_rate": 2.6085133758309887e-05,
408
+ "loss": 0.6885,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.8393632416787264,
413
+ "grad_norm": 0.8016229271888733,
414
+ "learning_rate": 2.5922744261231543e-05,
415
+ "loss": 0.6249,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.85383502170767,
420
+ "grad_norm": 0.8272259831428528,
421
+ "learning_rate": 2.5757582666632612e-05,
422
+ "loss": 0.642,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.8683068017366136,
427
+ "grad_norm": 0.774215042591095,
428
+ "learning_rate": 2.558969089108973e-05,
429
+ "loss": 0.6935,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.8827785817655571,
434
+ "grad_norm": 0.9142395853996277,
435
+ "learning_rate": 2.541911154407572e-05,
436
+ "loss": 0.6773,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.8972503617945007,
441
+ "grad_norm": 0.902748167514801,
442
+ "learning_rate": 2.524588791714567e-05,
443
+ "loss": 0.6534,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.9117221418234442,
448
+ "grad_norm": 0.8144389390945435,
449
+ "learning_rate": 2.5070063972949915e-05,
450
+ "loss": 0.6364,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.9261939218523878,
455
+ "grad_norm": 0.9208300709724426,
456
+ "learning_rate": 2.489168433407672e-05,
457
+ "loss": 0.6298,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.9406657018813314,
462
+ "grad_norm": 0.8535764217376709,
463
+ "learning_rate": 2.4710794271727415e-05,
464
+ "loss": 0.6493,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.9551374819102749,
469
+ "grad_norm": 0.8404795527458191,
470
+ "learning_rate": 2.4527439694227e-05,
471
+ "loss": 0.5672,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.9696092619392185,
476
+ "grad_norm": 1.0010117292404175,
477
+ "learning_rate": 2.4341667135372972e-05,
478
+ "loss": 0.6063,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.984081041968162,
483
+ "grad_norm": 0.8761574029922485,
484
+ "learning_rate": 2.4153523742625492e-05,
485
+ "loss": 0.6009,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.9985528219971056,
490
+ "grad_norm": 0.8519713878631592,
491
+ "learning_rate": 2.396305726514173e-05,
492
+ "loss": 0.5696,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.0115774240231548,
497
+ "grad_norm": 0.8920317888259888,
498
+ "learning_rate": 2.3770316041657577e-05,
499
+ "loss": 0.5247,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.0260492040520983,
504
+ "grad_norm": 0.9324450492858887,
505
+ "learning_rate": 2.357534898821967e-05,
506
+ "loss": 0.5679,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.0405209840810419,
511
+ "grad_norm": 0.9909124970436096,
512
+ "learning_rate": 2.3378205585770943e-05,
513
+ "loss": 0.5236,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.0549927641099854,
518
+ "grad_norm": 0.8417657017707825,
519
+ "learning_rate": 2.3178935867592783e-05,
520
+ "loss": 0.5008,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.069464544138929,
525
+ "grad_norm": 0.9080502986907959,
526
+ "learning_rate": 2.2977590406607014e-05,
527
+ "loss": 0.4836,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.0839363241678726,
532
+ "grad_norm": 0.9842959642410278,
533
+ "learning_rate": 2.2774220302540945e-05,
534
+ "loss": 0.5112,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.0984081041968161,
539
+ "grad_norm": 1.0712053775787354,
540
+ "learning_rate": 2.2568877168958696e-05,
541
+ "loss": 0.5096,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.1128798842257597,
546
+ "grad_norm": 0.9379140138626099,
547
+ "learning_rate": 2.236161312016211e-05,
548
+ "loss": 0.4919,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.1273516642547032,
553
+ "grad_norm": 0.8969681859016418,
554
+ "learning_rate": 2.215248075796462e-05,
555
+ "loss": 0.5199,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.1418234442836468,
560
+ "grad_norm": 0.8633139133453369,
561
+ "learning_rate": 2.194153315834135e-05,
562
+ "loss": 0.4964,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.1562952243125904,
567
+ "grad_norm": 0.8779736161231995,
568
+ "learning_rate": 2.1728823857958914e-05,
569
+ "loss": 0.4387,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.170767004341534,
574
+ "grad_norm": 0.9226593375205994,
575
+ "learning_rate": 2.151440684058823e-05,
576
+ "loss": 0.4848,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.1852387843704775,
581
+ "grad_norm": 0.8742358684539795,
582
+ "learning_rate": 2.129833652340397e-05,
583
+ "loss": 0.4815,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.199710564399421,
588
+ "grad_norm": 0.9066572785377502,
589
+ "learning_rate": 2.1080667743173904e-05,
590
+ "loss": 0.4618,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.2141823444283646,
595
+ "grad_norm": 0.9232774972915649,
596
+ "learning_rate": 2.086145574234184e-05,
597
+ "loss": 0.5011,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.2286541244573081,
602
+ "grad_norm": 1.0020390748977661,
603
+ "learning_rate": 2.064075615500754e-05,
604
+ "loss": 0.4271,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.2431259044862517,
609
+ "grad_norm": 0.9579097628593445,
610
+ "learning_rate": 2.0418624992807297e-05,
611
+ "loss": 0.4407,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.2575976845151953,
616
+ "grad_norm": 1.0055112838745117,
617
+ "learning_rate": 2.019511863069865e-05,
618
+ "loss": 0.4931,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.2720694645441388,
623
+ "grad_norm": 1.0458002090454102,
624
+ "learning_rate": 1.9970293792652926e-05,
625
+ "loss": 0.4336,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.2865412445730824,
630
+ "grad_norm": 1.1285804510116577,
631
+ "learning_rate": 1.9744207537259174e-05,
632
+ "loss": 0.437,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.301013024602026,
637
+ "grad_norm": 0.9937500953674316,
638
+ "learning_rate": 1.95169172432432e-05,
639
+ "loss": 0.4032,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.3154848046309695,
644
+ "grad_norm": 1.0096193552017212,
645
+ "learning_rate": 1.9288480594905342e-05,
646
+ "loss": 0.4451,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.329956584659913,
651
+ "grad_norm": 1.0254855155944824,
652
+ "learning_rate": 1.9058955567480702e-05,
653
+ "loss": 0.4561,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.3444283646888566,
658
+ "grad_norm": 0.88856440782547,
659
+ "learning_rate": 1.8828400412425527e-05,
660
+ "loss": 0.3902,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.3589001447178002,
665
+ "grad_norm": 0.8858474493026733,
666
+ "learning_rate": 1.85968736426335e-05,
667
+ "loss": 0.4195,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.3733719247467437,
672
+ "grad_norm": 0.9886773824691772,
673
+ "learning_rate": 1.8364434017585674e-05,
674
+ "loss": 0.4278,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.3878437047756873,
679
+ "grad_norm": 1.0052309036254883,
680
+ "learning_rate": 1.813114052843783e-05,
681
+ "loss": 0.4329,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.4023154848046309,
686
+ "grad_norm": 0.8194876313209534,
687
+ "learning_rate": 1.7897052383049038e-05,
688
+ "loss": 0.4622,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.4167872648335744,
693
+ "grad_norm": 1.045122742652893,
694
+ "learning_rate": 1.7662228990955207e-05,
695
+ "loss": 0.4392,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.431259044862518,
700
+ "grad_norm": 1.040113091468811,
701
+ "learning_rate": 1.7426729948291474e-05,
702
+ "loss": 0.4197,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.4457308248914615,
707
+ "grad_norm": 0.9122487306594849,
708
+ "learning_rate": 1.71906150226672e-05,
709
+ "loss": 0.3582,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.460202604920405,
714
+ "grad_norm": 0.9121474623680115,
715
+ "learning_rate": 1.6953944137997497e-05,
716
+ "loss": 0.4533,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.4746743849493487,
721
+ "grad_norm": 1.1198792457580566,
722
+ "learning_rate": 1.6716777359295062e-05,
723
+ "loss": 0.4043,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.4891461649782922,
728
+ "grad_norm": 1.1610769033432007,
729
+ "learning_rate": 1.6479174877426162e-05,
730
+ "loss": 0.3728,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.5036179450072358,
735
+ "grad_norm": 1.0011494159698486,
736
+ "learning_rate": 1.6241196993834743e-05,
737
+ "loss": 0.3767,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.5180897250361793,
742
+ "grad_norm": 0.9614905714988708,
743
+ "learning_rate": 1.6002904105238463e-05,
744
+ "loss": 0.4222,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.532561505065123,
749
+ "grad_norm": 0.9750561118125916,
750
+ "learning_rate": 1.5764356688300488e-05,
751
+ "loss": 0.404,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.5470332850940665,
756
+ "grad_norm": 1.0076310634613037,
757
+ "learning_rate": 1.5525615284281083e-05,
758
+ "loss": 0.384,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.56150506512301,
763
+ "grad_norm": 1.05535888671875,
764
+ "learning_rate": 1.5286740483672733e-05,
765
+ "loss": 0.4183,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.5759768451519536,
770
+ "grad_norm": 1.0437225103378296,
771
+ "learning_rate": 1.5047792910822832e-05,
772
+ "loss": 0.3849,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.5904486251808971,
777
+ "grad_norm": 0.9838964939117432,
778
+ "learning_rate": 1.480883320854772e-05,
779
+ "loss": 0.3863,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.6049204052098407,
784
+ "grad_norm": 0.9237931966781616,
785
+ "learning_rate": 1.4569922022742089e-05,
786
+ "loss": 0.3446,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.6193921852387843,
791
+ "grad_norm": 0.9070779085159302,
792
+ "learning_rate": 1.4331119986987567e-05,
793
+ "loss": 0.4088,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.6338639652677278,
798
+ "grad_norm": 1.0813218355178833,
799
+ "learning_rate": 1.4092487707164462e-05,
800
+ "loss": 0.3562,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.6483357452966714,
805
+ "grad_norm": 1.0317497253417969,
806
+ "learning_rate": 1.3854085746070485e-05,
807
+ "loss": 0.3555,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.662807525325615,
812
+ "grad_norm": 0.966826319694519,
813
+ "learning_rate": 1.3615974608050472e-05,
814
+ "loss": 0.3373,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.6772793053545585,
819
+ "grad_norm": 0.9833858609199524,
820
+ "learning_rate": 1.3378214723640877e-05,
821
+ "loss": 0.3715,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.691751085383502,
826
+ "grad_norm": 1.0183324813842773,
827
+ "learning_rate": 1.3140866434233045e-05,
828
+ "loss": 0.3186,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.7062228654124456,
833
+ "grad_norm": 0.9344832301139832,
834
+ "learning_rate": 1.2903989976759103e-05,
835
+ "loss": 0.3716,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.7206946454413892,
840
+ "grad_norm": 1.143686056137085,
841
+ "learning_rate": 1.2667645468404314e-05,
842
+ "loss": 0.3997,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.7351664254703327,
847
+ "grad_norm": 0.957192063331604,
848
+ "learning_rate": 1.24318928913499e-05,
849
+ "loss": 0.3533,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.7496382054992763,
854
+ "grad_norm": 1.083905577659607,
855
+ "learning_rate": 1.2196792077550044e-05,
856
+ "loss": 0.365,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.7641099855282198,
861
+ "grad_norm": 1.013757586479187,
862
+ "learning_rate": 1.1962402693547109e-05,
863
+ "loss": 0.3662,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.7785817655571634,
868
+ "grad_norm": 1.0887141227722168,
869
+ "learning_rate": 1.1728784225328738e-05,
870
+ "loss": 0.3515,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.793053545586107,
875
+ "grad_norm": 1.0151911973953247,
876
+ "learning_rate": 1.1495995963230854e-05,
877
+ "loss": 0.3184,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.8075253256150505,
882
+ "grad_norm": 1.1136406660079956,
883
+ "learning_rate": 1.1264096986890305e-05,
884
+ "loss": 0.3591,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.821997105643994,
889
+ "grad_norm": 0.9611531496047974,
890
+ "learning_rate": 1.103314615025092e-05,
891
+ "loss": 0.3499,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.8364688856729376,
896
+ "grad_norm": 1.1233144998550415,
897
+ "learning_rate": 1.0803202066626935e-05,
898
+ "loss": 0.348,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.8509406657018812,
903
+ "grad_norm": 1.031089186668396,
904
+ "learning_rate": 1.0574323093827411e-05,
905
+ "loss": 0.3487,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.8654124457308248,
910
+ "grad_norm": 1.002594232559204,
911
+ "learning_rate": 1.0346567319345555e-05,
912
+ "loss": 0.3193,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.8798842257597683,
917
+ "grad_norm": 1.0564950704574585,
918
+ "learning_rate": 1.0119992545616598e-05,
919
+ "loss": 0.3566,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.8943560057887119,
924
+ "grad_norm": 1.000454306602478,
925
+ "learning_rate": 9.894656275348055e-06,
926
+ "loss": 0.3382,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.9088277858176554,
931
+ "grad_norm": 1.0865637063980103,
932
+ "learning_rate": 9.670615696926027e-06,
933
+ "loss": 0.3485,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.923299565846599,
938
+ "grad_norm": 1.095211386680603,
939
+ "learning_rate": 9.447927669901284e-06,
940
+ "loss": 0.3472,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.9377713458755426,
945
+ "grad_norm": 1.0050318241119385,
946
+ "learning_rate": 9.226648710558835e-06,
947
+ "loss": 0.3029,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.9522431259044861,
952
+ "grad_norm": 1.0745723247528076,
953
+ "learning_rate": 9.00683497757453e-06,
954
+ "loss": 0.3134,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.9667149059334297,
959
+ "grad_norm": 1.003501057624817,
960
+ "learning_rate": 8.788542257762545e-06,
961
+ "loss": 0.3097,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.9811866859623732,
966
+ "grad_norm": 1.0636464357376099,
967
+ "learning_rate": 8.571825951917102e-06,
968
+ "loss": 0.3292,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.9956584659913168,
973
+ "grad_norm": 0.9520276784896851,
974
+ "learning_rate": 8.3567410607523e-06,
975
+ "loss": 0.3262,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.008683068017366,
980
+ "grad_norm": 0.8568843603134155,
981
+ "learning_rate": 8.143342170943348e-06,
982
+ "loss": 0.2801,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.0231548480463095,
987
+ "grad_norm": 0.9544357657432556,
988
+ "learning_rate": 7.93168344127299e-06,
989
+ "loss": 0.2748,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.037626628075253,
994
+ "grad_norm": 1.0312806367874146,
995
+ "learning_rate": 7.721818588886448e-06,
996
+ "loss": 0.2547,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.0520984081041966,
1001
+ "grad_norm": 0.9142753481864929,
1002
+ "learning_rate": 7.513800875658483e-06,
1003
+ "loss": 0.2405,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.06657018813314,
1008
+ "grad_norm": 0.9384972453117371,
1009
+ "learning_rate": 7.3076830946760155e-06,
1010
+ "loss": 0.264,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.0810419681620838,
1015
+ "grad_norm": 1.0117454528808594,
1016
+ "learning_rate": 7.103517556839661e-06,
1017
+ "loss": 0.2544,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.0955137481910273,
1022
+ "grad_norm": 1.193626880645752,
1023
+ "learning_rate": 6.901356077587722e-06,
1024
+ "loss": 0.2339,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.109985528219971,
1029
+ "grad_norm": 0.9370549917221069,
1030
+ "learning_rate": 6.7012499637458315e-06,
1031
+ "loss": 0.2566,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.1244573082489144,
1036
+ "grad_norm": 0.9933248162269592,
1037
+ "learning_rate": 6.503250000505784e-06,
1038
+ "loss": 0.2411,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.138929088277858,
1043
+ "grad_norm": 1.091636061668396,
1044
+ "learning_rate": 6.30740643853663e-06,
1045
+ "loss": 0.265,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.1534008683068016,
1050
+ "grad_norm": 0.9325742721557617,
1051
+ "learning_rate": 6.113768981231543e-06,
1052
+ "loss": 0.2355,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.167872648335745,
1057
+ "grad_norm": 0.9898898005485535,
1058
+ "learning_rate": 5.922386772093526e-06,
1059
+ "loss": 0.2558,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.1823444283646887,
1064
+ "grad_norm": 1.1324542760849,
1065
+ "learning_rate": 5.733308382263186e-06,
1066
+ "loss": 0.2265,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.1968162083936322,
1071
+ "grad_norm": 0.9923890233039856,
1072
+ "learning_rate": 5.546581798191842e-06,
1073
+ "loss": 0.2478,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.211287988422576,
1078
+ "grad_norm": 1.0704679489135742,
1079
+ "learning_rate": 5.362254409462939e-06,
1080
+ "loss": 0.2546,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.2257597684515193,
1085
+ "grad_norm": 1.0624035596847534,
1086
+ "learning_rate": 5.180372996765025e-06,
1087
+ "loss": 0.249,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.240231548480463,
1092
+ "grad_norm": 0.9799182415008545,
1093
+ "learning_rate": 5.000983720019187e-06,
1094
+ "loss": 0.2121,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.2547033285094065,
1099
+ "grad_norm": 1.0059958696365356,
1100
+ "learning_rate": 4.824132106664077e-06,
1101
+ "loss": 0.2623,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.26917510853835,
1106
+ "grad_norm": 0.9355487823486328,
1107
+ "learning_rate": 4.649863040101444e-06,
1108
+ "loss": 0.2591,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.2836468885672936,
1113
+ "grad_norm": 0.997829794883728,
1114
+ "learning_rate": 4.478220748305115e-06,
1115
+ "loss": 0.2574,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.298118668596237,
1120
+ "grad_norm": 1.1089993715286255,
1121
+ "learning_rate": 4.309248792596333e-06,
1122
+ "loss": 0.2547,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.3125904486251807,
1127
+ "grad_norm": 1.0383670330047607,
1128
+ "learning_rate": 4.142990056588239e-06,
1129
+ "loss": 0.2666,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.3270622286541243,
1134
+ "grad_norm": 1.0983021259307861,
1135
+ "learning_rate": 3.979486735302431e-06,
1136
+ "loss": 0.2373,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.341534008683068,
1141
+ "grad_norm": 1.0168687105178833,
1142
+ "learning_rate": 3.818780324460189e-06,
1143
+ "loss": 0.236,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.3560057887120114,
1148
+ "grad_norm": 1.141767144203186,
1149
+ "learning_rate": 3.6609116099512447e-06,
1150
+ "loss": 0.2579,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.370477568740955,
1155
+ "grad_norm": 1.2768852710723877,
1156
+ "learning_rate": 3.5059206574826792e-06,
1157
+ "loss": 0.2325,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.384949348769899,
1162
+ "grad_norm": 1.079278826713562,
1163
+ "learning_rate": 3.3538468024105845e-06,
1164
+ "loss": 0.2321,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.399421128798842,
1169
+ "grad_norm": 0.9278891682624817,
1170
+ "learning_rate": 3.2047286397571075e-06,
1171
+ "loss": 0.2215,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.413892908827786,
1176
+ "grad_norm": 1.0415856838226318,
1177
+ "learning_rate": 3.0586040144153436e-06,
1178
+ "loss": 0.251,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.428364688856729,
1183
+ "grad_norm": 0.9795122742652893,
1184
+ "learning_rate": 2.9155100115446637e-06,
1185
+ "loss": 0.2485,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.442836468885673,
1190
+ "grad_norm": 1.066709280014038,
1191
+ "learning_rate": 2.7754829471587916e-06,
1192
+ "loss": 0.2241,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.4573082489146163,
1197
+ "grad_norm": 0.9052194356918335,
1198
+ "learning_rate": 2.6385583589091446e-06,
1199
+ "loss": 0.2108,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.4717800289435603,
1204
+ "grad_norm": 1.0657882690429688,
1205
+ "learning_rate": 2.5047709970656635e-06,
1206
+ "loss": 0.2308,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.4862518089725034,
1211
+ "grad_norm": 1.0150898694992065,
1212
+ "learning_rate": 2.3741548156975e-06,
1213
+ "loss": 0.2489,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.5007235890014474,
1218
+ "grad_norm": 0.9340193271636963,
1219
+ "learning_rate": 2.2467429640557903e-06,
1220
+ "loss": 0.2236,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.5151953690303905,
1225
+ "grad_norm": 0.9725841283798218,
1226
+ "learning_rate": 2.1225677781606318e-06,
1227
+ "loss": 0.2457,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.5296671490593345,
1232
+ "grad_norm": 1.0327273607254028,
1233
+ "learning_rate": 2.0016607725945136e-06,
1234
+ "loss": 0.241,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.5441389290882777,
1239
+ "grad_norm": 1.0046991109848022,
1240
+ "learning_rate": 1.884052632504159e-06,
1241
+ "loss": 0.2365,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.5586107091172217,
1246
+ "grad_norm": 1.0558056831359863,
1247
+ "learning_rate": 1.7697732058129279e-06,
1248
+ "loss": 0.2009,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.5730824891461648,
1253
+ "grad_norm": 0.8913899660110474,
1254
+ "learning_rate": 1.6588514956456585e-06,
1255
+ "loss": 0.2313,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.587554269175109,
1260
+ "grad_norm": 0.8961359858512878,
1261
+ "learning_rate": 1.551315652967928e-06,
1262
+ "loss": 0.2315,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.602026049204052,
1267
+ "grad_norm": 1.0485143661499023,
1268
+ "learning_rate": 1.4471929694415897e-06,
1269
+ "loss": 0.2327,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.616497829232996,
1274
+ "grad_norm": 0.9162960052490234,
1275
+ "learning_rate": 1.3465098704983736e-06,
1276
+ "loss": 0.2108,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.630969609261939,
1281
+ "grad_norm": 1.1274350881576538,
1282
+ "learning_rate": 1.2492919086333627e-06,
1283
+ "loss": 0.2173,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.645441389290883,
1288
+ "grad_norm": 0.985431969165802,
1289
+ "learning_rate": 1.1555637569199661e-06,
1290
+ "loss": 0.2507,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.659913169319826,
1295
+ "grad_norm": 1.1033589839935303,
1296
+ "learning_rate": 1.0653492027481287e-06,
1297
+ "loss": 0.2499,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.67438494934877,
1302
+ "grad_norm": 1.0592963695526123,
1303
+ "learning_rate": 9.786711417872856e-07,
1304
+ "loss": 0.206,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.6888567293777133,
1309
+ "grad_norm": 0.9840250611305237,
1310
+ "learning_rate": 8.955515721756447e-07,
1311
+ "loss": 0.2617,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.7033285094066573,
1316
+ "grad_norm": 1.0350570678710938,
1317
+ "learning_rate": 8.160115889372516e-07,
1318
+ "loss": 0.2367,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.7178002894356004,
1323
+ "grad_norm": 1.0183647871017456,
1324
+ "learning_rate": 7.400713786282515e-07,
1325
+ "loss": 0.2267,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.7322720694645444,
1330
+ "grad_norm": 1.0445044040679932,
1331
+ "learning_rate": 6.677502142137298e-07,
1332
+ "loss": 0.2399,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.7467438494934875,
1337
+ "grad_norm": 0.9031018018722534,
1338
+ "learning_rate": 5.990664501763787e-07,
1339
+ "loss": 0.2224,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.7612156295224315,
1344
+ "grad_norm": 1.159313440322876,
1345
+ "learning_rate": 5.340375178583129e-07,
1346
+ "loss": 0.2573,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.7756874095513746,
1351
+ "grad_norm": 0.9514290690422058,
1352
+ "learning_rate": 4.726799210371252e-07,
1353
+ "loss": 0.2086,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.7901591895803186,
1358
+ "grad_norm": 1.0977853536605835,
1359
+ "learning_rate": 4.150092317373905e-07,
1360
+ "loss": 0.2176,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.8046309696092617,
1365
+ "grad_norm": 1.1040443181991577,
1366
+ "learning_rate": 3.610400862786067e-07,
1367
+ "loss": 0.2101,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.8191027496382057,
1372
+ "grad_norm": 1.138049840927124,
1373
+ "learning_rate": 3.1078618156063164e-07,
1374
+ "loss": 0.229,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.833574529667149,
1379
+ "grad_norm": 0.9003154039382935,
1380
+ "learning_rate": 2.6426027158752475e-07,
1381
+ "loss": 0.2277,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.848046309696093,
1386
+ "grad_norm": 0.8005179762840271,
1387
+ "learning_rate": 2.2147416423069665e-07,
1388
+ "loss": 0.222,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.862518089725036,
1393
+ "grad_norm": 0.9654896259307861,
1394
+ "learning_rate": 1.8243871823217127e-07,
1395
+ "loss": 0.2311,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.87698986975398,
1400
+ "grad_norm": 1.1691473722457886,
1401
+ "learning_rate": 1.4716384044873022e-07,
1402
+ "loss": 0.2333,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.891461649782923,
1407
+ "grad_norm": 1.1127536296844482,
1408
+ "learning_rate": 1.1565848333764395e-07,
1409
+ "loss": 0.2079,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.905933429811867,
1414
+ "grad_norm": 1.0087896585464478,
1415
+ "learning_rate": 8.793064268460605e-08,
1416
+ "loss": 0.196,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.92040520984081,
1421
+ "grad_norm": 1.018527626991272,
1422
+ "learning_rate": 6.398735557448299e-08,
1423
+ "loss": 0.2531,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.934876989869754,
1428
+ "grad_norm": 0.934693455696106,
1429
+ "learning_rate": 4.383469860535616e-08,
1430
+ "loss": 0.2462,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.9493487698986973,
1435
+ "grad_norm": 1.020354986190796,
1436
+ "learning_rate": 2.7477786346337132e-08,
1437
+ "loss": 0.2525,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.9638205499276413,
1442
+ "grad_norm": 1.1043814420700073,
1443
+ "learning_rate": 1.492077003953596e-08,
1444
+ "loss": 0.2506,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.9782923299565844,
1449
+ "grad_norm": 1.0787711143493652,
1450
+ "learning_rate": 6.1668365465089586e-09,
1451
+ "loss": 0.2287,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.9927641099855284,
1456
+ "grad_norm": 1.0761783123016357,
1457
+ "learning_rate": 1.2182075394590041e-09,
1458
+ "loss": 0.225,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 3.0,
1463
+ "step": 1038,
1464
+ "total_flos": 1.5637608849987338e+18,
1465
+ "train_loss": 0.5088282435960163,
1466
+ "train_runtime": 723.6343,
1467
+ "train_samples_per_second": 45.794,
1468
+ "train_steps_per_second": 1.434
1469
+ }
1470
+ ],
1471
+ "logging_steps": 5,
1472
+ "max_steps": 1038,
1473
+ "num_input_tokens_seen": 0,
1474
+ "num_train_epochs": 3,
1475
+ "save_steps": 20000,
1476
+ "stateful_callbacks": {
1477
+ "TrainerControl": {
1478
+ "args": {
1479
+ "should_epoch_stop": false,
1480
+ "should_evaluate": false,
1481
+ "should_log": false,
1482
+ "should_save": false,
1483
+ "should_training_stop": false
1484
+ },
1485
+ "attributes": {}
1486
+ }
1487
+ },
1488
+ "total_flos": 1.5637608849987338e+18,
1489
+ "train_batch_size": 2,
1490
+ "trial_name": null,
1491
+ "trial_params": null
1492
+ }
100_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9da26090bc48be6239bced80c604db89301099a3c516ff967eaac5ca8c0b1ee
3
+ size 8273
100_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff