RayDu0010 commited on
Commit
c6d2fb1
·
verified ·
1 Parent(s): 77fb659

Upload folder using huggingface_hub

Browse files
11_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
+ "k_proj",
28
+ "v_proj",
29
+ "down_proj",
30
+ "up_proj",
31
+ "gate_proj",
32
+ "o_proj",
33
+ "q_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
11_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b1792c7665ef3e4df6524704fde5814607b912d12efa80be920957a5b456ee
3
+ size 791751704
11_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
+ }
11_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.6555905027177185e+18,
4
+ "train_loss": 0.5416349868819188,
5
+ "train_runtime": 801.1996,
6
+ "train_samples": 11340,
7
+ "train_samples_per_second": 42.461,
8
+ "train_steps_per_second": 1.329
9
+ }
11_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 %}
11_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
+ }
11_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
11_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
+ }
11_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
11_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
+ }
11_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.6555905027177185e+18,
4
+ "train_loss": 0.5416349868819188,
5
+ "train_runtime": 801.1996,
6
+ "train_samples": 11340,
7
+ "train_samples_per_second": 42.461,
8
+ "train_steps_per_second": 1.329
9
+ }
11_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1065,
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.014104372355430184,
14
+ "grad_norm": 3.4026665687561035,
15
+ "learning_rate": 2.222222222222222e-06,
16
+ "loss": 1.5486,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.028208744710860368,
21
+ "grad_norm": 2.145953416824341,
22
+ "learning_rate": 4.9999999999999996e-06,
23
+ "loss": 1.4458,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.04231311706629055,
28
+ "grad_norm": 0.7927170991897583,
29
+ "learning_rate": 7.777777777777777e-06,
30
+ "loss": 1.4446,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.056417489421720736,
35
+ "grad_norm": 0.5019737482070923,
36
+ "learning_rate": 1.0555555555555555e-05,
37
+ "loss": 1.2759,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.07052186177715092,
42
+ "grad_norm": 0.3727194666862488,
43
+ "learning_rate": 1.3333333333333333e-05,
44
+ "loss": 1.2311,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.0846262341325811,
49
+ "grad_norm": 0.354473739862442,
50
+ "learning_rate": 1.6111111111111115e-05,
51
+ "loss": 1.2435,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.09873060648801128,
56
+ "grad_norm": 0.3713827133178711,
57
+ "learning_rate": 1.888888888888889e-05,
58
+ "loss": 1.2071,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.11283497884344147,
63
+ "grad_norm": 0.4175741970539093,
64
+ "learning_rate": 2.1666666666666667e-05,
65
+ "loss": 1.2358,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.12693935119887165,
70
+ "grad_norm": 0.3433670699596405,
71
+ "learning_rate": 2.4444444444444445e-05,
72
+ "loss": 1.1979,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.14104372355430184,
77
+ "grad_norm": 0.3494504988193512,
78
+ "learning_rate": 2.7222222222222223e-05,
79
+ "loss": 1.1773,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.15514809590973203,
84
+ "grad_norm": 0.3510345220565796,
85
+ "learning_rate": 3e-05,
86
+ "loss": 1.1349,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.1692524682651622,
91
+ "grad_norm": 0.3901633024215698,
92
+ "learning_rate": 2.999818953568259e-05,
93
+ "loss": 1.1622,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.18335684062059238,
98
+ "grad_norm": 0.33558905124664307,
99
+ "learning_rate": 2.9992758579767835e-05,
100
+ "loss": 1.1304,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.19746121297602257,
105
+ "grad_norm": 0.4059647023677826,
106
+ "learning_rate": 2.9983708443262656e-05,
107
+ "loss": 1.1509,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.21156558533145275,
112
+ "grad_norm": 0.3643777668476105,
113
+ "learning_rate": 2.9971041310826943e-05,
114
+ "loss": 1.1312,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.22566995768688294,
119
+ "grad_norm": 0.39006516337394714,
120
+ "learning_rate": 2.99547602402462e-05,
121
+ "loss": 1.1063,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.2397743300423131,
126
+ "grad_norm": 0.425136923789978,
127
+ "learning_rate": 2.993486916169341e-05,
128
+ "loss": 1.0511,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.2538787023977433,
133
+ "grad_norm": 0.3901968002319336,
134
+ "learning_rate": 2.9911372876780297e-05,
135
+ "loss": 1.0678,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.2679830747531735,
140
+ "grad_norm": 0.38757896423339844,
141
+ "learning_rate": 2.988427705739825e-05,
142
+ "loss": 1.0773,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.2820874471086037,
147
+ "grad_norm": 0.4275025427341461,
148
+ "learning_rate": 2.985358824434916e-05,
149
+ "loss": 1.0376,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.29619181946403383,
154
+ "grad_norm": 0.467244952917099,
155
+ "learning_rate": 2.9819313845766484e-05,
156
+ "loss": 0.9868,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.31029619181946405,
161
+ "grad_norm": 0.5277608036994934,
162
+ "learning_rate": 2.978146213532697e-05,
163
+ "loss": 1.0285,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.3244005641748942,
168
+ "grad_norm": 0.4208105206489563,
169
+ "learning_rate": 2.9740042250253443e-05,
170
+ "loss": 1.0321,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.3385049365303244,
175
+ "grad_norm": 0.49172303080558777,
176
+ "learning_rate": 2.969506418910909e-05,
177
+ "loss": 0.9948,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.3526093088857546,
182
+ "grad_norm": 0.4646231532096863,
183
+ "learning_rate": 2.9646538809383876e-05,
184
+ "loss": 0.9977,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.36671368124118475,
189
+ "grad_norm": 0.5360001921653748,
190
+ "learning_rate": 2.959447782487361e-05,
191
+ "loss": 0.991,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.38081805359661497,
196
+ "grad_norm": 0.4593433737754822,
197
+ "learning_rate": 2.9538893802852254e-05,
198
+ "loss": 0.9335,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.39492242595204513,
203
+ "grad_norm": 0.5145832896232605,
204
+ "learning_rate": 2.947980016103828e-05,
205
+ "loss": 0.9756,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4090267983074753,
210
+ "grad_norm": 0.5019190311431885,
211
+ "learning_rate": 2.9417211164355668e-05,
212
+ "loss": 1.0048,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.4231311706629055,
217
+ "grad_norm": 0.5391433238983154,
218
+ "learning_rate": 2.9351141921490436e-05,
219
+ "loss": 0.9798,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.43723554301833567,
224
+ "grad_norm": 0.6211673617362976,
225
+ "learning_rate": 2.9281608381243485e-05,
226
+ "loss": 0.8636,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.4513399153737659,
231
+ "grad_norm": 0.5945197939872742,
232
+ "learning_rate": 2.92086273286806e-05,
233
+ "loss": 0.9093,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.46544428772919605,
238
+ "grad_norm": 0.6164790391921997,
239
+ "learning_rate": 2.9132216381080664e-05,
240
+ "loss": 0.8731,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.4795486600846262,
245
+ "grad_norm": 0.5757480263710022,
246
+ "learning_rate": 2.9052393983682876e-05,
247
+ "loss": 0.8949,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.4936530324400564,
252
+ "grad_norm": 0.5886030793190002,
253
+ "learning_rate": 2.8969179405234202e-05,
254
+ "loss": 0.8976,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.5077574047954866,
259
+ "grad_norm": 0.67991042137146,
260
+ "learning_rate": 2.888259273333798e-05,
261
+ "loss": 0.9262,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5218617771509168,
266
+ "grad_norm": 0.6034244894981384,
267
+ "learning_rate": 2.8792654869604844e-05,
268
+ "loss": 0.89,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.535966149506347,
273
+ "grad_norm": 0.664543628692627,
274
+ "learning_rate": 2.8699387524607206e-05,
275
+ "loss": 0.9118,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.5500705218617772,
280
+ "grad_norm": 0.7276310920715332,
281
+ "learning_rate": 2.8602813212638415e-05,
282
+ "loss": 0.8443,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.5641748942172073,
287
+ "grad_norm": 0.6345068216323853,
288
+ "learning_rate": 2.8502955246277904e-05,
289
+ "loss": 0.8223,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.5782792665726375,
294
+ "grad_norm": 0.6952701210975647,
295
+ "learning_rate": 2.839983773076367e-05,
296
+ "loss": 0.8894,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.5923836389280677,
301
+ "grad_norm": 0.6775036454200745,
302
+ "learning_rate": 2.8293485558173352e-05,
303
+ "loss": 0.8426,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.6064880112834978,
308
+ "grad_norm": 0.6735378503799438,
309
+ "learning_rate": 2.8183924401415424e-05,
310
+ "loss": 0.7859,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.6205923836389281,
315
+ "grad_norm": 0.7856212854385376,
316
+ "learning_rate": 2.8071180708031874e-05,
317
+ "loss": 0.813,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.6346967559943583,
322
+ "grad_norm": 0.7166884541511536,
323
+ "learning_rate": 2.7955281693813884e-05,
324
+ "loss": 0.7976,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.6488011283497884,
329
+ "grad_norm": 0.7462570667266846,
330
+ "learning_rate": 2.7836255336232076e-05,
331
+ "loss": 0.8424,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.6629055007052186,
336
+ "grad_norm": 0.8340402245521545,
337
+ "learning_rate": 2.771413036768288e-05,
338
+ "loss": 0.7629,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.6770098730606487,
343
+ "grad_norm": 0.7492517232894897,
344
+ "learning_rate": 2.7588936268552675e-05,
345
+ "loss": 0.771,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.691114245416079,
350
+ "grad_norm": 0.7002833485603333,
351
+ "learning_rate": 2.7460703260101352e-05,
352
+ "loss": 0.737,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.7052186177715092,
357
+ "grad_norm": 0.7530421018600464,
358
+ "learning_rate": 2.732946229716707e-05,
359
+ "loss": 0.8401,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.7193229901269393,
364
+ "grad_norm": 0.7170169353485107,
365
+ "learning_rate": 2.7195245060693875e-05,
366
+ "loss": 0.7719,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.7334273624823695,
371
+ "grad_norm": 0.8507378697395325,
372
+ "learning_rate": 2.7058083950084078e-05,
373
+ "loss": 0.7618,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.7475317348377997,
378
+ "grad_norm": 0.7342758774757385,
379
+ "learning_rate": 2.6918012075377226e-05,
380
+ "loss": 0.7348,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.7616361071932299,
385
+ "grad_norm": 0.7930523157119751,
386
+ "learning_rate": 2.6775063249257455e-05,
387
+ "loss": 0.734,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.7757404795486601,
392
+ "grad_norm": 0.8301742076873779,
393
+ "learning_rate": 2.6629271978891274e-05,
394
+ "loss": 0.7065,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.7898448519040903,
399
+ "grad_norm": 0.7755118608474731,
400
+ "learning_rate": 2.6480673457597737e-05,
401
+ "loss": 0.7547,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.8039492242595204,
406
+ "grad_norm": 0.8562586903572083,
407
+ "learning_rate": 2.6329303556352887e-05,
408
+ "loss": 0.6927,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.8180535966149506,
413
+ "grad_norm": 0.9069969058036804,
414
+ "learning_rate": 2.617519881513072e-05,
415
+ "loss": 0.6915,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.8321579689703809,
420
+ "grad_norm": 0.7898303270339966,
421
+ "learning_rate": 2.601839643408259e-05,
422
+ "loss": 0.7254,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.846262341325811,
427
+ "grad_norm": 0.7645297646522522,
428
+ "learning_rate": 2.585893426455726e-05,
429
+ "loss": 0.6906,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.8603667136812412,
434
+ "grad_norm": 0.850929856300354,
435
+ "learning_rate": 2.569685079996379e-05,
436
+ "loss": 0.7268,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.8744710860366713,
441
+ "grad_norm": 0.7832868099212646,
442
+ "learning_rate": 2.553218516647939e-05,
443
+ "loss": 0.6949,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.8885754583921015,
448
+ "grad_norm": 0.8477210998535156,
449
+ "learning_rate": 2.5364977113604556e-05,
450
+ "loss": 0.6809,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.9026798307475318,
455
+ "grad_norm": 0.9933244585990906,
456
+ "learning_rate": 2.5195267004567726e-05,
457
+ "loss": 0.6936,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.9167842031029619,
462
+ "grad_norm": 0.8580759167671204,
463
+ "learning_rate": 2.5023095806581802e-05,
464
+ "loss": 0.6376,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.9308885754583921,
469
+ "grad_norm": 0.8906660676002502,
470
+ "learning_rate": 2.4848505080954837e-05,
471
+ "loss": 0.6418,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.9449929478138223,
476
+ "grad_norm": 0.9870065450668335,
477
+ "learning_rate": 2.4671536973057353e-05,
478
+ "loss": 0.6319,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.9590973201692524,
483
+ "grad_norm": 0.8756622672080994,
484
+ "learning_rate": 2.4492234202148643e-05,
485
+ "loss": 0.6461,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.9732016925246827,
490
+ "grad_norm": 0.9434117674827576,
491
+ "learning_rate": 2.431064005106453e-05,
492
+ "loss": 0.6639,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.9873060648801129,
497
+ "grad_norm": 1.0191916227340698,
498
+ "learning_rate": 2.4126798355769127e-05,
499
+ "loss": 0.6703,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.0,
504
+ "grad_norm": 1.1471611261367798,
505
+ "learning_rate": 2.394075349477302e-05,
506
+ "loss": 0.6511,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.0141043723554302,
511
+ "grad_norm": 0.882536768913269,
512
+ "learning_rate": 2.3752550378420504e-05,
513
+ "loss": 0.5488,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.0282087447108603,
518
+ "grad_norm": 1.0113587379455566,
519
+ "learning_rate": 2.356223443804846e-05,
520
+ "loss": 0.5527,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.0423131170662905,
525
+ "grad_norm": 0.9070690870285034,
526
+ "learning_rate": 2.3369851615019436e-05,
527
+ "loss": 0.5291,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.0564174894217206,
532
+ "grad_norm": 0.9254192113876343,
533
+ "learning_rate": 2.3175448349631612e-05,
534
+ "loss": 0.5092,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.0705218617771508,
539
+ "grad_norm": 0.8938282132148743,
540
+ "learning_rate": 2.297907156990834e-05,
541
+ "loss": 0.5213,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.0846262341325812,
546
+ "grad_norm": 1.0098944902420044,
547
+ "learning_rate": 2.278076868026995e-05,
548
+ "loss": 0.5389,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.0987306064880114,
553
+ "grad_norm": 0.8761587142944336,
554
+ "learning_rate": 2.2580587550090545e-05,
555
+ "loss": 0.5356,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.1128349788434415,
560
+ "grad_norm": 0.9284277558326721,
561
+ "learning_rate": 2.237857650214255e-05,
562
+ "loss": 0.485,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.1269393511988717,
567
+ "grad_norm": 0.9418231844902039,
568
+ "learning_rate": 2.217478430093183e-05,
569
+ "loss": 0.544,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.1410437235543018,
574
+ "grad_norm": 0.975740909576416,
575
+ "learning_rate": 2.1969260140926184e-05,
576
+ "loss": 0.4945,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.155148095909732,
581
+ "grad_norm": 0.9024131298065186,
582
+ "learning_rate": 2.1762053634680027e-05,
583
+ "loss": 0.5342,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.1692524682651622,
588
+ "grad_norm": 1.0473675727844238,
589
+ "learning_rate": 2.155321480085813e-05,
590
+ "loss": 0.4725,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.1833568406205923,
595
+ "grad_norm": 0.8896573781967163,
596
+ "learning_rate": 2.13427940521614e-05,
597
+ "loss": 0.4854,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.1974612129760225,
602
+ "grad_norm": 0.9557392597198486,
603
+ "learning_rate": 2.1130842183157454e-05,
604
+ "loss": 0.4804,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.2115655853314529,
609
+ "grad_norm": 1.0007184743881226,
610
+ "learning_rate": 2.0917410358019073e-05,
611
+ "loss": 0.4924,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.225669957686883,
616
+ "grad_norm": 1.0220506191253662,
617
+ "learning_rate": 2.07025500981734e-05,
618
+ "loss": 0.501,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.2397743300423132,
623
+ "grad_norm": 1.111889123916626,
624
+ "learning_rate": 2.0486313269864934e-05,
625
+ "loss": 0.4883,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.2538787023977433,
630
+ "grad_norm": 0.8829588890075684,
631
+ "learning_rate": 2.0268752071635233e-05,
632
+ "loss": 0.4881,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.2679830747531735,
637
+ "grad_norm": 1.1053252220153809,
638
+ "learning_rate": 2.004991902172248e-05,
639
+ "loss": 0.5056,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.2820874471086037,
644
+ "grad_norm": 0.993268609046936,
645
+ "learning_rate": 1.9829866945383767e-05,
646
+ "loss": 0.4962,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.2961918194640338,
651
+ "grad_norm": 1.0805367231369019,
652
+ "learning_rate": 1.9608648962143395e-05,
653
+ "loss": 0.4869,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.310296191819464,
658
+ "grad_norm": 0.8731850981712341,
659
+ "learning_rate": 1.938631847297004e-05,
660
+ "loss": 0.471,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.3244005641748942,
665
+ "grad_norm": 0.8949744701385498,
666
+ "learning_rate": 1.9162929147385995e-05,
667
+ "loss": 0.4546,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.3385049365303243,
672
+ "grad_norm": 0.9245812892913818,
673
+ "learning_rate": 1.893853491051165e-05,
674
+ "loss": 0.4803,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.3526093088857545,
679
+ "grad_norm": 1.0126726627349854,
680
+ "learning_rate": 1.8713189930048196e-05,
681
+ "loss": 0.4569,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.3667136812411846,
686
+ "grad_norm": 1.0559196472167969,
687
+ "learning_rate": 1.84869486032018e-05,
688
+ "loss": 0.4746,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.380818053596615,
693
+ "grad_norm": 0.9784413576126099,
694
+ "learning_rate": 1.825986554355236e-05,
695
+ "loss": 0.4666,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.3949224259520452,
700
+ "grad_norm": 0.9925135970115662,
701
+ "learning_rate": 1.8031995567870108e-05,
702
+ "loss": 0.4764,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.4090267983074753,
707
+ "grad_norm": 0.9366908669471741,
708
+ "learning_rate": 1.7803393682883028e-05,
709
+ "loss": 0.4812,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.4231311706629055,
714
+ "grad_norm": 1.09544837474823,
715
+ "learning_rate": 1.757411507199855e-05,
716
+ "loss": 0.4697,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.4372355430183357,
721
+ "grad_norm": 1.006853461265564,
722
+ "learning_rate": 1.7344215081982503e-05,
723
+ "loss": 0.4479,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.4513399153737658,
728
+ "grad_norm": 1.1112549304962158,
729
+ "learning_rate": 1.7113749209598685e-05,
730
+ "loss": 0.424,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.465444287729196,
735
+ "grad_norm": 0.9928213357925415,
736
+ "learning_rate": 1.6882773088212213e-05,
737
+ "loss": 0.4067,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.4795486600846262,
742
+ "grad_norm": 1.0899250507354736,
743
+ "learning_rate": 1.6651342474359876e-05,
744
+ "loss": 0.4011,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.4936530324400565,
749
+ "grad_norm": 0.9399552345275879,
750
+ "learning_rate": 1.6419513234290787e-05,
751
+ "loss": 0.4729,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.5077574047954867,
756
+ "grad_norm": 1.066135287284851,
757
+ "learning_rate": 1.618734133048052e-05,
758
+ "loss": 0.4386,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.5218617771509169,
763
+ "grad_norm": 1.0943255424499512,
764
+ "learning_rate": 1.5954882808122076e-05,
765
+ "loss": 0.4272,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.535966149506347,
770
+ "grad_norm": 1.063990592956543,
771
+ "learning_rate": 1.572219378159677e-05,
772
+ "loss": 0.4524,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.5500705218617772,
777
+ "grad_norm": 1.1298741102218628,
778
+ "learning_rate": 1.5489330420928554e-05,
779
+ "loss": 0.4221,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.5641748942172073,
784
+ "grad_norm": 1.0070699453353882,
785
+ "learning_rate": 1.52563489382248e-05,
786
+ "loss": 0.4055,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.5782792665726375,
791
+ "grad_norm": 1.1053661108016968,
792
+ "learning_rate": 1.502330557410699e-05,
793
+ "loss": 0.4082,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.5923836389280677,
798
+ "grad_norm": 1.0855764150619507,
799
+ "learning_rate": 1.4790256584134467e-05,
800
+ "loss": 0.4309,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.6064880112834978,
805
+ "grad_norm": 1.0602757930755615,
806
+ "learning_rate": 1.4557258225224645e-05,
807
+ "loss": 0.4146,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.620592383638928,
812
+ "grad_norm": 0.98285973072052,
813
+ "learning_rate": 1.4324366742072829e-05,
814
+ "loss": 0.437,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.6346967559943582,
819
+ "grad_norm": 1.2043741941452026,
820
+ "learning_rate": 1.4091638353575025e-05,
821
+ "loss": 0.369,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.6488011283497883,
826
+ "grad_norm": 1.0864444971084595,
827
+ "learning_rate": 1.3859129239256979e-05,
828
+ "loss": 0.4178,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.6629055007052185,
833
+ "grad_norm": 1.0565195083618164,
834
+ "learning_rate": 1.3626895525712684e-05,
835
+ "loss": 0.4569,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.6770098730606486,
840
+ "grad_norm": 0.9216626882553101,
841
+ "learning_rate": 1.339499327305569e-05,
842
+ "loss": 0.4332,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.691114245416079,
847
+ "grad_norm": 1.0148590803146362,
848
+ "learning_rate": 1.3163478461386473e-05,
849
+ "loss": 0.4191,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.7052186177715092,
854
+ "grad_norm": 1.1015889644622803,
855
+ "learning_rate": 1.2932406977279098e-05,
856
+ "loss": 0.382,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.7193229901269393,
861
+ "grad_norm": 1.029260277748108,
862
+ "learning_rate": 1.2701834600290465e-05,
863
+ "loss": 0.3889,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.7334273624823695,
868
+ "grad_norm": 1.2686400413513184,
869
+ "learning_rate": 1.2471816989495388e-05,
870
+ "loss": 0.4136,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.7475317348377997,
875
+ "grad_norm": 1.0710433721542358,
876
+ "learning_rate": 1.224240967005076e-05,
877
+ "loss": 0.3611,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.76163610719323,
882
+ "grad_norm": 1.0217320919036865,
883
+ "learning_rate": 1.2013668019792059e-05,
884
+ "loss": 0.3827,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.7757404795486602,
889
+ "grad_norm": 0.9862416982650757,
890
+ "learning_rate": 1.178564725586537e-05,
891
+ "loss": 0.3826,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.7898448519040904,
896
+ "grad_norm": 1.0525702238082886,
897
+ "learning_rate": 1.155840242139826e-05,
898
+ "loss": 0.3585,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.8039492242595205,
903
+ "grad_norm": 1.1119732856750488,
904
+ "learning_rate": 1.1331988372212604e-05,
905
+ "loss": 0.4116,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.8180535966149507,
910
+ "grad_norm": 1.1011879444122314,
911
+ "learning_rate": 1.1106459763582677e-05,
912
+ "loss": 0.4135,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.8321579689703809,
917
+ "grad_norm": 1.0232272148132324,
918
+ "learning_rate": 1.0881871037041609e-05,
919
+ "loss": 0.3998,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.846262341325811,
924
+ "grad_norm": 0.9756852984428406,
925
+ "learning_rate": 1.0658276407239462e-05,
926
+ "loss": 0.3555,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.8603667136812412,
931
+ "grad_norm": 1.0950740575790405,
932
+ "learning_rate": 1.0435729848856076e-05,
933
+ "loss": 0.3633,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.8744710860366713,
938
+ "grad_norm": 1.022698998451233,
939
+ "learning_rate": 1.0214285083571852e-05,
940
+ "loss": 0.3422,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.8885754583921015,
945
+ "grad_norm": 0.9492419362068176,
946
+ "learning_rate": 9.993995567099557e-06,
947
+ "loss": 0.4003,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.9026798307475317,
952
+ "grad_norm": 1.1028763055801392,
953
+ "learning_rate": 9.774914476280406e-06,
954
+ "loss": 0.4064,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.9167842031029618,
959
+ "grad_norm": 1.0520737171173096,
960
+ "learning_rate": 9.5570946962474e-06,
961
+ "loss": 0.3389,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.930888575458392,
966
+ "grad_norm": 1.1387090682983398,
967
+ "learning_rate": 9.340588807659128e-06,
968
+ "loss": 0.3264,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.9449929478138221,
973
+ "grad_norm": 1.1008509397506714,
974
+ "learning_rate": 9.125449074007022e-06,
975
+ "loss": 0.3735,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.9590973201692523,
980
+ "grad_norm": 1.0661132335662842,
981
+ "learning_rate": 8.911727428999228e-06,
982
+ "loss": 0.3433,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.9732016925246827,
987
+ "grad_norm": 1.0329855680465698,
988
+ "learning_rate": 8.699475464024022e-06,
989
+ "loss": 0.3608,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.9873060648801129,
994
+ "grad_norm": 1.0337284803390503,
995
+ "learning_rate": 8.488744415695935e-06,
996
+ "loss": 0.3405,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.0,
1001
+ "grad_norm": 1.4545073509216309,
1002
+ "learning_rate": 8.279585153487432e-06,
1003
+ "loss": 0.3404,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.01410437235543,
1008
+ "grad_norm": 1.0898131132125854,
1009
+ "learning_rate": 8.072048167449306e-06,
1010
+ "loss": 0.2923,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.0282087447108603,
1015
+ "grad_norm": 1.0214054584503174,
1016
+ "learning_rate": 7.866183556022589e-06,
1017
+ "loss": 0.2912,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.0423131170662905,
1022
+ "grad_norm": 1.0093437433242798,
1023
+ "learning_rate": 7.66204101394504e-06,
1024
+ "loss": 0.259,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.0564174894217206,
1029
+ "grad_norm": 1.044844627380371,
1030
+ "learning_rate": 7.459669820255068e-06,
1031
+ "loss": 0.2693,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.070521861777151,
1036
+ "grad_norm": 1.1461502313613892,
1037
+ "learning_rate": 7.259118826396023e-06,
1038
+ "loss": 0.2865,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.084626234132581,
1043
+ "grad_norm": 1.0759320259094238,
1044
+ "learning_rate": 7.060436444423655e-06,
1045
+ "loss": 0.3049,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.098730606488011,
1050
+ "grad_norm": 1.0399717092514038,
1051
+ "learning_rate": 6.863670635319715e-06,
1052
+ "loss": 0.2694,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.1128349788434413,
1057
+ "grad_norm": 1.14724862575531,
1058
+ "learning_rate": 6.668868897414361e-06,
1059
+ "loss": 0.2862,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.1269393511988715,
1064
+ "grad_norm": 1.1007517576217651,
1065
+ "learning_rate": 6.476078254920332e-06,
1066
+ "loss": 0.3103,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.1410437235543016,
1071
+ "grad_norm": 1.1657521724700928,
1072
+ "learning_rate": 6.285345246581483e-06,
1073
+ "loss": 0.2605,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.155148095909732,
1078
+ "grad_norm": 1.06886625289917,
1079
+ "learning_rate": 6.096715914438581e-06,
1080
+ "loss": 0.2849,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.1692524682651624,
1085
+ "grad_norm": 1.0467849969863892,
1086
+ "learning_rate": 5.9102357927149636e-06,
1087
+ "loss": 0.2661,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.1833568406205925,
1092
+ "grad_norm": 1.0040737390518188,
1093
+ "learning_rate": 5.725949896824805e-06,
1094
+ "loss": 0.2626,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.1974612129760227,
1099
+ "grad_norm": 1.3097790479660034,
1100
+ "learning_rate": 5.543902712506608e-06,
1101
+ "loss": 0.2583,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.211565585331453,
1106
+ "grad_norm": 1.1528080701828003,
1107
+ "learning_rate": 5.364138185084537e-06,
1108
+ "loss": 0.256,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.225669957686883,
1113
+ "grad_norm": 1.1419826745986938,
1114
+ "learning_rate": 5.186699708860253e-06,
1115
+ "loss": 0.2799,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.239774330042313,
1120
+ "grad_norm": 1.1660910844802856,
1121
+ "learning_rate": 5.011630116637714e-06,
1122
+ "loss": 0.2611,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.2538787023977433,
1127
+ "grad_norm": 1.0248594284057617,
1128
+ "learning_rate": 4.838971669383567e-06,
1129
+ "loss": 0.248,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.2679830747531735,
1134
+ "grad_norm": 0.9512549638748169,
1135
+ "learning_rate": 4.668766046025522e-06,
1136
+ "loss": 0.2737,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.2820874471086037,
1141
+ "grad_norm": 1.1646984815597534,
1142
+ "learning_rate": 4.501054333391275e-06,
1143
+ "loss": 0.2696,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.296191819464034,
1148
+ "grad_norm": 1.3777767419815063,
1149
+ "learning_rate": 4.335877016290326e-06,
1150
+ "loss": 0.2449,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.310296191819464,
1155
+ "grad_norm": 1.0245784521102905,
1156
+ "learning_rate": 4.173273967741184e-06,
1157
+ "loss": 0.2688,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.324400564174894,
1162
+ "grad_norm": 1.0006110668182373,
1163
+ "learning_rate": 4.013284439346143e-06,
1164
+ "loss": 0.2621,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.3385049365303243,
1169
+ "grad_norm": 1.0841772556304932,
1170
+ "learning_rate": 3.855947051816179e-06,
1171
+ "loss": 0.2804,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.3526093088857545,
1176
+ "grad_norm": 1.082770586013794,
1177
+ "learning_rate": 3.7012997856480797e-06,
1178
+ "loss": 0.2383,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.3667136812411846,
1183
+ "grad_norm": 1.041503667831421,
1184
+ "learning_rate": 3.5493799719561415e-06,
1185
+ "loss": 0.2566,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.380818053596615,
1190
+ "grad_norm": 0.9786086082458496,
1191
+ "learning_rate": 3.4002242834606023e-06,
1192
+ "loss": 0.2847,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.394922425952045,
1197
+ "grad_norm": 0.9603484272956848,
1198
+ "learning_rate": 3.2538687256350297e-06,
1199
+ "loss": 0.2849,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.409026798307475,
1204
+ "grad_norm": 1.156825304031372,
1205
+ "learning_rate": 3.1103486280147624e-06,
1206
+ "loss": 0.2352,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.4231311706629057,
1211
+ "grad_norm": 1.084373116493225,
1212
+ "learning_rate": 2.969698635668553e-06,
1213
+ "loss": 0.2925,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.4372355430183354,
1218
+ "grad_norm": 1.0228191614151,
1219
+ "learning_rate": 2.8319527008353863e-06,
1220
+ "loss": 0.2744,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.451339915373766,
1225
+ "grad_norm": 1.214138150215149,
1226
+ "learning_rate": 2.697144074728577e-06,
1227
+ "loss": 0.2816,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.465444287729196,
1232
+ "grad_norm": 1.211748480796814,
1233
+ "learning_rate": 2.5653052995090927e-06,
1234
+ "loss": 0.2855,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.4795486600846264,
1239
+ "grad_norm": 1.0586134195327759,
1240
+ "learning_rate": 2.4364682004300193e-06,
1241
+ "loss": 0.2746,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.4936530324400565,
1246
+ "grad_norm": 1.110299825668335,
1247
+ "learning_rate": 2.3106638781541174e-06,
1248
+ "loss": 0.2726,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.5077574047954867,
1253
+ "grad_norm": 1.1370130777359009,
1254
+ "learning_rate": 2.1879227012462443e-06,
1255
+ "loss": 0.2605,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.521861777150917,
1260
+ "grad_norm": 1.0158460140228271,
1261
+ "learning_rate": 2.068274298842537e-06,
1262
+ "loss": 0.2736,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.535966149506347,
1267
+ "grad_norm": 1.277999997138977,
1268
+ "learning_rate": 1.951747553498094e-06,
1269
+ "loss": 0.244,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.550070521861777,
1274
+ "grad_norm": 1.0778658390045166,
1275
+ "learning_rate": 1.838370594214845e-06,
1276
+ "loss": 0.2749,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.5641748942172073,
1281
+ "grad_norm": 1.0081775188446045,
1282
+ "learning_rate": 1.7281707896513476e-06,
1283
+ "loss": 0.2322,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.5782792665726375,
1288
+ "grad_norm": 1.042402982711792,
1289
+ "learning_rate": 1.6211747415161283e-06,
1290
+ "loss": 0.2732,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.5923836389280677,
1295
+ "grad_norm": 1.2807204723358154,
1296
+ "learning_rate": 1.5174082781461507e-06,
1297
+ "loss": 0.2466,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.606488011283498,
1302
+ "grad_norm": 1.1214522123336792,
1303
+ "learning_rate": 1.4168964482719916e-06,
1304
+ "loss": 0.271,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.620592383638928,
1309
+ "grad_norm": 1.109918475151062,
1310
+ "learning_rate": 1.3196635149711712e-06,
1311
+ "loss": 0.2569,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.634696755994358,
1316
+ "grad_norm": 1.1553428173065186,
1317
+ "learning_rate": 1.225732949811194e-06,
1318
+ "loss": 0.2363,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.6488011283497883,
1323
+ "grad_norm": 0.9468647241592407,
1324
+ "learning_rate": 1.1351274271835948e-06,
1325
+ "loss": 0.2714,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.6629055007052185,
1330
+ "grad_norm": 1.0239369869232178,
1331
+ "learning_rate": 1.0478688188304609e-06,
1332
+ "loss": 0.2556,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.6770098730606486,
1337
+ "grad_norm": 1.1113874912261963,
1338
+ "learning_rate": 9.63978188564706e-07,
1339
+ "loss": 0.2677,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.6911142454160792,
1344
+ "grad_norm": 1.0857006311416626,
1345
+ "learning_rate": 8.834757871853461e-07,
1346
+ "loss": 0.2642,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.705218617771509,
1351
+ "grad_norm": 1.0541398525238037,
1352
+ "learning_rate": 8.063810475890732e-07,
1353
+ "loss": 0.2391,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.7193229901269396,
1358
+ "grad_norm": 1.0358614921569824,
1359
+ "learning_rate": 7.327125800792306e-07,
1360
+ "loss": 0.2609,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.7334273624823693,
1365
+ "grad_norm": 0.9600598812103271,
1366
+ "learning_rate": 6.624881678733852e-07,
1367
+ "loss": 0.2833,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.7475317348378,
1372
+ "grad_norm": 1.031545639038086,
1373
+ "learning_rate": 5.957247628105428e-07,
1374
+ "loss": 0.2295,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.76163610719323,
1379
+ "grad_norm": 1.0968694686889648,
1380
+ "learning_rate": 5.324384812590416e-07,
1381
+ "loss": 0.2376,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.77574047954866,
1386
+ "grad_norm": 1.0207226276397705,
1387
+ "learning_rate": 4.726446002261542e-07,
1388
+ "loss": 0.2597,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.7898448519040904,
1393
+ "grad_norm": 1.1568629741668701,
1394
+ "learning_rate": 4.163575536702807e-07,
1395
+ "loss": 0.2644,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.8039492242595205,
1400
+ "grad_norm": 0.9799429178237915,
1401
+ "learning_rate": 3.6359092901666614e-07,
1402
+ "loss": 0.2397,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.8180535966149507,
1407
+ "grad_norm": 1.115788459777832,
1408
+ "learning_rate": 3.1435746387745543e-07,
1409
+ "loss": 0.227,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.832157968970381,
1414
+ "grad_norm": 1.0494121313095093,
1415
+ "learning_rate": 2.686690429768918e-07,
1416
+ "loss": 0.2387,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.846262341325811,
1421
+ "grad_norm": 1.0012835264205933,
1422
+ "learning_rate": 2.2653669528241271e-07,
1423
+ "loss": 0.2613,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.860366713681241,
1428
+ "grad_norm": 1.0095962285995483,
1429
+ "learning_rate": 1.8797059134230188e-07,
1430
+ "loss": 0.2219,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.8744710860366713,
1435
+ "grad_norm": 1.003462553024292,
1436
+ "learning_rate": 1.5298004083056093e-07,
1437
+ "loss": 0.2846,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.8885754583921015,
1442
+ "grad_norm": 1.011505365371704,
1443
+ "learning_rate": 1.2157349029961406e-07,
1444
+ "loss": 0.2406,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.9026798307475317,
1449
+ "grad_norm": 1.0605393648147583,
1450
+ "learning_rate": 9.375852114133221e-08,
1451
+ "loss": 0.2513,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.916784203102962,
1456
+ "grad_norm": 0.9922693967819214,
1457
+ "learning_rate": 6.954184775693873e-08,
1458
+ "loss": 0.2506,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.930888575458392,
1463
+ "grad_norm": 0.989320695400238,
1464
+ "learning_rate": 4.8929315936174224e-08,
1465
+ "loss": 0.2663,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.944992947813822,
1470
+ "grad_norm": 1.1450376510620117,
1471
+ "learning_rate": 3.1925901446148707e-08,
1472
+ "loss": 0.2505,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.9590973201692523,
1477
+ "grad_norm": 1.0581278800964355,
1478
+ "learning_rate": 1.8535708830225707e-08,
1479
+ "loss": 0.23,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.9732016925246825,
1484
+ "grad_norm": 1.020913004875183,
1485
+ "learning_rate": 8.761970417198173e-09,
1486
+ "loss": 0.266,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.987306064880113,
1491
+ "grad_norm": 1.0527656078338623,
1492
+ "learning_rate": 2.607045541015984e-09,
1493
+ "loss": 0.2749,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 3.0,
1498
+ "grad_norm": 1.6017621755599976,
1499
+ "learning_rate": 7.24199712615059e-11,
1500
+ "loss": 0.2435,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 3.0,
1505
+ "step": 1065,
1506
+ "total_flos": 1.6555905027177185e+18,
1507
+ "train_loss": 0.5416349868819188,
1508
+ "train_runtime": 801.1996,
1509
+ "train_samples_per_second": 42.461,
1510
+ "train_steps_per_second": 1.329
1511
+ }
1512
+ ],
1513
+ "logging_steps": 5,
1514
+ "max_steps": 1065,
1515
+ "num_input_tokens_seen": 0,
1516
+ "num_train_epochs": 3,
1517
+ "save_steps": 20000,
1518
+ "stateful_callbacks": {
1519
+ "TrainerControl": {
1520
+ "args": {
1521
+ "should_epoch_stop": false,
1522
+ "should_evaluate": false,
1523
+ "should_log": false,
1524
+ "should_save": false,
1525
+ "should_training_stop": false
1526
+ },
1527
+ "attributes": {}
1528
+ }
1529
+ },
1530
+ "total_flos": 1.6555905027177185e+18,
1531
+ "train_batch_size": 2,
1532
+ "trial_name": null,
1533
+ "trial_params": null
1534
+ }
11_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be88473475a1fdcdfd31991e5bcb956564d958753bed788d09eded1634d3d9a3
3
+ size 8209
11_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff