RayDu0010 commited on
Commit
adaf3ee
·
verified ·
1 Parent(s): b16c3fb

Upload folder using huggingface_hub

Browse files
128_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
+ "down_proj",
29
+ "o_proj",
30
+ "gate_proj",
31
+ "up_proj",
32
+ "k_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
128_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3182fd17be63ac0179915476cc06ba472cab424e81c49bbaf3378204496d9e02
3
+ size 791751704
128_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
+ }
128_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.0852008719076557e+18,
4
+ "train_loss": 0.5684480382048566,
5
+ "train_runtime": 514.9885,
6
+ "train_samples": 8826,
7
+ "train_samples_per_second": 51.415,
8
+ "train_steps_per_second": 1.608
9
+ }
128_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 %}
128_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
+ }
128_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
128_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
+ }
128_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
128_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
+ }
128_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.0852008719076557e+18,
4
+ "train_loss": 0.5684480382048566,
5
+ "train_runtime": 514.9885,
6
+ "train_samples": 8826,
7
+ "train_samples_per_second": 51.415,
8
+ "train_steps_per_second": 1.608
9
+ }
128_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 828,
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.018115942028985508,
14
+ "grad_norm": 3.141718626022339,
15
+ "learning_rate": 2.8571428571428573e-06,
16
+ "loss": 1.6009,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.036231884057971016,
21
+ "grad_norm": 1.5839765071868896,
22
+ "learning_rate": 6.428571428571429e-06,
23
+ "loss": 1.5254,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.05434782608695652,
28
+ "grad_norm": 0.7266197800636292,
29
+ "learning_rate": 9.999999999999999e-06,
30
+ "loss": 1.4437,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.07246376811594203,
35
+ "grad_norm": 0.48363223671913147,
36
+ "learning_rate": 1.3571428571428572e-05,
37
+ "loss": 1.3438,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.09057971014492754,
42
+ "grad_norm": 0.5483124256134033,
43
+ "learning_rate": 1.7142857142857142e-05,
44
+ "loss": 1.3397,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.10869565217391304,
49
+ "grad_norm": 0.5151329636573792,
50
+ "learning_rate": 2.0714285714285715e-05,
51
+ "loss": 1.3153,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.12681159420289856,
56
+ "grad_norm": 0.4350980222225189,
57
+ "learning_rate": 2.4285714285714288e-05,
58
+ "loss": 1.3054,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.14492753623188406,
63
+ "grad_norm": 0.43142423033714294,
64
+ "learning_rate": 2.7857142857142858e-05,
65
+ "loss": 1.2735,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.16304347826086957,
70
+ "grad_norm": 0.5295076966285706,
71
+ "learning_rate": 2.999952073733835e-05,
72
+ "loss": 1.2771,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.18115942028985507,
77
+ "grad_norm": 0.4926711320877075,
78
+ "learning_rate": 2.9994129384105553e-05,
79
+ "loss": 1.2463,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.19927536231884058,
84
+ "grad_norm": 0.4256545305252075,
85
+ "learning_rate": 2.9982749759659206e-05,
86
+ "loss": 1.1874,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.21739130434782608,
91
+ "grad_norm": 0.4436766803264618,
92
+ "learning_rate": 2.996538640872983e-05,
93
+ "loss": 1.184,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.23550724637681159,
98
+ "grad_norm": 0.47416767477989197,
99
+ "learning_rate": 2.9942046265795044e-05,
100
+ "loss": 1.1697,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.2536231884057971,
105
+ "grad_norm": 0.4657860994338989,
106
+ "learning_rate": 2.9912738652310094e-05,
107
+ "loss": 1.1384,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.2717391304347826,
112
+ "grad_norm": 0.466838538646698,
113
+ "learning_rate": 2.9877475272985114e-05,
114
+ "loss": 1.0944,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.2898550724637681,
119
+ "grad_norm": 0.512215793132782,
120
+ "learning_rate": 2.9836270211110567e-05,
121
+ "loss": 1.1878,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.3079710144927536,
126
+ "grad_norm": 0.5532276034355164,
127
+ "learning_rate": 2.978913992293273e-05,
128
+ "loss": 1.0962,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.32608695652173914,
133
+ "grad_norm": 0.5240709781646729,
134
+ "learning_rate": 2.9736103231081494e-05,
135
+ "loss": 1.1392,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.3442028985507246,
140
+ "grad_norm": 0.4689042568206787,
141
+ "learning_rate": 2.9677181317053095e-05,
142
+ "loss": 1.0627,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.36231884057971014,
147
+ "grad_norm": 0.5682642459869385,
148
+ "learning_rate": 2.961239771275076e-05,
149
+ "loss": 1.0391,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.3804347826086957,
154
+ "grad_norm": 0.5367546677589417,
155
+ "learning_rate": 2.9541778291086666e-05,
156
+ "loss": 1.0483,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.39855072463768115,
161
+ "grad_norm": 0.6141631007194519,
162
+ "learning_rate": 2.9465351255648967e-05,
163
+ "loss": 1.058,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.4166666666666667,
168
+ "grad_norm": 0.5437244772911072,
169
+ "learning_rate": 2.9383147129438e-05,
170
+ "loss": 1.0233,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.43478260869565216,
175
+ "grad_norm": 0.5839408040046692,
176
+ "learning_rate": 2.929519874267619e-05,
177
+ "loss": 1.043,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.4528985507246377,
182
+ "grad_norm": 0.6401098966598511,
183
+ "learning_rate": 2.9201541219696464e-05,
184
+ "loss": 0.9842,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.47101449275362317,
189
+ "grad_norm": 0.5253692865371704,
190
+ "learning_rate": 2.9102211964914554e-05,
191
+ "loss": 0.9681,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.4891304347826087,
196
+ "grad_norm": 0.7245438694953918,
197
+ "learning_rate": 2.899725064789058e-05,
198
+ "loss": 0.9361,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.5072463768115942,
203
+ "grad_norm": 0.6089861392974854,
204
+ "learning_rate": 2.888669918748606e-05,
205
+ "loss": 0.9595,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.5253623188405797,
210
+ "grad_norm": 0.6549133062362671,
211
+ "learning_rate": 2.8770601735122593e-05,
212
+ "loss": 0.9773,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.5434782608695652,
217
+ "grad_norm": 0.6593577265739441,
218
+ "learning_rate": 2.864900465714891e-05,
219
+ "loss": 0.9214,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.5615942028985508,
224
+ "grad_norm": 0.7598589658737183,
225
+ "learning_rate": 2.852195651632334e-05,
226
+ "loss": 0.9222,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.5797101449275363,
231
+ "grad_norm": 0.6366355419158936,
232
+ "learning_rate": 2.8389508052419107e-05,
233
+ "loss": 0.9004,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.5978260869565217,
238
+ "grad_norm": 0.7453078627586365,
239
+ "learning_rate": 2.8251712161960118e-05,
240
+ "loss": 0.9022,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.6159420289855072,
245
+ "grad_norm": 0.7428743243217468,
246
+ "learning_rate": 2.810862387709551e-05,
247
+ "loss": 0.877,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.6340579710144928,
252
+ "grad_norm": 0.7032713890075684,
253
+ "learning_rate": 2.7960300343621145e-05,
254
+ "loss": 0.8117,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.6521739130434783,
259
+ "grad_norm": 0.8186202049255371,
260
+ "learning_rate": 2.7806800798157126e-05,
261
+ "loss": 0.85,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.6702898550724637,
266
+ "grad_norm": 0.8010949492454529,
267
+ "learning_rate": 2.7648186544490135e-05,
268
+ "loss": 0.8477,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.6884057971014492,
273
+ "grad_norm": 0.6747431755065918,
274
+ "learning_rate": 2.7484520929090313e-05,
275
+ "loss": 0.7661,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.7065217391304348,
280
+ "grad_norm": 0.8960378766059875,
281
+ "learning_rate": 2.731586931581229e-05,
282
+ "loss": 0.795,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.7246376811594203,
287
+ "grad_norm": 0.7971881628036499,
288
+ "learning_rate": 2.7142299059790534e-05,
289
+ "loss": 0.8131,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.7427536231884058,
294
+ "grad_norm": 0.947172999382019,
295
+ "learning_rate": 2.6963879480539437e-05,
296
+ "loss": 0.7951,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.7608695652173914,
301
+ "grad_norm": 0.7786508202552795,
302
+ "learning_rate": 2.678068183426888e-05,
303
+ "loss": 0.7512,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.7789855072463768,
308
+ "grad_norm": 0.8430163264274597,
309
+ "learning_rate": 2.6592779285426332e-05,
310
+ "loss": 0.771,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.7971014492753623,
315
+ "grad_norm": 0.9334030747413635,
316
+ "learning_rate": 2.640024687747682e-05,
317
+ "loss": 0.7409,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.8152173913043478,
322
+ "grad_norm": 0.8622900247573853,
323
+ "learning_rate": 2.6203161502932514e-05,
324
+ "loss": 0.7615,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.8333333333333334,
329
+ "grad_norm": 0.8947198987007141,
330
+ "learning_rate": 2.600160187264384e-05,
331
+ "loss": 0.7351,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.8514492753623188,
336
+ "grad_norm": 0.9292824268341064,
337
+ "learning_rate": 2.579564848436433e-05,
338
+ "loss": 0.7657,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.8695652173913043,
343
+ "grad_norm": 0.8689068555831909,
344
+ "learning_rate": 2.5585383590601953e-05,
345
+ "loss": 0.6999,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.8876811594202898,
350
+ "grad_norm": 1.1047435998916626,
351
+ "learning_rate": 2.5370891165769498e-05,
352
+ "loss": 0.7169,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.9057971014492754,
357
+ "grad_norm": 0.9786391854286194,
358
+ "learning_rate": 2.5152256872647403e-05,
359
+ "loss": 0.6943,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.9239130434782609,
364
+ "grad_norm": 0.8988637328147888,
365
+ "learning_rate": 2.4929568028172196e-05,
366
+ "loss": 0.706,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.9420289855072463,
371
+ "grad_norm": 1.0526165962219238,
372
+ "learning_rate": 2.470291356856437e-05,
373
+ "loss": 0.6858,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.9601449275362319,
378
+ "grad_norm": 0.907991349697113,
379
+ "learning_rate": 2.4472384013809516e-05,
380
+ "loss": 0.6663,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.9782608695652174,
385
+ "grad_norm": 0.8756071925163269,
386
+ "learning_rate": 2.4238071431506977e-05,
387
+ "loss": 0.6676,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.9963768115942029,
392
+ "grad_norm": 0.9228700399398804,
393
+ "learning_rate": 2.400006940010041e-05,
394
+ "loss": 0.6477,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 1.0144927536231885,
399
+ "grad_norm": 0.9365453720092773,
400
+ "learning_rate": 2.375847297150491e-05,
401
+ "loss": 0.6013,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 1.0326086956521738,
406
+ "grad_norm": 1.1155225038528442,
407
+ "learning_rate": 2.351337863314578e-05,
408
+ "loss": 0.5986,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 1.0507246376811594,
413
+ "grad_norm": 0.9249854683876038,
414
+ "learning_rate": 2.3264884269423855e-05,
415
+ "loss": 0.563,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 1.068840579710145,
420
+ "grad_norm": 1.0821144580841064,
421
+ "learning_rate": 2.301308912262303e-05,
422
+ "loss": 0.5427,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 1.0869565217391304,
427
+ "grad_norm": 0.9385888576507568,
428
+ "learning_rate": 2.27580937532754e-05,
429
+ "loss": 0.5815,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 1.105072463768116,
434
+ "grad_norm": 0.9940763711929321,
435
+ "learning_rate": 2.25e-05,
436
+ "loss": 0.5385,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 1.1231884057971016,
441
+ "grad_norm": 1.0167127847671509,
442
+ "learning_rate": 2.2238910938831012e-05,
443
+ "loss": 0.5201,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 1.141304347826087,
448
+ "grad_norm": 1.006917953491211,
449
+ "learning_rate": 2.197493084205189e-05,
450
+ "loss": 0.5538,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 1.1594202898550725,
455
+ "grad_norm": 1.013184666633606,
456
+ "learning_rate": 2.1708165136551643e-05,
457
+ "loss": 0.5196,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 1.177536231884058,
462
+ "grad_norm": 0.9539540410041809,
463
+ "learning_rate": 2.1438720361720074e-05,
464
+ "loss": 0.5319,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 1.1956521739130435,
469
+ "grad_norm": 1.0721772909164429,
470
+ "learning_rate": 2.1166704126898627e-05,
471
+ "loss": 0.5056,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 1.213768115942029,
476
+ "grad_norm": 1.0080801248550415,
477
+ "learning_rate": 2.089222506840402e-05,
478
+ "loss": 0.4988,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 1.2318840579710144,
483
+ "grad_norm": 1.0586236715316772,
484
+ "learning_rate": 2.0615392806141663e-05,
485
+ "loss": 0.5225,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 1.25,
490
+ "grad_norm": 1.0020700693130493,
491
+ "learning_rate": 2.033631789982626e-05,
492
+ "loss": 0.5245,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.2681159420289856,
497
+ "grad_norm": 0.9718517065048218,
498
+ "learning_rate": 2.005511180482712e-05,
499
+ "loss": 0.5456,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.286231884057971,
504
+ "grad_norm": 1.053589105606079,
505
+ "learning_rate": 1.9771886827655725e-05,
506
+ "loss": 0.546,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.3043478260869565,
511
+ "grad_norm": 1.0060533285140991,
512
+ "learning_rate": 1.9486756081113373e-05,
513
+ "loss": 0.4915,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.322463768115942,
518
+ "grad_norm": 0.9878813028335571,
519
+ "learning_rate": 1.9199833439116844e-05,
520
+ "loss": 0.4985,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.3405797101449275,
525
+ "grad_norm": 1.2007569074630737,
526
+ "learning_rate": 1.8911233491220054e-05,
527
+ "loss": 0.5059,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.358695652173913,
532
+ "grad_norm": 1.0838305950164795,
533
+ "learning_rate": 1.8621071496849948e-05,
534
+ "loss": 0.4775,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.3768115942028984,
539
+ "grad_norm": 1.0870875120162964,
540
+ "learning_rate": 1.8329463339274812e-05,
541
+ "loss": 0.4963,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.394927536231884,
546
+ "grad_norm": 1.0038487911224365,
547
+ "learning_rate": 1.8036525479323464e-05,
548
+ "loss": 0.4824,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.4130434782608696,
553
+ "grad_norm": 1.0514211654663086,
554
+ "learning_rate": 1.7742374908873817e-05,
555
+ "loss": 0.4713,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.431159420289855,
560
+ "grad_norm": 1.166392207145691,
561
+ "learning_rate": 1.744712910412927e-05,
562
+ "loss": 0.4566,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.4492753623188406,
567
+ "grad_norm": 1.1911746263504028,
568
+ "learning_rate": 1.7150905978701765e-05,
569
+ "loss": 0.4708,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.4673913043478262,
574
+ "grad_norm": 1.0741174221038818,
575
+ "learning_rate": 1.6853823836520076e-05,
576
+ "loss": 0.4483,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.4855072463768115,
581
+ "grad_norm": 0.9730079174041748,
582
+ "learning_rate": 1.6556001324582275e-05,
583
+ "loss": 0.4217,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.5036231884057971,
588
+ "grad_norm": 1.1837623119354248,
589
+ "learning_rate": 1.6257557385571147e-05,
590
+ "loss": 0.4718,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.5217391304347827,
595
+ "grad_norm": 0.9853111505508423,
596
+ "learning_rate": 1.595861121035154e-05,
597
+ "loss": 0.4093,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.539855072463768,
602
+ "grad_norm": 1.1605192422866821,
603
+ "learning_rate": 1.565928219036856e-05,
604
+ "loss": 0.4159,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.5579710144927537,
609
+ "grad_norm": 1.1583753824234009,
610
+ "learning_rate": 1.535968986996573e-05,
611
+ "loss": 0.4318,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.5760869565217392,
616
+ "grad_norm": 1.1273375749588013,
617
+ "learning_rate": 1.5059953898641993e-05,
618
+ "loss": 0.4123,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.5942028985507246,
623
+ "grad_norm": 0.9596806168556213,
624
+ "learning_rate": 1.4760193983266813e-05,
625
+ "loss": 0.4395,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.6123188405797102,
630
+ "grad_norm": 1.1581813097000122,
631
+ "learning_rate": 1.4460529840272285e-05,
632
+ "loss": 0.4315,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.6304347826086958,
637
+ "grad_norm": 1.0041747093200684,
638
+ "learning_rate": 1.4161081147841456e-05,
639
+ "loss": 0.4175,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.6485507246376812,
644
+ "grad_norm": 0.9771676063537598,
645
+ "learning_rate": 1.3861967498111952e-05,
646
+ "loss": 0.374,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.6666666666666665,
651
+ "grad_norm": 1.1321799755096436,
652
+ "learning_rate": 1.3563308349413926e-05,
653
+ "loss": 0.4629,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.6847826086956523,
658
+ "grad_norm": 1.18793785572052,
659
+ "learning_rate": 1.3265222978561453e-05,
660
+ "loss": 0.4179,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.7028985507246377,
665
+ "grad_norm": 1.0415338277816772,
666
+ "learning_rate": 1.2967830433216436e-05,
667
+ "loss": 0.4228,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.721014492753623,
672
+ "grad_norm": 1.3442658185958862,
673
+ "learning_rate": 1.2671249484344016e-05,
674
+ "loss": 0.4126,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.7391304347826086,
679
+ "grad_norm": 1.0836507081985474,
680
+ "learning_rate": 1.2375598578778496e-05,
681
+ "loss": 0.403,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.7572463768115942,
686
+ "grad_norm": 1.2494847774505615,
687
+ "learning_rate": 1.2080995791918697e-05,
688
+ "loss": 0.3797,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.7753623188405796,
693
+ "grad_norm": 1.0330952405929565,
694
+ "learning_rate": 1.1787558780571678e-05,
695
+ "loss": 0.3793,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.7934782608695652,
700
+ "grad_norm": 0.9909242987632751,
701
+ "learning_rate": 1.1495404735963622e-05,
702
+ "loss": 0.3692,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.8115942028985508,
707
+ "grad_norm": 1.134205937385559,
708
+ "learning_rate": 1.1204650336936665e-05,
709
+ "loss": 0.3879,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.8297101449275361,
714
+ "grad_norm": 1.3966150283813477,
715
+ "learning_rate": 1.0915411703350326e-05,
716
+ "loss": 0.4046,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.8478260869565217,
721
+ "grad_norm": 1.1596742868423462,
722
+ "learning_rate": 1.0627804349706252e-05,
723
+ "loss": 0.3786,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.8659420289855073,
728
+ "grad_norm": 1.2314115762710571,
729
+ "learning_rate": 1.034194313901466e-05,
730
+ "loss": 0.3797,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.8840579710144927,
735
+ "grad_norm": 1.2033650875091553,
736
+ "learning_rate": 1.0057942236921005e-05,
737
+ "loss": 0.3941,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.9021739130434783,
742
+ "grad_norm": 1.1681276559829712,
743
+ "learning_rate": 9.775915066111116e-06,
744
+ "loss": 0.3961,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.9202898550724639,
749
+ "grad_norm": 1.1927913427352905,
750
+ "learning_rate": 9.495974261013126e-06,
751
+ "loss": 0.3435,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.9384057971014492,
756
+ "grad_norm": 1.2595330476760864,
757
+ "learning_rate": 9.21823162281413e-06,
758
+ "loss": 0.3321,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.9565217391304348,
763
+ "grad_norm": 1.076352596282959,
764
+ "learning_rate": 8.94279807480968e-06,
765
+ "loss": 0.3558,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.9746376811594204,
770
+ "grad_norm": 1.2065880298614502,
771
+ "learning_rate": 8.669783618103834e-06,
772
+ "loss": 0.3454,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.9927536231884058,
777
+ "grad_norm": 1.1726124286651611,
778
+ "learning_rate": 8.39929728767756e-06,
779
+ "loss": 0.3701,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 2.010869565217391,
784
+ "grad_norm": 1.1098450422286987,
785
+ "learning_rate": 8.13144710884294e-06,
786
+ "loss": 0.3205,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 2.028985507246377,
791
+ "grad_norm": 1.2119437456130981,
792
+ "learning_rate": 7.866340054100642e-06,
793
+ "loss": 0.274,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 2.0471014492753623,
798
+ "grad_norm": 0.9838385581970215,
799
+ "learning_rate": 7.604082000417818e-06,
800
+ "loss": 0.2839,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 2.0652173913043477,
805
+ "grad_norm": 1.1750751733779907,
806
+ "learning_rate": 7.344777686943588e-06,
807
+ "loss": 0.2846,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 2.0833333333333335,
812
+ "grad_norm": 1.1088839769363403,
813
+ "learning_rate": 7.088530673178884e-06,
814
+ "loss": 0.2909,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 2.101449275362319,
819
+ "grad_norm": 1.2768173217773438,
820
+ "learning_rate": 6.835443297617446e-06,
821
+ "loss": 0.2733,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 2.119565217391304,
826
+ "grad_norm": 1.0808906555175781,
827
+ "learning_rate": 6.585616636874438e-06,
828
+ "loss": 0.3018,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 2.13768115942029,
833
+ "grad_norm": 1.2789727449417114,
834
+ "learning_rate": 6.339150465319057e-06,
835
+ "loss": 0.2597,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 2.1557971014492754,
840
+ "grad_norm": 1.0952117443084717,
841
+ "learning_rate": 6.096143215227199e-06,
842
+ "loss": 0.2933,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 2.1739130434782608,
847
+ "grad_norm": 1.1481599807739258,
848
+ "learning_rate": 5.856691937470104e-06,
849
+ "loss": 0.2835,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 2.1920289855072466,
854
+ "grad_norm": 1.0424528121948242,
855
+ "learning_rate": 5.620892262754764e-06,
856
+ "loss": 0.2735,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 2.210144927536232,
861
+ "grad_norm": 1.0625262260437012,
862
+ "learning_rate": 5.388838363431443e-06,
863
+ "loss": 0.2642,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 2.2282608695652173,
868
+ "grad_norm": 1.1052013635635376,
869
+ "learning_rate": 5.1606229158836625e-06,
870
+ "loss": 0.2714,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 2.246376811594203,
875
+ "grad_norm": 1.2426427602767944,
876
+ "learning_rate": 4.936337063515611e-06,
877
+ "loss": 0.2845,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 2.2644927536231885,
882
+ "grad_norm": 0.9883778095245361,
883
+ "learning_rate": 4.7160703803518306e-06,
884
+ "loss": 0.2679,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 2.282608695652174,
889
+ "grad_norm": 1.2373675107955933,
890
+ "learning_rate": 4.499910835263625e-06,
891
+ "loss": 0.3157,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 2.300724637681159,
896
+ "grad_norm": 1.1451621055603027,
897
+ "learning_rate": 4.2879447568365435e-06,
898
+ "loss": 0.2677,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 2.318840579710145,
903
+ "grad_norm": 1.0993037223815918,
904
+ "learning_rate": 4.080256798892981e-06,
905
+ "loss": 0.2707,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 2.3369565217391304,
910
+ "grad_norm": 1.3176124095916748,
911
+ "learning_rate": 3.87692990668357e-06,
912
+ "loss": 0.2927,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 2.355072463768116,
917
+ "grad_norm": 0.9844982028007507,
918
+ "learning_rate": 3.6780452837610123e-06,
919
+ "loss": 0.2426,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 2.3731884057971016,
924
+ "grad_norm": 1.1397931575775146,
925
+ "learning_rate": 3.4836823595494388e-06,
926
+ "loss": 0.2993,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 2.391304347826087,
931
+ "grad_norm": 1.0888879299163818,
932
+ "learning_rate": 3.2939187576223232e-06,
933
+ "loss": 0.2518,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 2.4094202898550723,
938
+ "grad_norm": 1.2873591184616089,
939
+ "learning_rate": 3.108830264701636e-06,
940
+ "loss": 0.2756,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 2.427536231884058,
945
+ "grad_norm": 0.9957096576690674,
946
+ "learning_rate": 2.9284908003905615e-06,
947
+ "loss": 0.2846,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 2.4456521739130435,
952
+ "grad_norm": 1.0697777271270752,
953
+ "learning_rate": 2.752972387651897e-06,
954
+ "loss": 0.253,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 2.463768115942029,
959
+ "grad_norm": 1.1475001573562622,
960
+ "learning_rate": 2.5823451240439238e-06,
961
+ "loss": 0.2309,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 2.4818840579710146,
966
+ "grad_norm": 1.146727204322815,
967
+ "learning_rate": 2.4166771537252496e-06,
968
+ "loss": 0.2892,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 2.5,
973
+ "grad_norm": 1.1267262697219849,
974
+ "learning_rate": 2.2560346402397747e-06,
975
+ "loss": 0.2871,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.5181159420289854,
980
+ "grad_norm": 1.2654765844345093,
981
+ "learning_rate": 2.1004817400926475e-06,
982
+ "loss": 0.259,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.536231884057971,
987
+ "grad_norm": 1.1569652557373047,
988
+ "learning_rate": 1.950080577127832e-06,
989
+ "loss": 0.2675,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.5543478260869565,
994
+ "grad_norm": 1.1681987047195435,
995
+ "learning_rate": 1.8048912177174093e-06,
996
+ "loss": 0.2551,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.572463768115942,
1001
+ "grad_norm": 1.1985141038894653,
1002
+ "learning_rate": 1.6649716467726272e-06,
1003
+ "loss": 0.2675,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.5905797101449277,
1008
+ "grad_norm": 1.1720751523971558,
1009
+ "learning_rate": 1.5303777445861855e-06,
1010
+ "loss": 0.2639,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.608695652173913,
1015
+ "grad_norm": 1.1878292560577393,
1016
+ "learning_rate": 1.4011632645151078e-06,
1017
+ "loss": 0.2883,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.6268115942028984,
1022
+ "grad_norm": 1.1438288688659668,
1023
+ "learning_rate": 1.2773798115130114e-06,
1024
+ "loss": 0.2542,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.644927536231884,
1029
+ "grad_norm": 1.1158024072647095,
1030
+ "learning_rate": 1.159076821520414e-06,
1031
+ "loss": 0.26,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.6630434782608696,
1036
+ "grad_norm": 1.1707649230957031,
1037
+ "learning_rate": 1.046301541721279e-06,
1038
+ "loss": 0.2599,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.681159420289855,
1043
+ "grad_norm": 1.2275639772415161,
1044
+ "learning_rate": 9.39099011673713e-07,
1045
+ "loss": 0.2648,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.699275362318841,
1050
+ "grad_norm": 1.1057640314102173,
1051
+ "learning_rate": 8.375120453223123e-07,
1052
+ "loss": 0.2512,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.717391304347826,
1057
+ "grad_norm": 1.067372441291809,
1058
+ "learning_rate": 7.415812138993688e-07,
1059
+ "loss": 0.2544,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.7355072463768115,
1064
+ "grad_norm": 1.063515067100525,
1065
+ "learning_rate": 6.513448297217616e-07,
1066
+ "loss": 0.2336,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.753623188405797,
1071
+ "grad_norm": 1.2793192863464355,
1072
+ "learning_rate": 5.668389308900012e-07,
1073
+ "loss": 0.2573,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.7717391304347827,
1078
+ "grad_norm": 1.0330173969268799,
1079
+ "learning_rate": 4.880972668955291e-07,
1080
+ "loss": 0.264,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.789855072463768,
1085
+ "grad_norm": 1.1933742761611938,
1086
+ "learning_rate": 4.151512851420447e-07,
1087
+ "loss": 0.2834,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.807971014492754,
1092
+ "grad_norm": 1.201213002204895,
1093
+ "learning_rate": 3.480301183862017e-07,
1094
+ "loss": 0.2308,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.8260869565217392,
1099
+ "grad_norm": 1.0752284526824951,
1100
+ "learning_rate": 2.867605731027534e-07,
1101
+ "loss": 0.2682,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.8442028985507246,
1106
+ "grad_norm": 1.1263558864593506,
1107
+ "learning_rate": 2.3136711877871308e-07,
1108
+ "loss": 0.2424,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.86231884057971,
1113
+ "grad_norm": 0.9950832724571228,
1114
+ "learning_rate": 1.8187187814088456e-07,
1115
+ "loss": 0.2331,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.880434782608696,
1120
+ "grad_norm": 1.148727297782898,
1121
+ "learning_rate": 1.382946183205913e-07,
1122
+ "loss": 0.2578,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.898550724637681,
1127
+ "grad_norm": 1.1592689752578735,
1128
+ "learning_rate": 1.0065274295921301e-07,
1129
+ "loss": 0.2534,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.9166666666666665,
1134
+ "grad_norm": 1.1900664567947388,
1135
+ "learning_rate": 6.896128525760381e-08,
1136
+ "loss": 0.2771,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.9347826086956523,
1141
+ "grad_norm": 1.0583255290985107,
1142
+ "learning_rate": 4.3232901972216634e-08,
1143
+ "loss": 0.2651,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.9528985507246377,
1148
+ "grad_norm": 1.090453028678894,
1149
+ "learning_rate": 2.347786836032484e-08,
1150
+ "loss": 0.2416,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.971014492753623,
1155
+ "grad_norm": 1.0817853212356567,
1156
+ "learning_rate": 9.704074076344882e-09,
1157
+ "loss": 0.2415,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.9891304347826084,
1162
+ "grad_norm": 1.076716423034668,
1163
+ "learning_rate": 1.917020020906768e-09,
1164
+ "loss": 0.2446,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 3.0,
1169
+ "step": 828,
1170
+ "total_flos": 1.0852008719076557e+18,
1171
+ "train_loss": 0.5684480382048566,
1172
+ "train_runtime": 514.9885,
1173
+ "train_samples_per_second": 51.415,
1174
+ "train_steps_per_second": 1.608
1175
+ }
1176
+ ],
1177
+ "logging_steps": 5,
1178
+ "max_steps": 828,
1179
+ "num_input_tokens_seen": 0,
1180
+ "num_train_epochs": 3,
1181
+ "save_steps": 20000,
1182
+ "stateful_callbacks": {
1183
+ "TrainerControl": {
1184
+ "args": {
1185
+ "should_epoch_stop": false,
1186
+ "should_evaluate": false,
1187
+ "should_log": false,
1188
+ "should_save": false,
1189
+ "should_training_stop": false
1190
+ },
1191
+ "attributes": {}
1192
+ }
1193
+ },
1194
+ "total_flos": 1.0852008719076557e+18,
1195
+ "train_batch_size": 2,
1196
+ "trial_name": null,
1197
+ "trial_params": null
1198
+ }
128_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:106b7090aee4053c335b600efb9d23a6c9b934073087d89974f067e8dca5d23b
3
+ size 8273
128_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff