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

Upload folder using huggingface_hub

Browse files
127_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
+ "up_proj",
28
+ "down_proj",
29
+ "v_proj",
30
+ "gate_proj",
31
+ "q_proj",
32
+ "o_proj",
33
+ "k_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
127_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3da021621c1521e4314b928fd3d52488adfb1b94118d6fad1634b98fcd28c1c2
3
+ size 791751704
127_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
+ }
127_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.1897279902803558e+18,
4
+ "train_loss": 0.5869470324432641,
5
+ "train_runtime": 552.4582,
6
+ "train_samples": 9114,
7
+ "train_samples_per_second": 49.492,
8
+ "train_steps_per_second": 1.548
9
+ }
127_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 %}
127_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
+ }
127_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
127_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
+ }
127_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
127_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
+ }
127_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.1897279902803558e+18,
4
+ "train_loss": 0.5869470324432641,
5
+ "train_runtime": 552.4582,
6
+ "train_samples": 9114,
7
+ "train_samples_per_second": 49.492,
8
+ "train_steps_per_second": 1.548
9
+ }
127_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 855,
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.017543859649122806,
14
+ "grad_norm": 3.365447998046875,
15
+ "learning_rate": 2.7906976744186046e-06,
16
+ "loss": 1.6129,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.03508771929824561,
21
+ "grad_norm": 1.868890404701233,
22
+ "learning_rate": 6.279069767441861e-06,
23
+ "loss": 1.5087,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.05263157894736842,
28
+ "grad_norm": 0.6818334460258484,
29
+ "learning_rate": 9.767441860465117e-06,
30
+ "loss": 1.442,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.07017543859649122,
35
+ "grad_norm": 0.43484628200531006,
36
+ "learning_rate": 1.3255813953488373e-05,
37
+ "loss": 1.3637,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.08771929824561403,
42
+ "grad_norm": 0.4852694869041443,
43
+ "learning_rate": 1.674418604651163e-05,
44
+ "loss": 1.3151,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.10526315789473684,
49
+ "grad_norm": 0.4677450656890869,
50
+ "learning_rate": 2.0232558139534883e-05,
51
+ "loss": 1.3606,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.12280701754385964,
56
+ "grad_norm": 0.460638165473938,
57
+ "learning_rate": 2.3720930232558138e-05,
58
+ "loss": 1.3032,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.14035087719298245,
63
+ "grad_norm": 0.42829564213752747,
64
+ "learning_rate": 2.7209302325581395e-05,
65
+ "loss": 1.285,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.15789473684210525,
70
+ "grad_norm": 0.35748788714408875,
71
+ "learning_rate": 2.9999887733958794e-05,
72
+ "loss": 1.2234,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.17543859649122806,
77
+ "grad_norm": 0.39029461145401,
78
+ "learning_rate": 2.999595859896506e-05,
79
+ "loss": 1.2758,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.19298245614035087,
84
+ "grad_norm": 0.4223393201828003,
85
+ "learning_rate": 2.9986417842286488e-05,
86
+ "loss": 1.2534,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.21052631578947367,
91
+ "grad_norm": 0.44884243607521057,
92
+ "learning_rate": 2.9971269034159467e-05,
93
+ "loss": 1.1759,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.22807017543859648,
98
+ "grad_norm": 0.4099855422973633,
99
+ "learning_rate": 2.9950517843403344e-05,
100
+ "loss": 1.2252,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.24561403508771928,
105
+ "grad_norm": 0.3838435709476471,
106
+ "learning_rate": 2.992417203529909e-05,
107
+ "loss": 1.1695,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.2631578947368421,
112
+ "grad_norm": 0.44891804456710815,
113
+ "learning_rate": 2.9892241468683476e-05,
114
+ "loss": 1.1421,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.2807017543859649,
119
+ "grad_norm": 0.422260046005249,
120
+ "learning_rate": 2.985473809225981e-05,
121
+ "loss": 1.1301,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.2982456140350877,
126
+ "grad_norm": 0.41603121161460876,
127
+ "learning_rate": 2.9811675940126604e-05,
128
+ "loss": 1.1572,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.3157894736842105,
133
+ "grad_norm": 0.4591178596019745,
134
+ "learning_rate": 2.9763071126525923e-05,
135
+ "loss": 1.125,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.3333333333333333,
140
+ "grad_norm": 0.4639914631843567,
141
+ "learning_rate": 2.970894183981326e-05,
142
+ "loss": 1.1515,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.3508771929824561,
147
+ "grad_norm": 0.4674972593784332,
148
+ "learning_rate": 2.96493083356513e-05,
149
+ "loss": 1.0519,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.3684210526315789,
154
+ "grad_norm": 0.5197584629058838,
155
+ "learning_rate": 2.9584192929430085e-05,
156
+ "loss": 1.0952,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.38596491228070173,
161
+ "grad_norm": 0.5098059773445129,
162
+ "learning_rate": 2.9513619987916373e-05,
163
+ "loss": 1.0325,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.40350877192982454,
168
+ "grad_norm": 0.4859628677368164,
169
+ "learning_rate": 2.9437615920135396e-05,
170
+ "loss": 1.0331,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.42105263157894735,
175
+ "grad_norm": 0.5587638020515442,
176
+ "learning_rate": 2.9356209167488348e-05,
177
+ "loss": 1.0318,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.43859649122807015,
182
+ "grad_norm": 0.5366851091384888,
183
+ "learning_rate": 2.9269430193109384e-05,
184
+ "loss": 1.0039,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.45614035087719296,
189
+ "grad_norm": 0.5800937414169312,
190
+ "learning_rate": 2.9177311470466015e-05,
191
+ "loss": 0.9605,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.47368421052631576,
196
+ "grad_norm": 0.6031177043914795,
197
+ "learning_rate": 2.9079887471207258e-05,
198
+ "loss": 0.964,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.49122807017543857,
203
+ "grad_norm": 0.6035255789756775,
204
+ "learning_rate": 2.8977194652264048e-05,
205
+ "loss": 0.9871,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.5087719298245614,
210
+ "grad_norm": 0.590595006942749,
211
+ "learning_rate": 2.8869271442206712e-05,
212
+ "loss": 0.9933,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.5263157894736842,
217
+ "grad_norm": 0.9582504034042358,
218
+ "learning_rate": 2.875615822686466e-05,
219
+ "loss": 0.9429,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.543859649122807,
224
+ "grad_norm": 0.6506302356719971,
225
+ "learning_rate": 2.8637897334213652e-05,
226
+ "loss": 0.9168,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.5614035087719298,
231
+ "grad_norm": 0.6173605918884277,
232
+ "learning_rate": 2.8514533018536286e-05,
233
+ "loss": 0.9048,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.5789473684210527,
238
+ "grad_norm": 0.6918940544128418,
239
+ "learning_rate": 2.838611144386166e-05,
240
+ "loss": 0.9018,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.5964912280701754,
245
+ "grad_norm": 0.667086660861969,
246
+ "learning_rate": 2.8252680666690346e-05,
247
+ "loss": 0.8708,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.6140350877192983,
252
+ "grad_norm": 0.6990797519683838,
253
+ "learning_rate": 2.811429061801127e-05,
254
+ "loss": 0.8741,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.631578947368421,
259
+ "grad_norm": 0.7447320818901062,
260
+ "learning_rate": 2.7970993084617058e-05,
261
+ "loss": 0.9044,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.6491228070175439,
266
+ "grad_norm": 0.7422279715538025,
267
+ "learning_rate": 2.7822841689724952e-05,
268
+ "loss": 0.8511,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.6666666666666666,
273
+ "grad_norm": 0.6780945062637329,
274
+ "learning_rate": 2.766989187291054e-05,
275
+ "loss": 0.8392,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.6842105263157895,
280
+ "grad_norm": 0.6948316097259521,
281
+ "learning_rate": 2.7512200869361756e-05,
282
+ "loss": 0.8755,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.7017543859649122,
287
+ "grad_norm": 0.7149096727371216,
288
+ "learning_rate": 2.7349827688460974e-05,
289
+ "loss": 0.7988,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.7192982456140351,
294
+ "grad_norm": 0.7090550065040588,
295
+ "learning_rate": 2.718283309170317e-05,
296
+ "loss": 0.8832,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.7368421052631579,
301
+ "grad_norm": 0.7440242171287537,
302
+ "learning_rate": 2.7011279569958407e-05,
303
+ "loss": 0.8399,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.7543859649122807,
308
+ "grad_norm": 0.8195023536682129,
309
+ "learning_rate": 2.683523132008722e-05,
310
+ "loss": 0.8471,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.7719298245614035,
315
+ "grad_norm": 0.8671055436134338,
316
+ "learning_rate": 2.665475422091757e-05,
317
+ "loss": 0.8108,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.7894736842105263,
322
+ "grad_norm": 0.836410403251648,
323
+ "learning_rate": 2.6469915808592383e-05,
324
+ "loss": 0.7772,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.8070175438596491,
329
+ "grad_norm": 0.8316211700439453,
330
+ "learning_rate": 2.628078525129694e-05,
331
+ "loss": 0.7606,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.8245614035087719,
336
+ "grad_norm": 0.8611682057380676,
337
+ "learning_rate": 2.6087433323375506e-05,
338
+ "loss": 0.743,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.8421052631578947,
343
+ "grad_norm": 0.8950226902961731,
344
+ "learning_rate": 2.5889932378846963e-05,
345
+ "loss": 0.7825,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.8596491228070176,
350
+ "grad_norm": 0.8796069025993347,
351
+ "learning_rate": 2.568835632432927e-05,
352
+ "loss": 0.7216,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.8771929824561403,
357
+ "grad_norm": 0.8016330003738403,
358
+ "learning_rate": 2.548278059138295e-05,
359
+ "loss": 0.7322,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.8947368421052632,
364
+ "grad_norm": 0.8585559725761414,
365
+ "learning_rate": 2.527328210828392e-05,
366
+ "loss": 0.742,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.9122807017543859,
371
+ "grad_norm": 0.8872100710868835,
372
+ "learning_rate": 2.5059939271236278e-05,
373
+ "loss": 0.7192,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.9298245614035088,
378
+ "grad_norm": 0.8344059586524963,
379
+ "learning_rate": 2.4842831915035687e-05,
380
+ "loss": 0.747,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.9473684210526315,
385
+ "grad_norm": 0.9721794724464417,
386
+ "learning_rate": 2.4622041283194517e-05,
387
+ "loss": 0.6886,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.9649122807017544,
392
+ "grad_norm": 0.8954874277114868,
393
+ "learning_rate": 2.43976499975398e-05,
394
+ "loss": 0.6654,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.9824561403508771,
399
+ "grad_norm": 1.0185184478759766,
400
+ "learning_rate": 2.4169742027295388e-05,
401
+ "loss": 0.7066,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 1.0,
406
+ "grad_norm": 0.9839498996734619,
407
+ "learning_rate": 2.3938402657659924e-05,
408
+ "loss": 0.741,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 1.0175438596491229,
413
+ "grad_norm": 0.88508540391922,
414
+ "learning_rate": 2.370371845789236e-05,
415
+ "loss": 0.6332,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 1.0350877192982457,
420
+ "grad_norm": 0.9362666606903076,
421
+ "learning_rate": 2.3465777248916968e-05,
422
+ "loss": 0.5887,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 1.0526315789473684,
427
+ "grad_norm": 0.9209312796592712,
428
+ "learning_rate": 2.3224668070459962e-05,
429
+ "loss": 0.5653,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 1.0701754385964912,
434
+ "grad_norm": 1.0955981016159058,
435
+ "learning_rate": 2.298048114773005e-05,
436
+ "loss": 0.5753,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 1.087719298245614,
441
+ "grad_norm": 1.1079777479171753,
442
+ "learning_rate": 2.2733307857655327e-05,
443
+ "loss": 0.5182,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 1.1052631578947367,
448
+ "grad_norm": 1.0295618772506714,
449
+ "learning_rate": 2.248324069468924e-05,
450
+ "loss": 0.5894,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 1.1228070175438596,
455
+ "grad_norm": 1.3059191703796387,
456
+ "learning_rate": 2.223037323619833e-05,
457
+ "loss": 0.5553,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 1.1403508771929824,
462
+ "grad_norm": 1.0479726791381836,
463
+ "learning_rate": 2.1974800107444732e-05,
464
+ "loss": 0.5567,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 1.1578947368421053,
469
+ "grad_norm": 1.2339802980422974,
470
+ "learning_rate": 2.1716616946176567e-05,
471
+ "loss": 0.555,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 1.1754385964912282,
476
+ "grad_norm": 1.0587470531463623,
477
+ "learning_rate": 2.145592036683945e-05,
478
+ "loss": 0.5761,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 1.1929824561403508,
483
+ "grad_norm": 1.0006828308105469,
484
+ "learning_rate": 2.119280792442249e-05,
485
+ "loss": 0.6025,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 1.2105263157894737,
490
+ "grad_norm": 1.086309552192688,
491
+ "learning_rate": 2.0927378077952332e-05,
492
+ "loss": 0.5174,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.2280701754385965,
497
+ "grad_norm": 1.0446141958236694,
498
+ "learning_rate": 2.0659730153648944e-05,
499
+ "loss": 0.5403,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.2456140350877192,
504
+ "grad_norm": 1.0424203872680664,
505
+ "learning_rate": 2.0389964307756822e-05,
506
+ "loss": 0.5241,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.263157894736842,
511
+ "grad_norm": 1.0257900953292847,
512
+ "learning_rate": 2.0118181489065634e-05,
513
+ "loss": 0.5101,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.280701754385965,
518
+ "grad_norm": 1.0167241096496582,
519
+ "learning_rate": 1.9844483401134322e-05,
520
+ "loss": 0.4906,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.2982456140350878,
525
+ "grad_norm": 1.0771173238754272,
526
+ "learning_rate": 1.956897246423264e-05,
527
+ "loss": 0.481,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.3157894736842106,
532
+ "grad_norm": 1.1480051279067993,
533
+ "learning_rate": 1.9291751777014676e-05,
534
+ "loss": 0.5018,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.3333333333333333,
539
+ "grad_norm": 1.043609619140625,
540
+ "learning_rate": 1.9012925077938318e-05,
541
+ "loss": 0.5258,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.3508771929824561,
546
+ "grad_norm": 1.0634889602661133,
547
+ "learning_rate": 1.8732596706445458e-05,
548
+ "loss": 0.5249,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.368421052631579,
553
+ "grad_norm": 1.1021512746810913,
554
+ "learning_rate": 1.8450871563917237e-05,
555
+ "loss": 0.5076,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.3859649122807016,
560
+ "grad_norm": 1.0524097681045532,
561
+ "learning_rate": 1.8167855074418966e-05,
562
+ "loss": 0.4968,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.4035087719298245,
567
+ "grad_norm": 1.0436317920684814,
568
+ "learning_rate": 1.7883653145249553e-05,
569
+ "loss": 0.4831,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.4210526315789473,
574
+ "grad_norm": 1.0748012065887451,
575
+ "learning_rate": 1.7598372127310022e-05,
576
+ "loss": 0.4788,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.4385964912280702,
581
+ "grad_norm": 1.1476844549179077,
582
+ "learning_rate": 1.7312118775306027e-05,
583
+ "loss": 0.4494,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.456140350877193,
588
+ "grad_norm": 1.047548532485962,
589
+ "learning_rate": 1.702500020779935e-05,
590
+ "loss": 0.4483,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.4736842105263157,
595
+ "grad_norm": 1.1079176664352417,
596
+ "learning_rate": 1.6737123867123135e-05,
597
+ "loss": 0.4799,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.4912280701754386,
602
+ "grad_norm": 1.2839916944503784,
603
+ "learning_rate": 1.6448597479176004e-05,
604
+ "loss": 0.472,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.5087719298245614,
609
+ "grad_norm": 1.0889285802841187,
610
+ "learning_rate": 1.6159529013110084e-05,
611
+ "loss": 0.525,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.526315789473684,
616
+ "grad_norm": 1.0689163208007812,
617
+ "learning_rate": 1.5870026640927978e-05,
618
+ "loss": 0.4272,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.543859649122807,
623
+ "grad_norm": 1.0665310621261597,
624
+ "learning_rate": 1.5580198697003834e-05,
625
+ "loss": 0.4488,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.5614035087719298,
630
+ "grad_norm": 1.101494550704956,
631
+ "learning_rate": 1.529015363754365e-05,
632
+ "loss": 0.4777,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.5789473684210527,
637
+ "grad_norm": 1.2285206317901611,
638
+ "learning_rate": 1.5e-05,
639
+ "loss": 0.4466,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.5964912280701755,
644
+ "grad_norm": 1.1330711841583252,
645
+ "learning_rate": 1.4709846362456356e-05,
646
+ "loss": 0.4161,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.6140350877192984,
651
+ "grad_norm": 1.1162335872650146,
652
+ "learning_rate": 1.4419801302996167e-05,
653
+ "loss": 0.4321,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.631578947368421,
658
+ "grad_norm": 1.1052846908569336,
659
+ "learning_rate": 1.412997335907203e-05,
660
+ "loss": 0.4674,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.6491228070175439,
665
+ "grad_norm": 1.093386173248291,
666
+ "learning_rate": 1.384047098688992e-05,
667
+ "loss": 0.4096,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.6666666666666665,
672
+ "grad_norm": 1.0575740337371826,
673
+ "learning_rate": 1.3551402520824e-05,
674
+ "loss": 0.4591,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.6842105263157894,
679
+ "grad_norm": 1.2008405923843384,
680
+ "learning_rate": 1.3262876132876868e-05,
681
+ "loss": 0.3886,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.7017543859649122,
686
+ "grad_norm": 1.197770118713379,
687
+ "learning_rate": 1.2974999792200648e-05,
688
+ "loss": 0.3813,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.719298245614035,
693
+ "grad_norm": 2.6354033946990967,
694
+ "learning_rate": 1.2687881224693972e-05,
695
+ "loss": 0.4672,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.736842105263158,
700
+ "grad_norm": 1.1755203008651733,
701
+ "learning_rate": 1.2401627872689987e-05,
702
+ "loss": 0.4331,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.7543859649122808,
707
+ "grad_norm": 1.0608446598052979,
708
+ "learning_rate": 1.2116346854750448e-05,
709
+ "loss": 0.4433,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.7719298245614035,
714
+ "grad_norm": 1.005544662475586,
715
+ "learning_rate": 1.1832144925581037e-05,
716
+ "loss": 0.4058,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.7894736842105263,
721
+ "grad_norm": 1.2564553022384644,
722
+ "learning_rate": 1.1549128436082767e-05,
723
+ "loss": 0.4023,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.807017543859649,
728
+ "grad_norm": 1.0956538915634155,
729
+ "learning_rate": 1.1267403293554541e-05,
730
+ "loss": 0.4192,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.8245614035087718,
735
+ "grad_norm": 1.1021091938018799,
736
+ "learning_rate": 1.098707492206169e-05,
737
+ "loss": 0.4213,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.8421052631578947,
742
+ "grad_norm": 1.2100882530212402,
743
+ "learning_rate": 1.0708248222985333e-05,
744
+ "loss": 0.4296,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.8596491228070176,
749
+ "grad_norm": 1.0904150009155273,
750
+ "learning_rate": 1.0431027535767361e-05,
751
+ "loss": 0.4068,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.8771929824561404,
756
+ "grad_norm": 1.0855680704116821,
757
+ "learning_rate": 1.0155516598865684e-05,
758
+ "loss": 0.4025,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.8947368421052633,
763
+ "grad_norm": 1.1881295442581177,
764
+ "learning_rate": 9.881818510934363e-06,
765
+ "loss": 0.3646,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.912280701754386,
770
+ "grad_norm": 1.1947931051254272,
771
+ "learning_rate": 9.610035692243182e-06,
772
+ "loss": 0.4222,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.9298245614035088,
777
+ "grad_norm": 1.1359723806381226,
778
+ "learning_rate": 9.34026984635106e-06,
779
+ "loss": 0.393,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.9473684210526314,
784
+ "grad_norm": 1.0944252014160156,
785
+ "learning_rate": 9.072621922047672e-06,
786
+ "loss": 0.3829,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.9649122807017543,
791
+ "grad_norm": 1.1211400032043457,
792
+ "learning_rate": 8.807192075577517e-06,
793
+ "loss": 0.4394,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.9824561403508771,
798
+ "grad_norm": 1.1907384395599365,
799
+ "learning_rate": 8.544079633160553e-06,
800
+ "loss": 0.4222,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 2.0,
805
+ "grad_norm": 1.2017731666564941,
806
+ "learning_rate": 8.283383053823432e-06,
807
+ "loss": 0.3786,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 2.017543859649123,
812
+ "grad_norm": 1.0769821405410767,
813
+ "learning_rate": 8.025199892555272e-06,
814
+ "loss": 0.3052,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 2.0350877192982457,
819
+ "grad_norm": 1.1510818004608154,
820
+ "learning_rate": 7.769626763801676e-06,
821
+ "loss": 0.2684,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 2.0526315789473686,
826
+ "grad_norm": 1.3417595624923706,
827
+ "learning_rate": 7.51675930531076e-06,
828
+ "loss": 0.2912,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 2.0701754385964914,
833
+ "grad_norm": 1.183869481086731,
834
+ "learning_rate": 7.266692142344673e-06,
835
+ "loss": 0.2946,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 2.087719298245614,
840
+ "grad_norm": 1.1304445266723633,
841
+ "learning_rate": 7.019518852269953e-06,
842
+ "loss": 0.3293,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 2.1052631578947367,
847
+ "grad_norm": 1.090720534324646,
848
+ "learning_rate": 6.7753319295400354e-06,
849
+ "loss": 0.3152,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 2.1228070175438596,
854
+ "grad_norm": 1.1204766035079956,
855
+ "learning_rate": 6.534222751083036e-06,
856
+ "loss": 0.3356,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 2.1403508771929824,
861
+ "grad_norm": 1.0715309381484985,
862
+ "learning_rate": 6.296281542107647e-06,
863
+ "loss": 0.3108,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 2.1578947368421053,
868
+ "grad_norm": 1.095884919166565,
869
+ "learning_rate": 6.061597342340079e-06,
870
+ "loss": 0.3075,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 2.175438596491228,
875
+ "grad_norm": 1.1767293214797974,
876
+ "learning_rate": 5.830257972704612e-06,
877
+ "loss": 0.2848,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 2.192982456140351,
882
+ "grad_norm": 1.4315632581710815,
883
+ "learning_rate": 5.602350002460202e-06,
884
+ "loss": 0.3052,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 2.2105263157894735,
889
+ "grad_norm": 1.145760178565979,
890
+ "learning_rate": 5.377958716805489e-06,
891
+ "loss": 0.3101,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 2.2280701754385963,
896
+ "grad_norm": 1.362125277519226,
897
+ "learning_rate": 5.157168084964318e-06,
898
+ "loss": 0.3097,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 2.245614035087719,
903
+ "grad_norm": 1.160271406173706,
904
+ "learning_rate": 4.940060728763723e-06,
905
+ "loss": 0.2957,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 2.263157894736842,
910
+ "grad_norm": 1.0470812320709229,
911
+ "learning_rate": 4.726717891716079e-06,
912
+ "loss": 0.3133,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 2.280701754385965,
917
+ "grad_norm": 1.1131538152694702,
918
+ "learning_rate": 4.517219408617054e-06,
919
+ "loss": 0.2811,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 2.2982456140350878,
924
+ "grad_norm": 1.1050890684127808,
925
+ "learning_rate": 4.311643675670729e-06,
926
+ "loss": 0.2626,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 2.3157894736842106,
931
+ "grad_norm": 1.1520367860794067,
932
+ "learning_rate": 4.110067621153041e-06,
933
+ "loss": 0.2475,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 2.3333333333333335,
938
+ "grad_norm": 1.3137457370758057,
939
+ "learning_rate": 3.912566676624497e-06,
940
+ "loss": 0.2862,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 2.3508771929824563,
945
+ "grad_norm": 1.2810534238815308,
946
+ "learning_rate": 3.719214748703062e-06,
947
+ "loss": 0.279,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 2.3684210526315788,
952
+ "grad_norm": 1.1183151006698608,
953
+ "learning_rate": 3.5300841914076183e-06,
954
+ "loss": 0.2606,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 2.3859649122807016,
959
+ "grad_norm": 1.3264744281768799,
960
+ "learning_rate": 3.3452457790824293e-06,
961
+ "loss": 0.3098,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 2.4035087719298245,
966
+ "grad_norm": 1.2024227380752563,
967
+ "learning_rate": 3.1647686799127794e-06,
968
+ "loss": 0.2862,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 2.4210526315789473,
973
+ "grad_norm": 1.097076416015625,
974
+ "learning_rate": 2.9887204300415953e-06,
975
+ "loss": 0.2632,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.43859649122807,
980
+ "grad_norm": 1.1867847442626953,
981
+ "learning_rate": 2.8171669082968348e-06,
982
+ "loss": 0.3025,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.456140350877193,
987
+ "grad_norm": 1.0100340843200684,
988
+ "learning_rate": 2.650172311539027e-06,
989
+ "loss": 0.2776,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.473684210526316,
994
+ "grad_norm": 1.1126737594604492,
995
+ "learning_rate": 2.4877991306382437e-06,
996
+ "loss": 0.2951,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.4912280701754383,
1001
+ "grad_norm": 1.19154953956604,
1002
+ "learning_rate": 2.330108127089462e-06,
1003
+ "loss": 0.2873,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.5087719298245617,
1008
+ "grad_norm": 1.2137471437454224,
1009
+ "learning_rate": 2.177158310275051e-06,
1010
+ "loss": 0.2647,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.526315789473684,
1015
+ "grad_norm": 1.1337919235229492,
1016
+ "learning_rate": 2.0290069153829425e-06,
1017
+ "loss": 0.3076,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.543859649122807,
1022
+ "grad_norm": 1.1480627059936523,
1023
+ "learning_rate": 1.885709381988731e-06,
1024
+ "loss": 0.2799,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.56140350877193,
1029
+ "grad_norm": 1.0965641736984253,
1030
+ "learning_rate": 1.7473193333096576e-06,
1031
+ "loss": 0.2592,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.5789473684210527,
1036
+ "grad_norm": 1.1765202283859253,
1037
+ "learning_rate": 1.613888556138345e-06,
1038
+ "loss": 0.3001,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.5964912280701755,
1043
+ "grad_norm": 1.1111934185028076,
1044
+ "learning_rate": 1.4854669814637145e-06,
1045
+ "loss": 0.2968,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.6140350877192984,
1050
+ "grad_norm": 1.2152196168899536,
1051
+ "learning_rate": 1.3621026657863505e-06,
1052
+ "loss": 0.2699,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.6315789473684212,
1057
+ "grad_norm": 1.1141629219055176,
1058
+ "learning_rate": 1.2438417731353424e-06,
1059
+ "loss": 0.2952,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.6491228070175437,
1064
+ "grad_norm": 1.0660029649734497,
1065
+ "learning_rate": 1.1307285577932902e-06,
1066
+ "loss": 0.2997,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.6666666666666665,
1071
+ "grad_norm": 1.285502314567566,
1072
+ "learning_rate": 1.0228053477359533e-06,
1073
+ "loss": 0.2998,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.6842105263157894,
1078
+ "grad_norm": 1.203273057937622,
1079
+ "learning_rate": 9.201125287927426e-07,
1080
+ "loss": 0.2519,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.7017543859649122,
1085
+ "grad_norm": 1.213044285774231,
1086
+ "learning_rate": 8.22688529533987e-07,
1087
+ "loss": 0.2992,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.719298245614035,
1092
+ "grad_norm": 1.0845396518707275,
1093
+ "learning_rate": 7.305698068906159e-07,
1094
+ "loss": 0.3085,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.736842105263158,
1099
+ "grad_norm": 1.106785774230957,
1100
+ "learning_rate": 6.43790832511651e-07,
1101
+ "loss": 0.2722,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.754385964912281,
1106
+ "grad_norm": 1.1623800992965698,
1107
+ "learning_rate": 5.623840798646058e-07,
1108
+ "loss": 0.2503,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.7719298245614032,
1113
+ "grad_norm": 1.183990240097046,
1114
+ "learning_rate": 4.863800120836287e-07,
1115
+ "loss": 0.2828,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.7894736842105265,
1120
+ "grad_norm": 1.0789499282836914,
1121
+ "learning_rate": 4.158070705699174e-07,
1122
+ "loss": 0.2668,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.807017543859649,
1127
+ "grad_norm": 1.064156174659729,
1128
+ "learning_rate": 3.5069166434870014e-07,
1129
+ "loss": 0.287,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.824561403508772,
1134
+ "grad_norm": 1.2312177419662476,
1135
+ "learning_rate": 2.9105816018674123e-07,
1136
+ "loss": 0.271,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.8421052631578947,
1141
+ "grad_norm": 1.4167927503585815,
1142
+ "learning_rate": 2.3692887347407654e-07,
1143
+ "loss": 0.2556,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.8596491228070176,
1148
+ "grad_norm": 1.251451849937439,
1149
+ "learning_rate": 1.8832405987339485e-07,
1150
+ "loss": 0.2919,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.8771929824561404,
1155
+ "grad_norm": 1.188820719718933,
1156
+ "learning_rate": 1.4526190774019287e-07,
1157
+ "loss": 0.291,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.8947368421052633,
1162
+ "grad_norm": 1.1191437244415283,
1163
+ "learning_rate": 1.0775853131652635e-07,
1164
+ "loss": 0.2899,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.912280701754386,
1169
+ "grad_norm": 1.1382777690887451,
1170
+ "learning_rate": 7.582796470091358e-08,
1171
+ "loss": 0.2592,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.9298245614035086,
1176
+ "grad_norm": 1.2150698900222778,
1177
+ "learning_rate": 4.9482156596659666e-08,
1178
+ "loss": 0.2893,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.9473684210526314,
1183
+ "grad_norm": 1.1517767906188965,
1184
+ "learning_rate": 2.8730965840533253e-08,
1185
+ "loss": 0.2685,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.9649122807017543,
1190
+ "grad_norm": 1.180580973625183,
1191
+ "learning_rate": 1.3582157713512565e-08,
1192
+ "loss": 0.2808,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.982456140350877,
1197
+ "grad_norm": 1.0312762260437012,
1198
+ "learning_rate": 4.041401034939884e-09,
1199
+ "loss": 0.2769,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 3.0,
1204
+ "grad_norm": 1.1315253973007202,
1205
+ "learning_rate": 1.1226604120673222e-10,
1206
+ "loss": 0.2639,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 3.0,
1211
+ "step": 855,
1212
+ "total_flos": 1.1897279902803558e+18,
1213
+ "train_loss": 0.5869470324432641,
1214
+ "train_runtime": 552.4582,
1215
+ "train_samples_per_second": 49.492,
1216
+ "train_steps_per_second": 1.548
1217
+ }
1218
+ ],
1219
+ "logging_steps": 5,
1220
+ "max_steps": 855,
1221
+ "num_input_tokens_seen": 0,
1222
+ "num_train_epochs": 3,
1223
+ "save_steps": 20000,
1224
+ "stateful_callbacks": {
1225
+ "TrainerControl": {
1226
+ "args": {
1227
+ "should_epoch_stop": false,
1228
+ "should_evaluate": false,
1229
+ "should_log": false,
1230
+ "should_save": false,
1231
+ "should_training_stop": false
1232
+ },
1233
+ "attributes": {}
1234
+ }
1235
+ },
1236
+ "total_flos": 1.1897279902803558e+18,
1237
+ "train_batch_size": 2,
1238
+ "trial_name": null,
1239
+ "trial_params": null
1240
+ }
127_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:029329279a7b00126f22d02d450cf3132103274b1dbc17fe9d84faa0ba8bfb79
3
+ size 8273
127_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff