RayDu0010 commited on
Commit
746e80f
·
verified ·
1 Parent(s): 387a97e

Upload folder using huggingface_hub

Browse files
123_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
+ "q_proj",
28
+ "gate_proj",
29
+ "k_proj",
30
+ "up_proj",
31
+ "down_proj",
32
+ "o_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
123_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce747423e776117de18d0c7302258a4ceade889081fc441eccff175d40bfe43f
3
+ size 791751704
123_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
+ }
123_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5435133944793661e+18,
4
+ "train_loss": 0.5637503340224589,
5
+ "train_runtime": 727.9191,
6
+ "train_samples": 11598,
7
+ "train_samples_per_second": 47.799,
8
+ "train_steps_per_second": 1.496
9
+ }
123_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 %}
123_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
+ }
123_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
123_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
+ }
123_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
123_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
+ }
123_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.5435133944793661e+18,
4
+ "train_loss": 0.5637503340224589,
5
+ "train_runtime": 727.9191,
6
+ "train_samples": 11598,
7
+ "train_samples_per_second": 47.799,
8
+ "train_steps_per_second": 1.496
9
+ }
123_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1562 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1089,
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.013793103448275862,
14
+ "grad_norm": 3.789069414138794,
15
+ "learning_rate": 2.181818181818182e-06,
16
+ "loss": 1.5156,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.027586206896551724,
21
+ "grad_norm": 2.1134283542633057,
22
+ "learning_rate": 4.90909090909091e-06,
23
+ "loss": 1.551,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.041379310344827586,
28
+ "grad_norm": 0.8664379119873047,
29
+ "learning_rate": 7.636363636363636e-06,
30
+ "loss": 1.3763,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.05517241379310345,
35
+ "grad_norm": 0.4911561906337738,
36
+ "learning_rate": 1.0363636363636364e-05,
37
+ "loss": 1.3496,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.06896551724137931,
42
+ "grad_norm": 0.4065496623516083,
43
+ "learning_rate": 1.309090909090909e-05,
44
+ "loss": 1.3766,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.08275862068965517,
49
+ "grad_norm": 0.3920210301876068,
50
+ "learning_rate": 1.5818181818181818e-05,
51
+ "loss": 1.2896,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.09655172413793103,
56
+ "grad_norm": 0.393510639667511,
57
+ "learning_rate": 1.8545454545454545e-05,
58
+ "loss": 1.3081,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.1103448275862069,
63
+ "grad_norm": 0.438605934381485,
64
+ "learning_rate": 2.1272727272727273e-05,
65
+ "loss": 1.2669,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.12413793103448276,
70
+ "grad_norm": 0.4716624915599823,
71
+ "learning_rate": 2.4e-05,
72
+ "loss": 1.2727,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.13793103448275862,
77
+ "grad_norm": 0.35739514231681824,
78
+ "learning_rate": 2.6727272727272728e-05,
79
+ "loss": 1.2108,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.15172413793103448,
84
+ "grad_norm": 0.4633024334907532,
85
+ "learning_rate": 2.9454545454545456e-05,
86
+ "loss": 1.1722,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.16551724137931034,
91
+ "grad_norm": 0.37168559432029724,
92
+ "learning_rate": 2.9998892268339834e-05,
93
+ "loss": 1.1924,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.1793103448275862,
98
+ "grad_norm": 0.3861393630504608,
99
+ "learning_rate": 2.999439238887347e-05,
100
+ "loss": 1.1988,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.19310344827586207,
105
+ "grad_norm": 0.391494482755661,
106
+ "learning_rate": 2.998643216603669e-05,
107
+ "loss": 1.192,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.20689655172413793,
112
+ "grad_norm": 0.41428250074386597,
113
+ "learning_rate": 2.9975013436856537e-05,
114
+ "loss": 1.1524,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.2206896551724138,
119
+ "grad_norm": 0.38968023657798767,
120
+ "learning_rate": 2.996013883649973e-05,
121
+ "loss": 1.125,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.23448275862068965,
126
+ "grad_norm": 0.4461952745914459,
127
+ "learning_rate": 2.9941811797664532e-05,
128
+ "loss": 1.187,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.2482758620689655,
133
+ "grad_norm": 0.4274137616157532,
134
+ "learning_rate": 2.992003654978857e-05,
135
+ "loss": 1.1226,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.2620689655172414,
140
+ "grad_norm": 0.4409297704696655,
141
+ "learning_rate": 2.989481811807278e-05,
142
+ "loss": 1.1529,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.27586206896551724,
147
+ "grad_norm": 0.47845369577407837,
148
+ "learning_rate": 2.9866162322321703e-05,
149
+ "loss": 1.0957,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.2896551724137931,
154
+ "grad_norm": 0.42301008105278015,
155
+ "learning_rate": 2.9834075775600434e-05,
156
+ "loss": 1.064,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.30344827586206896,
161
+ "grad_norm": 0.43675681948661804,
162
+ "learning_rate": 2.979856588270846e-05,
163
+ "loss": 1.1521,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.31724137931034485,
168
+ "grad_norm": 0.4185957908630371,
169
+ "learning_rate": 2.9759640838470855e-05,
170
+ "loss": 1.0869,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.3310344827586207,
175
+ "grad_norm": 0.44748929142951965,
176
+ "learning_rate": 2.9717309625847053e-05,
177
+ "loss": 1.0377,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.3448275862068966,
182
+ "grad_norm": 0.5275693535804749,
183
+ "learning_rate": 2.9671582013857852e-05,
184
+ "loss": 1.0273,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.3586206896551724,
189
+ "grad_norm": 0.4910759925842285,
190
+ "learning_rate": 2.9622468555330916e-05,
191
+ "loss": 1.0,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.3724137931034483,
196
+ "grad_norm": 0.5396916270256042,
197
+ "learning_rate": 2.9569980584465485e-05,
198
+ "loss": 1.0143,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.38620689655172413,
203
+ "grad_norm": 0.5080529451370239,
204
+ "learning_rate": 2.9514130214216667e-05,
205
+ "loss": 0.9708,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4,
210
+ "grad_norm": 0.5421094298362732,
211
+ "learning_rate": 2.9454930333500094e-05,
212
+ "loss": 1.0351,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.41379310344827586,
217
+ "grad_norm": 0.580910861492157,
218
+ "learning_rate": 2.939239460421746e-05,
219
+ "loss": 1.0137,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.42758620689655175,
224
+ "grad_norm": 0.5520555973052979,
225
+ "learning_rate": 2.9326537458103687e-05,
226
+ "loss": 1.0253,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.4413793103448276,
231
+ "grad_norm": 0.6470196843147278,
232
+ "learning_rate": 2.9257374093396422e-05,
233
+ "loss": 0.9606,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.45517241379310347,
238
+ "grad_norm": 0.5860880017280579,
239
+ "learning_rate": 2.918492047132866e-05,
240
+ "loss": 0.9201,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.4689655172413793,
245
+ "grad_norm": 0.5931556820869446,
246
+ "learning_rate": 2.9109193312445277e-05,
247
+ "loss": 0.9308,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.4827586206896552,
252
+ "grad_norm": 0.5834107995033264,
253
+ "learning_rate": 2.9030210092744324e-05,
254
+ "loss": 0.8885,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.496551724137931,
259
+ "grad_norm": 0.6210553050041199,
260
+ "learning_rate": 2.8947989039644e-05,
261
+ "loss": 0.9306,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.5103448275862069,
266
+ "grad_norm": 0.6053234338760376,
267
+ "learning_rate": 2.886254912777619e-05,
268
+ "loss": 0.9501,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.5241379310344828,
273
+ "grad_norm": 0.615418553352356,
274
+ "learning_rate": 2.8773910074607604e-05,
275
+ "loss": 0.8837,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.5379310344827586,
280
+ "grad_norm": 0.6646992564201355,
281
+ "learning_rate": 2.868209233588942e-05,
282
+ "loss": 0.9339,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.5517241379310345,
287
+ "grad_norm": 0.6801667809486389,
288
+ "learning_rate": 2.8587117100936643e-05,
289
+ "loss": 0.8631,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.5655172413793104,
294
+ "grad_norm": 0.7012519836425781,
295
+ "learning_rate": 2.848900628773808e-05,
296
+ "loss": 0.895,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.5793103448275863,
301
+ "grad_norm": 0.6613981127738953,
302
+ "learning_rate": 2.838778253789822e-05,
303
+ "loss": 0.8927,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.593103448275862,
308
+ "grad_norm": 0.713719367980957,
309
+ "learning_rate": 2.8283469211412095e-05,
310
+ "loss": 0.8145,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.6068965517241379,
315
+ "grad_norm": 0.6679086089134216,
316
+ "learning_rate": 2.8176090381274353e-05,
317
+ "loss": 0.8243,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.6206896551724138,
322
+ "grad_norm": 0.6847007870674133,
323
+ "learning_rate": 2.80656708279238e-05,
324
+ "loss": 0.8398,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.6344827586206897,
329
+ "grad_norm": 0.7790941596031189,
330
+ "learning_rate": 2.7952236033524658e-05,
331
+ "loss": 0.8294,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.6482758620689655,
336
+ "grad_norm": 0.8283791542053223,
337
+ "learning_rate": 2.7835812176085937e-05,
338
+ "loss": 0.8102,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.6620689655172414,
343
+ "grad_norm": 0.7615893483161926,
344
+ "learning_rate": 2.7716426123420116e-05,
345
+ "loss": 0.8524,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.6758620689655173,
350
+ "grad_norm": 0.8538187742233276,
351
+ "learning_rate": 2.7594105426942774e-05,
352
+ "loss": 0.8682,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.6896551724137931,
357
+ "grad_norm": 0.8054585456848145,
358
+ "learning_rate": 2.7468878315314337e-05,
359
+ "loss": 0.8117,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.7034482758620689,
364
+ "grad_norm": 0.7562645077705383,
365
+ "learning_rate": 2.7340773687925615e-05,
366
+ "loss": 0.7848,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.7172413793103448,
371
+ "grad_norm": 0.8034841418266296,
372
+ "learning_rate": 2.72098211082285e-05,
373
+ "loss": 0.8063,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.7310344827586207,
378
+ "grad_norm": 0.7713001370429993,
379
+ "learning_rate": 2.7076050796913445e-05,
380
+ "loss": 0.7708,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.7448275862068966,
385
+ "grad_norm": 0.7349215745925903,
386
+ "learning_rate": 2.6939493624935273e-05,
387
+ "loss": 0.7648,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.7586206896551724,
392
+ "grad_norm": 0.8297277688980103,
393
+ "learning_rate": 2.6800181106388882e-05,
394
+ "loss": 0.7709,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.7724137931034483,
399
+ "grad_norm": 0.8245553970336914,
400
+ "learning_rate": 2.665814539123657e-05,
401
+ "loss": 0.7516,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.7862068965517242,
406
+ "grad_norm": 0.8287628293037415,
407
+ "learning_rate": 2.6513419257888598e-05,
408
+ "loss": 0.7406,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.8,
413
+ "grad_norm": 0.7908574938774109,
414
+ "learning_rate": 2.636603610563872e-05,
415
+ "loss": 0.7457,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 0.8137931034482758,
420
+ "grad_norm": 0.8348268866539001,
421
+ "learning_rate": 2.6216029946956425e-05,
422
+ "loss": 0.7558,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 0.8275862068965517,
427
+ "grad_norm": 0.8399357199668884,
428
+ "learning_rate": 2.6063435399637718e-05,
429
+ "loss": 0.7692,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 0.8413793103448276,
434
+ "grad_norm": 0.8294626474380493,
435
+ "learning_rate": 2.590828767881612e-05,
436
+ "loss": 0.7554,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 0.8551724137931035,
441
+ "grad_norm": 0.8007012009620667,
442
+ "learning_rate": 2.5750622588835903e-05,
443
+ "loss": 0.7334,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 0.8689655172413793,
448
+ "grad_norm": 0.9622930884361267,
449
+ "learning_rate": 2.5590476514989292e-05,
450
+ "loss": 0.7006,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 0.8827586206896552,
455
+ "grad_norm": 0.8566970825195312,
456
+ "learning_rate": 2.5427886415119635e-05,
457
+ "loss": 0.7081,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 0.896551724137931,
462
+ "grad_norm": 0.9438672661781311,
463
+ "learning_rate": 2.5262889811092413e-05,
464
+ "loss": 0.7227,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 0.9103448275862069,
469
+ "grad_norm": 0.9426260590553284,
470
+ "learning_rate": 2.5095524780136094e-05,
471
+ "loss": 0.7151,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 0.9241379310344827,
476
+ "grad_norm": 0.8882335424423218,
477
+ "learning_rate": 2.4925829946054857e-05,
478
+ "loss": 0.6595,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 0.9379310344827586,
483
+ "grad_norm": 0.9620512127876282,
484
+ "learning_rate": 2.4753844470315136e-05,
485
+ "loss": 0.6835,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 0.9517241379310345,
490
+ "grad_norm": 0.9925925135612488,
491
+ "learning_rate": 2.4579608043008074e-05,
492
+ "loss": 0.6816,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 0.9655172413793104,
497
+ "grad_norm": 1.0093214511871338,
498
+ "learning_rate": 2.4403160873690064e-05,
499
+ "loss": 0.6588,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 0.9793103448275862,
504
+ "grad_norm": 1.0236927270889282,
505
+ "learning_rate": 2.4224543682103302e-05,
506
+ "loss": 0.6208,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 0.993103448275862,
511
+ "grad_norm": 0.9697800278663635,
512
+ "learning_rate": 2.4043797688778682e-05,
513
+ "loss": 0.7097,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.0055172413793103,
518
+ "grad_norm": 0.9961010217666626,
519
+ "learning_rate": 2.3860964605523097e-05,
520
+ "loss": 0.6101,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.0193103448275862,
525
+ "grad_norm": 0.9595643877983093,
526
+ "learning_rate": 2.3676086625793353e-05,
527
+ "loss": 0.5552,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.033103448275862,
532
+ "grad_norm": 0.975598931312561,
533
+ "learning_rate": 2.348920641495893e-05,
534
+ "loss": 0.568,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.046896551724138,
539
+ "grad_norm": 1.0802812576293945,
540
+ "learning_rate": 2.330036710045586e-05,
541
+ "loss": 0.5319,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.0606896551724139,
546
+ "grad_norm": 0.9727413058280945,
547
+ "learning_rate": 2.3109612261833967e-05,
548
+ "loss": 0.5434,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.0744827586206895,
553
+ "grad_norm": 0.9035729765892029,
554
+ "learning_rate": 2.291698592069972e-05,
555
+ "loss": 0.5524,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.0882758620689654,
560
+ "grad_norm": 1.0716482400894165,
561
+ "learning_rate": 2.272253253055716e-05,
562
+ "loss": 0.5655,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.1020689655172413,
567
+ "grad_norm": 0.945554256439209,
568
+ "learning_rate": 2.2526296966549073e-05,
569
+ "loss": 0.57,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.1158620689655172,
574
+ "grad_norm": 1.1737520694732666,
575
+ "learning_rate": 2.2328324515100895e-05,
576
+ "loss": 0.5429,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.129655172413793,
581
+ "grad_norm": 0.9815288782119751,
582
+ "learning_rate": 2.212866086346971e-05,
583
+ "loss": 0.5188,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.143448275862069,
588
+ "grad_norm": 1.0767860412597656,
589
+ "learning_rate": 2.192735208920074e-05,
590
+ "loss": 0.5632,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.1572413793103449,
595
+ "grad_norm": 0.951698362827301,
596
+ "learning_rate": 2.1724444649493733e-05,
597
+ "loss": 0.5117,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.1710344827586208,
602
+ "grad_norm": 1.0386687517166138,
603
+ "learning_rate": 2.151998537048179e-05,
604
+ "loss": 0.5415,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.1848275862068967,
609
+ "grad_norm": 1.0586196184158325,
610
+ "learning_rate": 2.1314021436425026e-05,
611
+ "loss": 0.5628,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.1986206896551723,
616
+ "grad_norm": 0.9947938919067383,
617
+ "learning_rate": 2.1106600378821566e-05,
618
+ "loss": 0.5179,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.2124137931034482,
623
+ "grad_norm": 1.004014492034912,
624
+ "learning_rate": 2.089777006543844e-05,
625
+ "loss": 0.517,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.226206896551724,
630
+ "grad_norm": 1.0360642671585083,
631
+ "learning_rate": 2.0687578689264846e-05,
632
+ "loss": 0.5087,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.24,
637
+ "grad_norm": 0.9804148077964783,
638
+ "learning_rate": 2.0476074757390377e-05,
639
+ "loss": 0.5337,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.2537931034482759,
644
+ "grad_norm": 1.0974323749542236,
645
+ "learning_rate": 2.0263307079810774e-05,
646
+ "loss": 0.5384,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.2675862068965518,
651
+ "grad_norm": 0.999039888381958,
652
+ "learning_rate": 2.0049324758163714e-05,
653
+ "loss": 0.5006,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.2813793103448277,
658
+ "grad_norm": 1.0984313488006592,
659
+ "learning_rate": 1.9834177174397403e-05,
660
+ "loss": 0.4868,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.2951724137931033,
665
+ "grad_norm": 0.9641954898834229,
666
+ "learning_rate": 1.961791397937437e-05,
667
+ "loss": 0.5264,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.3089655172413792,
672
+ "grad_norm": 1.0755330324172974,
673
+ "learning_rate": 1.940058508141324e-05,
674
+ "loss": 0.4847,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.322758620689655,
679
+ "grad_norm": 1.0769026279449463,
680
+ "learning_rate": 1.9182240634771143e-05,
681
+ "loss": 0.505,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.336551724137931,
686
+ "grad_norm": 1.0196845531463623,
687
+ "learning_rate": 1.8962931028069292e-05,
688
+ "loss": 0.5788,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.3503448275862069,
693
+ "grad_norm": 1.0171618461608887,
694
+ "learning_rate": 1.8742706872664516e-05,
695
+ "loss": 0.4761,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.3641379310344828,
700
+ "grad_norm": 1.1664354801177979,
701
+ "learning_rate": 1.852161899096938e-05,
702
+ "loss": 0.5073,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.3779310344827587,
707
+ "grad_norm": 1.1605677604675293,
708
+ "learning_rate": 1.8299718404723604e-05,
709
+ "loss": 0.4569,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.3917241379310346,
714
+ "grad_norm": 1.0353474617004395,
715
+ "learning_rate": 1.8077056323219468e-05,
716
+ "loss": 0.4463,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.4055172413793104,
721
+ "grad_norm": 1.0919967889785767,
722
+ "learning_rate": 1.7853684131483973e-05,
723
+ "loss": 0.4703,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.4193103448275863,
728
+ "grad_norm": 1.0212621688842773,
729
+ "learning_rate": 1.7629653378420375e-05,
730
+ "loss": 0.4504,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.433103448275862,
735
+ "grad_norm": 1.1534277200698853,
736
+ "learning_rate": 1.7405015764911986e-05,
737
+ "loss": 0.48,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.446896551724138,
742
+ "grad_norm": 1.0325161218643188,
743
+ "learning_rate": 1.7179823131890833e-05,
744
+ "loss": 0.4862,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.4606896551724138,
749
+ "grad_norm": 0.9828569293022156,
750
+ "learning_rate": 1.6954127448374036e-05,
751
+ "loss": 0.4161,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.4744827586206897,
756
+ "grad_norm": 1.2551393508911133,
757
+ "learning_rate": 1.6727980799470606e-05,
758
+ "loss": 0.4713,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.4882758620689656,
763
+ "grad_norm": 1.0653741359710693,
764
+ "learning_rate": 1.6501435374361478e-05,
765
+ "loss": 0.4317,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.5020689655172412,
770
+ "grad_norm": 1.1682952642440796,
771
+ "learning_rate": 1.627454345425548e-05,
772
+ "loss": 0.4717,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.5158620689655171,
777
+ "grad_norm": 1.0231668949127197,
778
+ "learning_rate": 1.6047357400324123e-05,
779
+ "loss": 0.4609,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.529655172413793,
784
+ "grad_norm": 1.1539297103881836,
785
+ "learning_rate": 1.5819929641617903e-05,
786
+ "loss": 0.4365,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.543448275862069,
791
+ "grad_norm": 1.0333889722824097,
792
+ "learning_rate": 1.5592312662966914e-05,
793
+ "loss": 0.4506,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.5572413793103448,
798
+ "grad_norm": 1.0939481258392334,
799
+ "learning_rate": 1.536455899286866e-05,
800
+ "loss": 0.4436,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.5710344827586207,
805
+ "grad_norm": 1.1466500759124756,
806
+ "learning_rate": 1.5136721191365721e-05,
807
+ "loss": 0.4328,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.5848275862068966,
812
+ "grad_norm": 1.1545034646987915,
813
+ "learning_rate": 1.4908851837916164e-05,
814
+ "loss": 0.4178,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.5986206896551725,
819
+ "grad_norm": 1.4069446325302124,
820
+ "learning_rate": 1.4681003519259503e-05,
821
+ "loss": 0.4417,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 1.6124137931034483,
826
+ "grad_norm": 1.1030892133712769,
827
+ "learning_rate": 1.4453228817280906e-05,
828
+ "loss": 0.4325,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 1.6262068965517242,
833
+ "grad_norm": 1.0566986799240112,
834
+ "learning_rate": 1.4225580296876608e-05,
835
+ "loss": 0.4095,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 1.6400000000000001,
840
+ "grad_norm": 1.0491068363189697,
841
+ "learning_rate": 1.3998110493823178e-05,
842
+ "loss": 0.4327,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 1.653793103448276,
847
+ "grad_norm": 1.0508897304534912,
848
+ "learning_rate": 1.3770871902653543e-05,
849
+ "loss": 0.4275,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 1.6675862068965517,
854
+ "grad_norm": 1.1155571937561035,
855
+ "learning_rate": 1.354391696454251e-05,
856
+ "loss": 0.4075,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 1.6813793103448276,
861
+ "grad_norm": 1.0396450757980347,
862
+ "learning_rate": 1.3317298055204635e-05,
863
+ "loss": 0.4039,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 1.6951724137931035,
868
+ "grad_norm": 1.2020153999328613,
869
+ "learning_rate": 1.3091067472807119e-05,
870
+ "loss": 0.391,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 1.7089655172413794,
875
+ "grad_norm": 1.1432818174362183,
876
+ "learning_rate": 1.2865277425900725e-05,
877
+ "loss": 0.4122,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 1.722758620689655,
882
+ "grad_norm": 1.072961449623108,
883
+ "learning_rate": 1.2639980021371252e-05,
884
+ "loss": 0.3879,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 1.736551724137931,
889
+ "grad_norm": 1.0933804512023926,
890
+ "learning_rate": 1.2415227252414554e-05,
891
+ "loss": 0.3905,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 1.7503448275862068,
896
+ "grad_norm": 1.3119415044784546,
897
+ "learning_rate": 1.219107098653775e-05,
898
+ "loss": 0.4034,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 1.7641379310344827,
903
+ "grad_norm": 1.0820121765136719,
904
+ "learning_rate": 1.196756295358948e-05,
905
+ "loss": 0.421,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 1.7779310344827586,
910
+ "grad_norm": 1.1389496326446533,
911
+ "learning_rate": 1.174475473382186e-05,
912
+ "loss": 0.4228,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 1.7917241379310345,
917
+ "grad_norm": 0.9890799522399902,
918
+ "learning_rate": 1.1522697745987076e-05,
919
+ "loss": 0.4245,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 1.8055172413793104,
924
+ "grad_norm": 1.186639428138733,
925
+ "learning_rate": 1.1301443235471116e-05,
926
+ "loss": 0.3934,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 1.8193103448275862,
931
+ "grad_norm": 1.17351233959198,
932
+ "learning_rate": 1.1081042262467602e-05,
933
+ "loss": 0.3634,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 1.8331034482758621,
938
+ "grad_norm": 1.2075047492980957,
939
+ "learning_rate": 1.0861545690194335e-05,
940
+ "loss": 0.3863,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 1.846896551724138,
945
+ "grad_norm": 1.1475646495819092,
946
+ "learning_rate": 1.0643004173155261e-05,
947
+ "loss": 0.4353,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 1.860689655172414,
952
+ "grad_norm": 1.2288826704025269,
953
+ "learning_rate": 1.04254681454507e-05,
954
+ "loss": 0.3821,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 1.8744827586206898,
959
+ "grad_norm": 1.0479319095611572,
960
+ "learning_rate": 1.0208987809138299e-05,
961
+ "loss": 0.3929,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 1.8882758620689655,
966
+ "grad_norm": 1.2405054569244385,
967
+ "learning_rate": 9.993613122647663e-06,
968
+ "loss": 0.3905,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 1.9020689655172414,
973
+ "grad_norm": 1.0721787214279175,
974
+ "learning_rate": 9.779393789251134e-06,
975
+ "loss": 0.4025,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 1.9158620689655173,
980
+ "grad_norm": 1.1694467067718506,
981
+ "learning_rate": 9.566379245593498e-06,
982
+ "loss": 0.3968,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 1.9296551724137931,
987
+ "grad_norm": 1.201874852180481,
988
+ "learning_rate": 9.35461865028316e-06,
989
+ "loss": 0.3792,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 1.9434482758620688,
994
+ "grad_norm": 1.0933696031570435,
995
+ "learning_rate": 9.144160872547579e-06,
996
+ "loss": 0.3552,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 1.9572413793103447,
1001
+ "grad_norm": 1.077457070350647,
1002
+ "learning_rate": 8.93505448095539e-06,
1003
+ "loss": 0.3673,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 1.9710344827586206,
1008
+ "grad_norm": 1.1806907653808594,
1009
+ "learning_rate": 8.727347732207974e-06,
1010
+ "loss": 0.336,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 1.9848275862068965,
1015
+ "grad_norm": 1.081370234489441,
1016
+ "learning_rate": 8.521088560002963e-06,
1017
+ "loss": 0.3658,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 1.9986206896551724,
1022
+ "grad_norm": 1.1178879737854004,
1023
+ "learning_rate": 8.316324563972315e-06,
1024
+ "loss": 0.3683,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.0110344827586206,
1029
+ "grad_norm": 1.1146636009216309,
1030
+ "learning_rate": 8.113102998697463e-06,
1031
+ "loss": 0.2828,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.0248275862068965,
1036
+ "grad_norm": 1.2588555812835693,
1037
+ "learning_rate": 7.911470762804104e-06,
1038
+ "loss": 0.2985,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.0386206896551724,
1043
+ "grad_norm": 1.2606914043426514,
1044
+ "learning_rate": 7.711474388139112e-06,
1045
+ "loss": 0.3074,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.0524137931034483,
1050
+ "grad_norm": 1.11820387840271,
1051
+ "learning_rate": 7.513160029032141e-06,
1052
+ "loss": 0.294,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.066206896551724,
1057
+ "grad_norm": 1.0435316562652588,
1058
+ "learning_rate": 7.316573451644302e-06,
1059
+ "loss": 0.2875,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.08,
1064
+ "grad_norm": 1.3059062957763672,
1065
+ "learning_rate": 7.1217600234064315e-06,
1066
+ "loss": 0.2812,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.093793103448276,
1071
+ "grad_norm": 1.2035919427871704,
1072
+ "learning_rate": 6.928764702549411e-06,
1073
+ "loss": 0.2788,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.107586206896552,
1078
+ "grad_norm": 1.2044228315353394,
1079
+ "learning_rate": 6.737632027728874e-06,
1080
+ "loss": 0.2729,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.1213793103448277,
1085
+ "grad_norm": 1.1182624101638794,
1086
+ "learning_rate": 6.5484061077467714e-06,
1087
+ "loss": 0.3289,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.1351724137931036,
1092
+ "grad_norm": 1.1793614625930786,
1093
+ "learning_rate": 6.361130611372102e-06,
1094
+ "loss": 0.3182,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.148965517241379,
1099
+ "grad_norm": 1.0818067789077759,
1100
+ "learning_rate": 6.175848757263268e-06,
1101
+ "loss": 0.2638,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.162758620689655,
1106
+ "grad_norm": 1.1334140300750732,
1107
+ "learning_rate": 5.992603303994189e-06,
1108
+ "loss": 0.2618,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.176551724137931,
1113
+ "grad_norm": 1.2197356224060059,
1114
+ "learning_rate": 5.811436540186702e-06,
1115
+ "loss": 0.2847,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.1903448275862067,
1120
+ "grad_norm": 1.2150832414627075,
1121
+ "learning_rate": 5.632390274751355e-06,
1122
+ "loss": 0.3038,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.2041379310344826,
1127
+ "grad_norm": 1.0440075397491455,
1128
+ "learning_rate": 5.455505827238925e-06,
1129
+ "loss": 0.2883,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.2179310344827585,
1134
+ "grad_norm": 1.1683392524719238,
1135
+ "learning_rate": 5.280824018304839e-06,
1136
+ "loss": 0.3094,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.2317241379310344,
1141
+ "grad_norm": 1.0837711095809937,
1142
+ "learning_rate": 5.108385160288808e-06,
1143
+ "loss": 0.2645,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.2455172413793103,
1148
+ "grad_norm": 1.3255565166473389,
1149
+ "learning_rate": 4.938229047911652e-06,
1150
+ "loss": 0.2691,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.259310344827586,
1155
+ "grad_norm": 1.1892286539077759,
1156
+ "learning_rate": 4.770394949091679e-06,
1157
+ "loss": 0.3056,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.273103448275862,
1162
+ "grad_norm": 1.0651421546936035,
1163
+ "learning_rate": 4.604921595882591e-06,
1164
+ "loss": 0.2741,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.286896551724138,
1169
+ "grad_norm": 1.3403918743133545,
1170
+ "learning_rate": 4.441847175535054e-06,
1171
+ "loss": 0.329,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.300689655172414,
1176
+ "grad_norm": 1.1145679950714111,
1177
+ "learning_rate": 4.281209321684011e-06,
1178
+ "loss": 0.2802,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.3144827586206898,
1183
+ "grad_norm": 1.1731306314468384,
1184
+ "learning_rate": 4.123045105663743e-06,
1185
+ "loss": 0.2901,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.3282758620689656,
1190
+ "grad_norm": 1.0816731452941895,
1191
+ "learning_rate": 3.967391027952709e-06,
1192
+ "loss": 0.2506,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.3420689655172415,
1197
+ "grad_norm": 1.2338043451309204,
1198
+ "learning_rate": 3.8142830097500982e-06,
1199
+ "loss": 0.2822,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.3558620689655174,
1204
+ "grad_norm": 1.0032469034194946,
1205
+ "learning_rate": 3.6637563846861278e-06,
1206
+ "loss": 0.2605,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.3696551724137933,
1211
+ "grad_norm": 1.2435439825057983,
1212
+ "learning_rate": 3.515845890667835e-06,
1213
+ "loss": 0.2887,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.3834482758620688,
1218
+ "grad_norm": 1.0096521377563477,
1219
+ "learning_rate": 3.370585661862462e-06,
1220
+ "loss": 0.2821,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.3972413793103446,
1225
+ "grad_norm": 1.1986134052276611,
1226
+ "learning_rate": 3.2280092208200853e-06,
1227
+ "loss": 0.2634,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.4110344827586205,
1232
+ "grad_norm": 1.4550834894180298,
1233
+ "learning_rate": 3.0881494707374318e-06,
1234
+ "loss": 0.2717,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 2.4248275862068964,
1239
+ "grad_norm": 1.0646744966506958,
1240
+ "learning_rate": 2.951038687864607e-06,
1241
+ "loss": 0.2631,
1242
+ "step": 880
1243
+ },
1244
+ {
1245
+ "epoch": 2.4386206896551723,
1246
+ "grad_norm": 1.1810719966888428,
1247
+ "learning_rate": 2.8167085140565257e-06,
1248
+ "loss": 0.2866,
1249
+ "step": 885
1250
+ },
1251
+ {
1252
+ "epoch": 2.452413793103448,
1253
+ "grad_norm": 1.0311094522476196,
1254
+ "learning_rate": 2.68518994947074e-06,
1255
+ "loss": 0.2762,
1256
+ "step": 890
1257
+ },
1258
+ {
1259
+ "epoch": 2.466206896551724,
1260
+ "grad_norm": 1.103126049041748,
1261
+ "learning_rate": 2.556513345413341e-06,
1262
+ "loss": 0.2953,
1263
+ "step": 895
1264
+ },
1265
+ {
1266
+ "epoch": 2.48,
1267
+ "grad_norm": 1.0111137628555298,
1268
+ "learning_rate": 2.4307083973346146e-06,
1269
+ "loss": 0.2627,
1270
+ "step": 900
1271
+ },
1272
+ {
1273
+ "epoch": 2.493793103448276,
1274
+ "grad_norm": 1.2547590732574463,
1275
+ "learning_rate": 2.3078041379760562e-06,
1276
+ "loss": 0.2782,
1277
+ "step": 905
1278
+ },
1279
+ {
1280
+ "epoch": 2.5075862068965518,
1281
+ "grad_norm": 1.2016406059265137,
1282
+ "learning_rate": 2.187828930670299e-06,
1283
+ "loss": 0.272,
1284
+ "step": 910
1285
+ },
1286
+ {
1287
+ "epoch": 2.5213793103448277,
1288
+ "grad_norm": 1.184328317642212,
1289
+ "learning_rate": 2.070810462795562e-06,
1290
+ "loss": 0.2596,
1291
+ "step": 915
1292
+ },
1293
+ {
1294
+ "epoch": 2.5351724137931035,
1295
+ "grad_norm": 1.1365069150924683,
1296
+ "learning_rate": 1.9567757393860736e-06,
1297
+ "loss": 0.2611,
1298
+ "step": 920
1299
+ },
1300
+ {
1301
+ "epoch": 2.5489655172413794,
1302
+ "grad_norm": 1.1061021089553833,
1303
+ "learning_rate": 1.8457510768999276e-06,
1304
+ "loss": 0.2733,
1305
+ "step": 925
1306
+ },
1307
+ {
1308
+ "epoch": 2.5627586206896553,
1309
+ "grad_norm": 1.1069626808166504,
1310
+ "learning_rate": 1.737762097145925e-06,
1311
+ "loss": 0.2682,
1312
+ "step": 930
1313
+ },
1314
+ {
1315
+ "epoch": 2.576551724137931,
1316
+ "grad_norm": 1.1777106523513794,
1317
+ "learning_rate": 1.6328337213706545e-06,
1318
+ "loss": 0.238,
1319
+ "step": 935
1320
+ },
1321
+ {
1322
+ "epoch": 2.5903448275862067,
1323
+ "grad_norm": 1.2002151012420654,
1324
+ "learning_rate": 1.5309901645072776e-06,
1325
+ "loss": 0.2872,
1326
+ "step": 940
1327
+ },
1328
+ {
1329
+ "epoch": 2.604137931034483,
1330
+ "grad_norm": 1.1341054439544678,
1331
+ "learning_rate": 1.4322549295873006e-06,
1332
+ "loss": 0.276,
1333
+ "step": 945
1334
+ },
1335
+ {
1336
+ "epoch": 2.6179310344827584,
1337
+ "grad_norm": 1.1705831289291382,
1338
+ "learning_rate": 1.3366508023166619e-06,
1339
+ "loss": 0.2582,
1340
+ "step": 950
1341
+ },
1342
+ {
1343
+ "epoch": 2.6317241379310343,
1344
+ "grad_norm": 1.139310359954834,
1345
+ "learning_rate": 1.2441998458173142e-06,
1346
+ "loss": 0.2603,
1347
+ "step": 955
1348
+ },
1349
+ {
1350
+ "epoch": 2.64551724137931,
1351
+ "grad_norm": 1.1581835746765137,
1352
+ "learning_rate": 1.1549233955356143e-06,
1353
+ "loss": 0.2684,
1354
+ "step": 960
1355
+ },
1356
+ {
1357
+ "epoch": 2.659310344827586,
1358
+ "grad_norm": 1.1978882551193237,
1359
+ "learning_rate": 1.0688420543186033e-06,
1360
+ "loss": 0.225,
1361
+ "step": 965
1362
+ },
1363
+ {
1364
+ "epoch": 2.673103448275862,
1365
+ "grad_norm": 1.1953506469726562,
1366
+ "learning_rate": 9.859756876593723e-07,
1367
+ "loss": 0.3167,
1368
+ "step": 970
1369
+ },
1370
+ {
1371
+ "epoch": 2.686896551724138,
1372
+ "grad_norm": 1.2417023181915283,
1373
+ "learning_rate": 9.063434191125808e-07,
1374
+ "loss": 0.2754,
1375
+ "step": 975
1376
+ },
1377
+ {
1378
+ "epoch": 2.7006896551724138,
1379
+ "grad_norm": 1.1282715797424316,
1380
+ "learning_rate": 8.299636258812199e-07,
1381
+ "loss": 0.2584,
1382
+ "step": 980
1383
+ },
1384
+ {
1385
+ "epoch": 2.7144827586206897,
1386
+ "grad_norm": 1.0809553861618042,
1387
+ "learning_rate": 7.568539345755692e-07,
1388
+ "loss": 0.2556,
1389
+ "step": 985
1390
+ },
1391
+ {
1392
+ "epoch": 2.7282758620689656,
1393
+ "grad_norm": 1.2238688468933105,
1394
+ "learning_rate": 6.870312171454296e-07,
1395
+ "loss": 0.261,
1396
+ "step": 990
1397
+ },
1398
+ {
1399
+ "epoch": 2.7420689655172414,
1400
+ "grad_norm": 1.2479712963104248,
1401
+ "learning_rate": 6.205115869864686e-07,
1402
+ "loss": 0.2679,
1403
+ "step": 995
1404
+ },
1405
+ {
1406
+ "epoch": 2.7558620689655173,
1407
+ "grad_norm": 1.1291388273239136,
1408
+ "learning_rate": 5.573103952216457e-07,
1409
+ "loss": 0.2724,
1410
+ "step": 1000
1411
+ },
1412
+ {
1413
+ "epoch": 2.769655172413793,
1414
+ "grad_norm": 1.117020845413208,
1415
+ "learning_rate": 4.974422271585327e-07,
1416
+ "loss": 0.2859,
1417
+ "step": 1005
1418
+ },
1419
+ {
1420
+ "epoch": 2.783448275862069,
1421
+ "grad_norm": 1.1507805585861206,
1422
+ "learning_rate": 4.4092089892339427e-07,
1423
+ "loss": 0.2696,
1424
+ "step": 1010
1425
+ },
1426
+ {
1427
+ "epoch": 2.7972413793103446,
1428
+ "grad_norm": 1.1751760244369507,
1429
+ "learning_rate": 3.877594542727503e-07,
1430
+ "loss": 0.2369,
1431
+ "step": 1015
1432
+ },
1433
+ {
1434
+ "epoch": 2.811034482758621,
1435
+ "grad_norm": 1.1543550491333008,
1436
+ "learning_rate": 3.379701615831837e-07,
1437
+ "loss": 0.2949,
1438
+ "step": 1020
1439
+ },
1440
+ {
1441
+ "epoch": 2.8248275862068963,
1442
+ "grad_norm": 1.1876450777053833,
1443
+ "learning_rate": 2.9156451102011704e-07,
1444
+ "loss": 0.2649,
1445
+ "step": 1025
1446
+ },
1447
+ {
1448
+ "epoch": 2.8386206896551727,
1449
+ "grad_norm": 1.0123815536499023,
1450
+ "learning_rate": 2.4855321188614e-07,
1451
+ "loss": 0.2511,
1452
+ "step": 1030
1453
+ },
1454
+ {
1455
+ "epoch": 2.852413793103448,
1456
+ "grad_norm": 1.197932481765747,
1457
+ "learning_rate": 2.089461901495715e-07,
1458
+ "loss": 0.2389,
1459
+ "step": 1035
1460
+ },
1461
+ {
1462
+ "epoch": 2.866206896551724,
1463
+ "grad_norm": 1.1045258045196533,
1464
+ "learning_rate": 1.7275258615378375e-07,
1465
+ "loss": 0.2871,
1466
+ "step": 1040
1467
+ },
1468
+ {
1469
+ "epoch": 2.88,
1470
+ "grad_norm": 1.2319388389587402,
1471
+ "learning_rate": 1.399807525078345e-07,
1472
+ "loss": 0.258,
1473
+ "step": 1045
1474
+ },
1475
+ {
1476
+ "epoch": 2.893793103448276,
1477
+ "grad_norm": 1.1577198505401611,
1478
+ "learning_rate": 1.1063825215887558e-07,
1479
+ "loss": 0.2656,
1480
+ "step": 1050
1481
+ },
1482
+ {
1483
+ "epoch": 2.9075862068965517,
1484
+ "grad_norm": 1.090755581855774,
1485
+ "learning_rate": 8.473185664682415e-08,
1486
+ "loss": 0.2644,
1487
+ "step": 1055
1488
+ },
1489
+ {
1490
+ "epoch": 2.9213793103448276,
1491
+ "grad_norm": 1.038208246231079,
1492
+ "learning_rate": 6.226754454164263e-08,
1493
+ "loss": 0.2612,
1494
+ "step": 1060
1495
+ },
1496
+ {
1497
+ "epoch": 2.9351724137931035,
1498
+ "grad_norm": 0.9841290712356567,
1499
+ "learning_rate": 4.325050006363906e-08,
1500
+ "loss": 0.2677,
1501
+ "step": 1065
1502
+ },
1503
+ {
1504
+ "epoch": 2.9489655172413793,
1505
+ "grad_norm": 1.1243023872375488,
1506
+ "learning_rate": 2.7685111887059134e-08,
1507
+ "loss": 0.2704,
1508
+ "step": 1070
1509
+ },
1510
+ {
1511
+ "epoch": 2.9627586206896552,
1512
+ "grad_norm": 1.0708945989608765,
1513
+ "learning_rate": 1.5574972127302967e-08,
1514
+ "loss": 0.2381,
1515
+ "step": 1075
1516
+ },
1517
+ {
1518
+ "epoch": 2.976551724137931,
1519
+ "grad_norm": 1.0898057222366333,
1520
+ "learning_rate": 6.922875511943261e-09,
1521
+ "loss": 0.2489,
1522
+ "step": 1080
1523
+ },
1524
+ {
1525
+ "epoch": 2.990344827586207,
1526
+ "grad_norm": 1.0777441263198853,
1527
+ "learning_rate": 1.7308187357695237e-09,
1528
+ "loss": 0.2486,
1529
+ "step": 1085
1530
+ },
1531
+ {
1532
+ "epoch": 3.0,
1533
+ "step": 1089,
1534
+ "total_flos": 1.5435133944793661e+18,
1535
+ "train_loss": 0.5637503340224589,
1536
+ "train_runtime": 727.9191,
1537
+ "train_samples_per_second": 47.799,
1538
+ "train_steps_per_second": 1.496
1539
+ }
1540
+ ],
1541
+ "logging_steps": 5,
1542
+ "max_steps": 1089,
1543
+ "num_input_tokens_seen": 0,
1544
+ "num_train_epochs": 3,
1545
+ "save_steps": 20000,
1546
+ "stateful_callbacks": {
1547
+ "TrainerControl": {
1548
+ "args": {
1549
+ "should_epoch_stop": false,
1550
+ "should_evaluate": false,
1551
+ "should_log": false,
1552
+ "should_save": false,
1553
+ "should_training_stop": false
1554
+ },
1555
+ "attributes": {}
1556
+ }
1557
+ },
1558
+ "total_flos": 1.5435133944793661e+18,
1559
+ "train_batch_size": 2,
1560
+ "trial_name": null,
1561
+ "trial_params": null
1562
+ }
123_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7968c31f2a463f159778c55978c05fcde1e70522277c869dcd01a4c0d77a1da2
3
+ size 8273
123_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff