RayDu0010 commited on
Commit
9c229be
·
verified ·
1 Parent(s): 5cbcfca

Upload folder using huggingface_hub

Browse files
108_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
+ "gate_proj",
29
+ "q_proj",
30
+ "v_proj",
31
+ "o_proj",
32
+ "k_proj",
33
+ "down_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
108_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a69db227912c878ed5104c4393959b51c5330bd4aceced332f90bab813fc752d
3
+ size 791751704
108_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
+ }
108_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.2804667426776023e+18,
4
+ "train_loss": 0.5722190376081967,
5
+ "train_runtime": 611.7948,
6
+ "train_samples": 9333,
7
+ "train_samples_per_second": 45.765,
8
+ "train_steps_per_second": 1.432
9
+ }
108_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 %}
108_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
+ }
108_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
108_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
+ }
108_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
108_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
+ }
108_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 1.2804667426776023e+18,
4
+ "train_loss": 0.5722190376081967,
5
+ "train_runtime": 611.7948,
6
+ "train_samples": 9333,
7
+ "train_samples_per_second": 45.765,
8
+ "train_steps_per_second": 1.432
9
+ }
108_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 876,
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.017123287671232876,
14
+ "grad_norm": 3.5807762145996094,
15
+ "learning_rate": 2.7272727272727272e-06,
16
+ "loss": 1.5291,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.03424657534246575,
21
+ "grad_norm": 3.3091728687286377,
22
+ "learning_rate": 6.136363636363637e-06,
23
+ "loss": 1.5898,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.05136986301369863,
28
+ "grad_norm": 0.7176612615585327,
29
+ "learning_rate": 9.545454545454545e-06,
30
+ "loss": 1.3831,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.0684931506849315,
35
+ "grad_norm": 0.47251248359680176,
36
+ "learning_rate": 1.2954545454545455e-05,
37
+ "loss": 1.347,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.08561643835616438,
42
+ "grad_norm": 0.44420522451400757,
43
+ "learning_rate": 1.6363636363636363e-05,
44
+ "loss": 1.3318,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.10273972602739725,
49
+ "grad_norm": 0.452013224363327,
50
+ "learning_rate": 1.9772727272727274e-05,
51
+ "loss": 1.3084,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.11986301369863013,
56
+ "grad_norm": 0.4074641168117523,
57
+ "learning_rate": 2.318181818181818e-05,
58
+ "loss": 1.25,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.136986301369863,
63
+ "grad_norm": 0.3674299716949463,
64
+ "learning_rate": 2.6590909090909093e-05,
65
+ "loss": 1.2546,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.1541095890410959,
70
+ "grad_norm": 0.46588748693466187,
71
+ "learning_rate": 3e-05,
72
+ "loss": 1.2504,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.17123287671232876,
77
+ "grad_norm": 0.3781576454639435,
78
+ "learning_rate": 2.999732673837156e-05,
79
+ "loss": 1.2171,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.18835616438356165,
84
+ "grad_norm": 0.39464396238327026,
85
+ "learning_rate": 2.9989307906329936e-05,
86
+ "loss": 1.2329,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.2054794520547945,
91
+ "grad_norm": 0.3637083172798157,
92
+ "learning_rate": 2.9975946362066596e-05,
93
+ "loss": 1.161,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.2226027397260274,
98
+ "grad_norm": 0.34439516067504883,
99
+ "learning_rate": 2.995724686810202e-05,
100
+ "loss": 1.1548,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.23972602739726026,
105
+ "grad_norm": 0.38400137424468994,
106
+ "learning_rate": 2.9933216089588158e-05,
107
+ "loss": 1.14,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.2568493150684932,
112
+ "grad_norm": 0.4240066111087799,
113
+ "learning_rate": 2.9903862591932762e-05,
114
+ "loss": 1.1434,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.273972602739726,
119
+ "grad_norm": 0.43173477053642273,
120
+ "learning_rate": 2.986919683774636e-05,
121
+ "loss": 1.0514,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.2910958904109589,
126
+ "grad_norm": 0.4568031132221222,
127
+ "learning_rate": 2.9829231183113013e-05,
128
+ "loss": 1.0286,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.3082191780821918,
133
+ "grad_norm": 0.45293739438056946,
134
+ "learning_rate": 2.9783979873186188e-05,
135
+ "loss": 1.0349,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.3253424657534247,
140
+ "grad_norm": 0.4283130466938019,
141
+ "learning_rate": 2.973345903711128e-05,
142
+ "loss": 1.0239,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.3424657534246575,
147
+ "grad_norm": 0.454668790102005,
148
+ "learning_rate": 2.9677686682276623e-05,
149
+ "loss": 1.0439,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.3595890410958904,
154
+ "grad_norm": 0.5247825980186462,
155
+ "learning_rate": 2.9616682687895038e-05,
156
+ "loss": 1.0893,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.3767123287671233,
161
+ "grad_norm": 0.4669569134712219,
162
+ "learning_rate": 2.9550468797918162e-05,
163
+ "loss": 1.0283,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.3938356164383562,
168
+ "grad_norm": 0.5175986886024475,
169
+ "learning_rate": 2.947906861328618e-05,
170
+ "loss": 0.9868,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.410958904109589,
175
+ "grad_norm": 0.5429822206497192,
176
+ "learning_rate": 2.9402507583515604e-05,
177
+ "loss": 0.9923,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.4280821917808219,
182
+ "grad_norm": 0.5113222599029541,
183
+ "learning_rate": 2.9320812997628184e-05,
184
+ "loss": 0.9701,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.4452054794520548,
189
+ "grad_norm": 0.5228748321533203,
190
+ "learning_rate": 2.923401397442415e-05,
191
+ "loss": 0.9191,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.4623287671232877,
196
+ "grad_norm": 0.5837630033493042,
197
+ "learning_rate": 2.914214145210324e-05,
198
+ "loss": 0.9546,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.4794520547945205,
203
+ "grad_norm": 0.5830627679824829,
204
+ "learning_rate": 2.9045228177237285e-05,
205
+ "loss": 0.9492,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.4965753424657534,
210
+ "grad_norm": 0.6123244166374207,
211
+ "learning_rate": 2.894330869309814e-05,
212
+ "loss": 0.9228,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.5136986301369864,
217
+ "grad_norm": 0.6550973057746887,
218
+ "learning_rate": 2.8836419327345297e-05,
219
+ "loss": 0.9001,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.5308219178082192,
224
+ "grad_norm": 0.6780920028686523,
225
+ "learning_rate": 2.8724598179077413e-05,
226
+ "loss": 0.9136,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.547945205479452,
231
+ "grad_norm": 0.6322837471961975,
232
+ "learning_rate": 2.8607885105252473e-05,
233
+ "loss": 0.9194,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.565068493150685,
238
+ "grad_norm": 0.6611925959587097,
239
+ "learning_rate": 2.848632170648139e-05,
240
+ "loss": 0.9192,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.5821917808219178,
245
+ "grad_norm": 0.6739152073860168,
246
+ "learning_rate": 2.8359951312200077e-05,
247
+ "loss": 0.8745,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.5993150684931506,
252
+ "grad_norm": 0.6996152997016907,
253
+ "learning_rate": 2.8228818965225325e-05,
254
+ "loss": 0.8917,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.6164383561643836,
259
+ "grad_norm": 0.6731507778167725,
260
+ "learning_rate": 2.8092971405700004e-05,
261
+ "loss": 0.8417,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.6335616438356164,
266
+ "grad_norm": 0.7309231162071228,
267
+ "learning_rate": 2.7952457054433193e-05,
268
+ "loss": 0.8388,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.6506849315068494,
273
+ "grad_norm": 0.7271023392677307,
274
+ "learning_rate": 2.780732599564137e-05,
275
+ "loss": 0.8218,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.6678082191780822,
280
+ "grad_norm": 0.6842921376228333,
281
+ "learning_rate": 2.76576299590966e-05,
282
+ "loss": 0.7642,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.684931506849315,
287
+ "grad_norm": 0.7116798758506775,
288
+ "learning_rate": 2.7503422301688276e-05,
289
+ "loss": 0.8356,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.702054794520548,
294
+ "grad_norm": 0.7833829522132874,
295
+ "learning_rate": 2.7344757988404845e-05,
296
+ "loss": 0.8014,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.7191780821917808,
301
+ "grad_norm": 0.7158685922622681,
302
+ "learning_rate": 2.718169357274238e-05,
303
+ "loss": 0.7942,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.7363013698630136,
308
+ "grad_norm": 0.7951450347900391,
309
+ "learning_rate": 2.7014287176546922e-05,
310
+ "loss": 0.8405,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.7534246575342466,
315
+ "grad_norm": 0.8001946806907654,
316
+ "learning_rate": 2.6842598469297846e-05,
317
+ "loss": 0.7866,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.7705479452054794,
322
+ "grad_norm": 0.7733917832374573,
323
+ "learning_rate": 2.6666688646839574e-05,
324
+ "loss": 0.7758,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.7876712328767124,
329
+ "grad_norm": 1.265261173248291,
330
+ "learning_rate": 2.6486620409569222e-05,
331
+ "loss": 0.7632,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.8047945205479452,
336
+ "grad_norm": 0.8097914457321167,
337
+ "learning_rate": 2.6302457940088024e-05,
338
+ "loss": 0.8139,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.821917808219178,
343
+ "grad_norm": 0.8714144229888916,
344
+ "learning_rate": 2.611426688032439e-05,
345
+ "loss": 0.7777,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.839041095890411,
350
+ "grad_norm": 0.8730566501617432,
351
+ "learning_rate": 2.5922114308136826e-05,
352
+ "loss": 0.7323,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 0.8561643835616438,
357
+ "grad_norm": 0.8538572788238525,
358
+ "learning_rate": 2.5726068713405084e-05,
359
+ "loss": 0.7418,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 0.8732876712328768,
364
+ "grad_norm": 0.9105691313743591,
365
+ "learning_rate": 2.5526199973617932e-05,
366
+ "loss": 0.6692,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 0.8904109589041096,
371
+ "grad_norm": 1.2026197910308838,
372
+ "learning_rate": 2.532257932896641e-05,
373
+ "loss": 0.7544,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 0.9075342465753424,
378
+ "grad_norm": 0.8264621496200562,
379
+ "learning_rate": 2.511527935695133e-05,
380
+ "loss": 0.7603,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 0.9246575342465754,
385
+ "grad_norm": 0.9663636684417725,
386
+ "learning_rate": 2.4904373946514136e-05,
387
+ "loss": 0.6813,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 0.9417808219178082,
392
+ "grad_norm": 1.0044124126434326,
393
+ "learning_rate": 2.468993827170028e-05,
394
+ "loss": 0.7415,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 0.958904109589041,
399
+ "grad_norm": 0.8889259696006775,
400
+ "learning_rate": 2.4472048764864602e-05,
401
+ "loss": 0.6579,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 0.976027397260274,
406
+ "grad_norm": 0.9680169224739075,
407
+ "learning_rate": 2.425078308942815e-05,
408
+ "loss": 0.6719,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 0.9931506849315068,
413
+ "grad_norm": 0.8709210753440857,
414
+ "learning_rate": 2.402622011219622e-05,
415
+ "loss": 0.6945,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 1.0102739726027397,
420
+ "grad_norm": 0.9271451234817505,
421
+ "learning_rate": 2.379843987524753e-05,
422
+ "loss": 0.5937,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 1.0273972602739727,
427
+ "grad_norm": 0.9400733709335327,
428
+ "learning_rate": 2.3567523567404346e-05,
429
+ "loss": 0.5772,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 1.0445205479452055,
434
+ "grad_norm": 0.972431480884552,
435
+ "learning_rate": 2.3333553495294033e-05,
436
+ "loss": 0.5882,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 1.0616438356164384,
441
+ "grad_norm": 1.0050362348556519,
442
+ "learning_rate": 2.309661305401205e-05,
443
+ "loss": 0.6248,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 1.0787671232876712,
448
+ "grad_norm": 0.8770918846130371,
449
+ "learning_rate": 2.285678669739705e-05,
450
+ "loss": 0.6198,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 1.095890410958904,
455
+ "grad_norm": 1.025366187095642,
456
+ "learning_rate": 2.2614159907928588e-05,
457
+ "loss": 0.5653,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 1.1130136986301369,
462
+ "grad_norm": 0.9350120425224304,
463
+ "learning_rate": 2.236881916625816e-05,
464
+ "loss": 0.5649,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 1.13013698630137,
469
+ "grad_norm": 0.9606553912162781,
470
+ "learning_rate": 2.212085192038453e-05,
471
+ "loss": 0.5369,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 1.1472602739726028,
476
+ "grad_norm": 1.0226980447769165,
477
+ "learning_rate": 2.1870346554484154e-05,
478
+ "loss": 0.5471,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 1.1643835616438356,
483
+ "grad_norm": 0.9591693878173828,
484
+ "learning_rate": 2.161739235740802e-05,
485
+ "loss": 0.5503,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 1.1815068493150684,
490
+ "grad_norm": 0.9610605835914612,
491
+ "learning_rate": 2.1362079490855968e-05,
492
+ "loss": 0.4876,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.1986301369863013,
497
+ "grad_norm": 0.991715669631958,
498
+ "learning_rate": 2.110449895723991e-05,
499
+ "loss": 0.525,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.2157534246575343,
504
+ "grad_norm": 0.9738296270370483,
505
+ "learning_rate": 2.084474256724743e-05,
506
+ "loss": 0.5085,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.2328767123287672,
511
+ "grad_norm": 1.0474423170089722,
512
+ "learning_rate": 2.0582902907117193e-05,
513
+ "loss": 0.5342,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.25,
518
+ "grad_norm": 1.1119288206100464,
519
+ "learning_rate": 2.0319073305638035e-05,
520
+ "loss": 0.48,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.2671232876712328,
525
+ "grad_norm": 0.9946816563606262,
526
+ "learning_rate": 2.00533478008833e-05,
527
+ "loss": 0.5386,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.2842465753424657,
532
+ "grad_norm": 0.9403849840164185,
533
+ "learning_rate": 1.97858211066924e-05,
534
+ "loss": 0.4838,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.3013698630136985,
539
+ "grad_norm": 1.010441780090332,
540
+ "learning_rate": 1.9516588578911484e-05,
541
+ "loss": 0.4826,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.3184931506849316,
546
+ "grad_norm": 1.0472416877746582,
547
+ "learning_rate": 1.9245746181405306e-05,
548
+ "loss": 0.5162,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.3356164383561644,
553
+ "grad_norm": 1.007859706878662,
554
+ "learning_rate": 1.8973390451852348e-05,
555
+ "loss": 0.4804,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.3527397260273972,
560
+ "grad_norm": 1.2064732313156128,
561
+ "learning_rate": 1.8699618467335428e-05,
562
+ "loss": 0.539,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.36986301369863,
567
+ "grad_norm": 0.9618467092514038,
568
+ "learning_rate": 1.8424527809740028e-05,
569
+ "loss": 0.4904,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.3869863013698631,
574
+ "grad_norm": 1.0133264064788818,
575
+ "learning_rate": 1.8148216530972714e-05,
576
+ "loss": 0.4753,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.404109589041096,
581
+ "grad_norm": 0.9880134463310242,
582
+ "learning_rate": 1.7870783118012034e-05,
583
+ "loss": 0.4782,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.4212328767123288,
588
+ "grad_norm": 1.0568008422851562,
589
+ "learning_rate": 1.7592326457804295e-05,
590
+ "loss": 0.4432,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.4383561643835616,
595
+ "grad_norm": 1.0978039503097534,
596
+ "learning_rate": 1.7312945802016817e-05,
597
+ "loss": 0.4789,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.4554794520547945,
602
+ "grad_norm": 1.0475904941558838,
603
+ "learning_rate": 1.7032740731661178e-05,
604
+ "loss": 0.5044,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.4726027397260273,
609
+ "grad_norm": 1.1703317165374756,
610
+ "learning_rate": 1.675181112159907e-05,
611
+ "loss": 0.4944,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.4897260273972603,
616
+ "grad_norm": 1.0947250127792358,
617
+ "learning_rate": 1.6470257104943414e-05,
618
+ "loss": 0.4517,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.5068493150684932,
623
+ "grad_norm": 1.2484368085861206,
624
+ "learning_rate": 1.618817903736741e-05,
625
+ "loss": 0.4844,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.523972602739726,
630
+ "grad_norm": 1.01430344581604,
631
+ "learning_rate": 1.5905677461334292e-05,
632
+ "loss": 0.418,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.541095890410959,
637
+ "grad_norm": 1.0765246152877808,
638
+ "learning_rate": 1.5622853070260492e-05,
639
+ "loss": 0.474,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.558219178082192,
644
+ "grad_norm": 1.195828914642334,
645
+ "learning_rate": 1.5339806672624982e-05,
646
+ "loss": 0.4931,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.5753424657534247,
651
+ "grad_norm": 1.2522104978561401,
652
+ "learning_rate": 1.5056639156037597e-05,
653
+ "loss": 0.4156,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.5924657534246576,
658
+ "grad_norm": 1.5915766954421997,
659
+ "learning_rate": 1.4773451451279213e-05,
660
+ "loss": 0.404,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.6095890410958904,
665
+ "grad_norm": 1.119336485862732,
666
+ "learning_rate": 1.4490344496326463e-05,
667
+ "loss": 0.5165,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.6267123287671232,
672
+ "grad_norm": 1.0856037139892578,
673
+ "learning_rate": 1.4207419200373942e-05,
674
+ "loss": 0.4388,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.643835616438356,
679
+ "grad_norm": 1.198949933052063,
680
+ "learning_rate": 1.3924776407866634e-05,
681
+ "loss": 0.436,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.660958904109589,
686
+ "grad_norm": 1.0617130994796753,
687
+ "learning_rate": 1.3642516862555433e-05,
688
+ "loss": 0.4294,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.678082191780822,
693
+ "grad_norm": 1.1422547101974487,
694
+ "learning_rate": 1.3360741171588578e-05,
695
+ "loss": 0.4385,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 1.6952054794520548,
700
+ "grad_norm": 1.066074252128601,
701
+ "learning_rate": 1.3079549769651737e-05,
702
+ "loss": 0.4393,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 1.7123287671232876,
707
+ "grad_norm": 0.9132263660430908,
708
+ "learning_rate": 1.2799042883169576e-05,
709
+ "loss": 0.3903,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 1.7294520547945207,
714
+ "grad_norm": 1.1798787117004395,
715
+ "learning_rate": 1.2519320494581581e-05,
716
+ "loss": 0.4102,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 1.7465753424657535,
721
+ "grad_norm": 1.1041642427444458,
722
+ "learning_rate": 1.2240482306704831e-05,
723
+ "loss": 0.4169,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 1.7636986301369864,
728
+ "grad_norm": 1.080991268157959,
729
+ "learning_rate": 1.1962627707196407e-05,
730
+ "loss": 0.4233,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 1.7808219178082192,
735
+ "grad_norm": 0.9368865489959717,
736
+ "learning_rate": 1.1685855733128203e-05,
737
+ "loss": 0.3847,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 1.797945205479452,
742
+ "grad_norm": 1.019186019897461,
743
+ "learning_rate": 1.1410265035686639e-05,
744
+ "loss": 0.3882,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 1.8150684931506849,
749
+ "grad_norm": 1.120586633682251,
750
+ "learning_rate": 1.1135953845009914e-05,
751
+ "loss": 0.4098,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 1.8321917808219177,
756
+ "grad_norm": 1.0819021463394165,
757
+ "learning_rate": 1.0863019935175415e-05,
758
+ "loss": 0.3812,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 1.8493150684931505,
763
+ "grad_norm": 1.0242397785186768,
764
+ "learning_rate": 1.0591560589349568e-05,
765
+ "loss": 0.3861,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 1.8664383561643836,
770
+ "grad_norm": 1.2031731605529785,
771
+ "learning_rate": 1.0321672565112767e-05,
772
+ "loss": 0.3772,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 1.8835616438356164,
777
+ "grad_norm": 1.1985048055648804,
778
+ "learning_rate": 1.0053452059971555e-05,
779
+ "loss": 0.4125,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 1.9006849315068495,
784
+ "grad_norm": 1.119626522064209,
785
+ "learning_rate": 9.786994677070523e-06,
786
+ "loss": 0.3984,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 1.9178082191780823,
791
+ "grad_norm": 1.401971697807312,
792
+ "learning_rate": 9.52239539111598e-06,
793
+ "loss": 0.3851,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 1.9349315068493151,
798
+ "grad_norm": 1.1090917587280273,
799
+ "learning_rate": 9.259748514523654e-06,
800
+ "loss": 0.3773,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 1.952054794520548,
805
+ "grad_norm": 0.9235194325447083,
806
+ "learning_rate": 8.999147663802494e-06,
807
+ "loss": 0.356,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 1.9691780821917808,
812
+ "grad_norm": 1.1582798957824707,
813
+ "learning_rate": 8.740685726186445e-06,
814
+ "loss": 0.4134,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 1.9863013698630136,
819
+ "grad_norm": 1.1277037858963013,
820
+ "learning_rate": 8.484454826526199e-06,
821
+ "loss": 0.3499,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 2.0034246575342465,
826
+ "grad_norm": 1.036704182624817,
827
+ "learning_rate": 8.2305462944527e-06,
828
+ "loss": 0.3822,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 2.0205479452054793,
833
+ "grad_norm": 1.3104430437088013,
834
+ "learning_rate": 7.979050631824074e-06,
835
+ "loss": 0.3038,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 2.037671232876712,
840
+ "grad_norm": 1.0896505117416382,
841
+ "learning_rate": 7.730057480467604e-06,
842
+ "loss": 0.2917,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 2.0547945205479454,
847
+ "grad_norm": 1.1111066341400146,
848
+ "learning_rate": 7.4836555902282534e-06,
849
+ "loss": 0.2935,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 2.0719178082191783,
854
+ "grad_norm": 1.0536811351776123,
855
+ "learning_rate": 7.239932787335147e-06,
856
+ "loss": 0.2996,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 2.089041095890411,
861
+ "grad_norm": 1.0928549766540527,
862
+ "learning_rate": 6.9989759430972105e-06,
863
+ "loss": 0.2864,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 2.106164383561644,
868
+ "grad_norm": 1.093943476676941,
869
+ "learning_rate": 6.760870942939202e-06,
870
+ "loss": 0.3072,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 2.1232876712328768,
875
+ "grad_norm": 1.1354261636734009,
876
+ "learning_rate": 6.525702655789201e-06,
877
+ "loss": 0.3115,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 2.1404109589041096,
882
+ "grad_norm": 1.266814947128296,
883
+ "learning_rate": 6.293554903828302e-06,
884
+ "loss": 0.3171,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 2.1575342465753424,
889
+ "grad_norm": 1.0408298969268799,
890
+ "learning_rate": 6.0645104326135e-06,
891
+ "loss": 0.2856,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 2.1746575342465753,
896
+ "grad_norm": 1.0795354843139648,
897
+ "learning_rate": 5.8386508815842746e-06,
898
+ "loss": 0.3023,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 2.191780821917808,
903
+ "grad_norm": 1.1301606893539429,
904
+ "learning_rate": 5.61605675496345e-06,
905
+ "loss": 0.2984,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 2.208904109589041,
910
+ "grad_norm": 1.1565942764282227,
911
+ "learning_rate": 5.396807393062681e-06,
912
+ "loss": 0.2965,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 2.2260273972602738,
917
+ "grad_norm": 1.2035876512527466,
918
+ "learning_rate": 5.180980944002799e-06,
919
+ "loss": 0.285,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 2.243150684931507,
924
+ "grad_norm": 1.1199487447738647,
925
+ "learning_rate": 4.9686543358590934e-06,
926
+ "loss": 0.3081,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 2.26027397260274,
931
+ "grad_norm": 1.2621663808822632,
932
+ "learning_rate": 4.759903249241464e-06,
933
+ "loss": 0.2812,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 2.2773972602739727,
938
+ "grad_norm": 1.1657969951629639,
939
+ "learning_rate": 4.554802090319209e-06,
940
+ "loss": 0.2966,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 2.2945205479452055,
945
+ "grad_norm": 1.1780309677124023,
946
+ "learning_rate": 4.353423964300074e-06,
947
+ "loss": 0.3006,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 2.3116438356164384,
952
+ "grad_norm": 1.0802596807479858,
953
+ "learning_rate": 4.155840649373015e-06,
954
+ "loss": 0.2774,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 2.328767123287671,
959
+ "grad_norm": 1.1796915531158447,
960
+ "learning_rate": 3.96212257112391e-06,
961
+ "loss": 0.3042,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 2.345890410958904,
966
+ "grad_norm": 1.1817134618759155,
967
+ "learning_rate": 3.772338777433482e-06,
968
+ "loss": 0.2585,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 2.363013698630137,
973
+ "grad_norm": 1.1262065172195435,
974
+ "learning_rate": 3.5865569138661814e-06,
975
+ "loss": 0.2945,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.3801369863013697,
980
+ "grad_norm": 1.2013483047485352,
981
+ "learning_rate": 3.4048431995589453e-06,
982
+ "loss": 0.3163,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.3972602739726026,
987
+ "grad_norm": 1.316292643547058,
988
+ "learning_rate": 3.22726240361843e-06,
989
+ "loss": 0.3051,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.4143835616438354,
994
+ "grad_norm": 1.1813979148864746,
995
+ "learning_rate": 3.053877822034995e-06,
996
+ "loss": 0.3077,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.4315068493150687,
1001
+ "grad_norm": 1.1264219284057617,
1002
+ "learning_rate": 2.884751255121827e-06,
1003
+ "loss": 0.2396,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.4486301369863015,
1008
+ "grad_norm": 1.0954492092132568,
1009
+ "learning_rate": 2.7199429854871544e-06,
1010
+ "loss": 0.2857,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.4657534246575343,
1015
+ "grad_norm": 1.169098138809204,
1016
+ "learning_rate": 2.559511756547407e-06,
1017
+ "loss": 0.2917,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.482876712328767,
1022
+ "grad_norm": 1.130307912826538,
1023
+ "learning_rate": 2.403514751589032e-06,
1024
+ "loss": 0.2565,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.5,
1029
+ "grad_norm": 1.0802239179611206,
1030
+ "learning_rate": 2.252007573386365e-06,
1031
+ "loss": 0.253,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.517123287671233,
1036
+ "grad_norm": 1.1628029346466064,
1037
+ "learning_rate": 2.105044224382854e-06,
1038
+ "loss": 0.284,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.5342465753424657,
1043
+ "grad_norm": 1.0958950519561768,
1044
+ "learning_rate": 1.9626770874427368e-06,
1045
+ "loss": 0.2655,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 2.5513698630136985,
1050
+ "grad_norm": 1.1811082363128662,
1051
+ "learning_rate": 1.8249569071799134e-06,
1052
+ "loss": 0.2809,
1053
+ "step": 745
1054
+ },
1055
+ {
1056
+ "epoch": 2.5684931506849313,
1057
+ "grad_norm": 1.0996111631393433,
1058
+ "learning_rate": 1.69193277187083e-06,
1059
+ "loss": 0.2413,
1060
+ "step": 750
1061
+ },
1062
+ {
1063
+ "epoch": 2.5856164383561646,
1064
+ "grad_norm": 1.231388807296753,
1065
+ "learning_rate": 1.5636520959577094e-06,
1066
+ "loss": 0.2644,
1067
+ "step": 755
1068
+ },
1069
+ {
1070
+ "epoch": 2.602739726027397,
1071
+ "grad_norm": 1.0639979839324951,
1072
+ "learning_rate": 1.44016060314835e-06,
1073
+ "loss": 0.245,
1074
+ "step": 760
1075
+ },
1076
+ {
1077
+ "epoch": 2.6198630136986303,
1078
+ "grad_norm": 1.119203805923462,
1079
+ "learning_rate": 1.321502310118649e-06,
1080
+ "loss": 0.2712,
1081
+ "step": 765
1082
+ },
1083
+ {
1084
+ "epoch": 2.636986301369863,
1085
+ "grad_norm": 1.1058067083358765,
1086
+ "learning_rate": 1.2077195108234934e-06,
1087
+ "loss": 0.3131,
1088
+ "step": 770
1089
+ },
1090
+ {
1091
+ "epoch": 2.654109589041096,
1092
+ "grad_norm": 1.2589203119277954,
1093
+ "learning_rate": 1.098852761421719e-06,
1094
+ "loss": 0.258,
1095
+ "step": 775
1096
+ },
1097
+ {
1098
+ "epoch": 2.671232876712329,
1099
+ "grad_norm": 1.1050349473953247,
1100
+ "learning_rate": 9.949408658205072e-07,
1101
+ "loss": 0.2727,
1102
+ "step": 780
1103
+ },
1104
+ {
1105
+ "epoch": 2.6883561643835616,
1106
+ "grad_norm": 1.0997480154037476,
1107
+ "learning_rate": 8.960208618442883e-07,
1108
+ "loss": 0.2772,
1109
+ "step": 785
1110
+ },
1111
+ {
1112
+ "epoch": 2.7054794520547945,
1113
+ "grad_norm": 1.1793811321258545,
1114
+ "learning_rate": 8.021280080331816e-07,
1115
+ "loss": 0.2813,
1116
+ "step": 790
1117
+ },
1118
+ {
1119
+ "epoch": 2.7226027397260273,
1120
+ "grad_norm": 1.0853631496429443,
1121
+ "learning_rate": 7.132957710756277e-07,
1122
+ "loss": 0.2754,
1123
+ "step": 795
1124
+ },
1125
+ {
1126
+ "epoch": 2.73972602739726,
1127
+ "grad_norm": 1.0766814947128296,
1128
+ "learning_rate": 6.295558138796803e-07,
1129
+ "loss": 0.2788,
1130
+ "step": 800
1131
+ },
1132
+ {
1133
+ "epoch": 2.756849315068493,
1134
+ "grad_norm": 1.2465026378631592,
1135
+ "learning_rate": 5.509379842872558e-07,
1136
+ "loss": 0.2711,
1137
+ "step": 805
1138
+ },
1139
+ {
1140
+ "epoch": 2.7739726027397262,
1141
+ "grad_norm": 1.1534792184829712,
1142
+ "learning_rate": 4.774703044353051e-07,
1143
+ "loss": 0.2554,
1144
+ "step": 810
1145
+ },
1146
+ {
1147
+ "epoch": 2.791095890410959,
1148
+ "grad_norm": 1.0267202854156494,
1149
+ "learning_rate": 4.091789607677582e-07,
1150
+ "loss": 0.2526,
1151
+ "step": 815
1152
+ },
1153
+ {
1154
+ "epoch": 2.808219178082192,
1155
+ "grad_norm": 1.115756869316101,
1156
+ "learning_rate": 3.460882947017635e-07,
1157
+ "loss": 0.2666,
1158
+ "step": 820
1159
+ },
1160
+ {
1161
+ "epoch": 2.8253424657534247,
1162
+ "grad_norm": 1.1267921924591064,
1163
+ "learning_rate": 2.8822079395154357e-07,
1164
+ "loss": 0.2621,
1165
+ "step": 825
1166
+ },
1167
+ {
1168
+ "epoch": 2.8424657534246576,
1169
+ "grad_norm": 1.113959550857544,
1170
+ "learning_rate": 2.3559708451300622e-07,
1171
+ "loss": 0.2774,
1172
+ "step": 830
1173
+ },
1174
+ {
1175
+ "epoch": 2.8595890410958904,
1176
+ "grad_norm": 1.1377060413360596,
1177
+ "learning_rate": 1.8823592331191242e-07,
1178
+ "loss": 0.2757,
1179
+ "step": 835
1180
+ },
1181
+ {
1182
+ "epoch": 2.8767123287671232,
1183
+ "grad_norm": 1.044373869895935,
1184
+ "learning_rate": 1.4615419151824406e-07,
1185
+ "loss": 0.2735,
1186
+ "step": 840
1187
+ },
1188
+ {
1189
+ "epoch": 2.893835616438356,
1190
+ "grad_norm": 1.0506336688995361,
1191
+ "learning_rate": 1.0936688852919042e-07,
1192
+ "loss": 0.2847,
1193
+ "step": 845
1194
+ },
1195
+ {
1196
+ "epoch": 2.910958904109589,
1197
+ "grad_norm": 1.1747305393218994,
1198
+ "learning_rate": 7.788712662281317e-08,
1199
+ "loss": 0.2553,
1200
+ "step": 850
1201
+ },
1202
+ {
1203
+ "epoch": 2.928082191780822,
1204
+ "grad_norm": 1.16020667552948,
1205
+ "learning_rate": 5.1726126284389886e-08,
1206
+ "loss": 0.2604,
1207
+ "step": 855
1208
+ },
1209
+ {
1210
+ "epoch": 2.9452054794520546,
1211
+ "grad_norm": 1.483211874961853,
1212
+ "learning_rate": 3.0893212207036556e-08,
1213
+ "loss": 0.262,
1214
+ "step": 860
1215
+ },
1216
+ {
1217
+ "epoch": 2.962328767123288,
1218
+ "grad_norm": 1.1319483518600464,
1219
+ "learning_rate": 1.5395809968061226e-08,
1220
+ "loss": 0.2774,
1221
+ "step": 865
1222
+ },
1223
+ {
1224
+ "epoch": 2.9794520547945207,
1225
+ "grad_norm": 1.1830449104309082,
1226
+ "learning_rate": 5.239443382229481e-09,
1227
+ "loss": 0.2794,
1228
+ "step": 870
1229
+ },
1230
+ {
1231
+ "epoch": 2.9965753424657535,
1232
+ "grad_norm": 1.1832125186920166,
1233
+ "learning_rate": 4.277325328860826e-10,
1234
+ "loss": 0.2957,
1235
+ "step": 875
1236
+ },
1237
+ {
1238
+ "epoch": 3.0,
1239
+ "step": 876,
1240
+ "total_flos": 1.2804667426776023e+18,
1241
+ "train_loss": 0.5722190376081967,
1242
+ "train_runtime": 611.7948,
1243
+ "train_samples_per_second": 45.765,
1244
+ "train_steps_per_second": 1.432
1245
+ }
1246
+ ],
1247
+ "logging_steps": 5,
1248
+ "max_steps": 876,
1249
+ "num_input_tokens_seen": 0,
1250
+ "num_train_epochs": 3,
1251
+ "save_steps": 20000,
1252
+ "stateful_callbacks": {
1253
+ "TrainerControl": {
1254
+ "args": {
1255
+ "should_epoch_stop": false,
1256
+ "should_evaluate": false,
1257
+ "should_log": false,
1258
+ "should_save": false,
1259
+ "should_training_stop": false
1260
+ },
1261
+ "attributes": {}
1262
+ }
1263
+ },
1264
+ "total_flos": 1.2804667426776023e+18,
1265
+ "train_batch_size": 2,
1266
+ "trial_name": null,
1267
+ "trial_params": null
1268
+ }
108_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:641ae215a50ac643b53765911da1e13d7c584739744ba94bc4593627b7d0e310
3
+ size 8273
108_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff