RayDu0010 commited on
Commit
d3712ad
·
verified ·
1 Parent(s): 2f3a507

Upload folder using huggingface_hub

Browse files
109_128_e3_3e-5/adapter_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "ibm-granite/granite-3.3-8b-instruct",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 256,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 128,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "k_proj",
28
+ "down_proj",
29
+ "up_proj",
30
+ "o_proj",
31
+ "gate_proj",
32
+ "q_proj",
33
+ "v_proj"
34
+ ],
35
+ "task_type": "CAUSAL_LM",
36
+ "trainable_token_indices": null,
37
+ "use_dora": false,
38
+ "use_rslora": false
39
+ }
109_128_e3_3e-5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb222bafc341b554a18db7eae4341f2a85a6dc0d25c0171f831965e47b16ba5c
3
+ size 791751704
109_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
+ }
109_128_e3_3e-5/all_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 9.597313091213722e+17,
4
+ "train_loss": 0.37897290995246485,
5
+ "train_runtime": 452.2093,
6
+ "train_samples": 7898,
7
+ "train_samples_per_second": 52.396,
8
+ "train_steps_per_second": 1.639
9
+ }
109_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 %}
109_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
+ }
109_128_e3_3e-5/merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
109_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
+ }
109_128_e3_3e-5/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
109_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
+ }
109_128_e3_3e-5/train_results.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "epoch": 3.0,
3
+ "total_flos": 9.597313091213722e+17,
4
+ "train_loss": 0.37897290995246485,
5
+ "train_runtime": 452.2093,
6
+ "train_samples": 7898,
7
+ "train_samples_per_second": 52.396,
8
+ "train_steps_per_second": 1.639
9
+ }
109_128_e3_3e-5/trainer_state.json ADDED
@@ -0,0 +1,1079 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 741,
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.020242914979757085,
14
+ "grad_norm": 2.8289573192596436,
15
+ "learning_rate": 3.157894736842105e-06,
16
+ "loss": 1.6683,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.04048582995951417,
21
+ "grad_norm": 1.391170859336853,
22
+ "learning_rate": 7.105263157894737e-06,
23
+ "loss": 1.5802,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.06072874493927125,
28
+ "grad_norm": 0.5817340612411499,
29
+ "learning_rate": 1.1052631578947368e-05,
30
+ "loss": 1.4943,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.08097165991902834,
35
+ "grad_norm": 0.5116495490074158,
36
+ "learning_rate": 1.5e-05,
37
+ "loss": 1.4213,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.10121457489878542,
42
+ "grad_norm": 0.43772825598716736,
43
+ "learning_rate": 1.894736842105263e-05,
44
+ "loss": 1.4175,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.1214574898785425,
49
+ "grad_norm": 0.4413267970085144,
50
+ "learning_rate": 2.2894736842105263e-05,
51
+ "loss": 1.3537,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.1417004048582996,
56
+ "grad_norm": 0.4279823899269104,
57
+ "learning_rate": 2.6842105263157896e-05,
58
+ "loss": 1.4293,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.16194331983805668,
63
+ "grad_norm": 0.40660929679870605,
64
+ "learning_rate": 2.999985022144514e-05,
65
+ "loss": 1.3134,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.18218623481781376,
70
+ "grad_norm": 0.4414168894290924,
71
+ "learning_rate": 2.9994608286088872e-05,
72
+ "loss": 1.2979,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.20242914979757085,
77
+ "grad_norm": 0.583496630191803,
78
+ "learning_rate": 2.9981880413869707e-05,
79
+ "loss": 1.2187,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.22267206477732793,
84
+ "grad_norm": 0.4906906485557556,
85
+ "learning_rate": 2.9961672959074872e-05,
86
+ "loss": 1.2568,
87
+ "step": 55
88
+ },
89
+ {
90
+ "epoch": 0.242914979757085,
91
+ "grad_norm": 0.5154989361763,
92
+ "learning_rate": 2.993399601011266e-05,
93
+ "loss": 1.1901,
94
+ "step": 60
95
+ },
96
+ {
97
+ "epoch": 0.2631578947368421,
98
+ "grad_norm": 0.6087929010391235,
99
+ "learning_rate": 2.9898863384475917e-05,
100
+ "loss": 1.1499,
101
+ "step": 65
102
+ },
103
+ {
104
+ "epoch": 0.2834008097165992,
105
+ "grad_norm": 0.5353901386260986,
106
+ "learning_rate": 2.985629262184371e-05,
107
+ "loss": 1.1142,
108
+ "step": 70
109
+ },
110
+ {
111
+ "epoch": 0.30364372469635625,
112
+ "grad_norm": 0.6328024864196777,
113
+ "learning_rate": 2.9806304975324853e-05,
114
+ "loss": 1.0889,
115
+ "step": 75
116
+ },
117
+ {
118
+ "epoch": 0.32388663967611336,
119
+ "grad_norm": 0.6432482600212097,
120
+ "learning_rate": 2.97489254008474e-05,
121
+ "loss": 1.0598,
122
+ "step": 80
123
+ },
124
+ {
125
+ "epoch": 0.3441295546558704,
126
+ "grad_norm": 0.8061753511428833,
127
+ "learning_rate": 2.9684182544699645e-05,
128
+ "loss": 1.0013,
129
+ "step": 85
130
+ },
131
+ {
132
+ "epoch": 0.3643724696356275,
133
+ "grad_norm": 0.6597098112106323,
134
+ "learning_rate": 2.9612108729228678e-05,
135
+ "loss": 0.9614,
136
+ "step": 90
137
+ },
138
+ {
139
+ "epoch": 0.38461538461538464,
140
+ "grad_norm": 0.774358332157135,
141
+ "learning_rate": 2.9532739936703703e-05,
142
+ "loss": 0.9589,
143
+ "step": 95
144
+ },
145
+ {
146
+ "epoch": 0.4048582995951417,
147
+ "grad_norm": 0.7571013569831848,
148
+ "learning_rate": 2.9446115791352207e-05,
149
+ "loss": 0.9222,
150
+ "step": 100
151
+ },
152
+ {
153
+ "epoch": 0.4251012145748988,
154
+ "grad_norm": 0.7839725017547607,
155
+ "learning_rate": 2.935227953957787e-05,
156
+ "loss": 0.9083,
157
+ "step": 105
158
+ },
159
+ {
160
+ "epoch": 0.44534412955465585,
161
+ "grad_norm": 0.7715641260147095,
162
+ "learning_rate": 2.9251278028370137e-05,
163
+ "loss": 0.9057,
164
+ "step": 110
165
+ },
166
+ {
167
+ "epoch": 0.46558704453441296,
168
+ "grad_norm": 0.7811329364776611,
169
+ "learning_rate": 2.9143161681916264e-05,
170
+ "loss": 0.8725,
171
+ "step": 115
172
+ },
173
+ {
174
+ "epoch": 0.48582995951417,
175
+ "grad_norm": 0.8256909847259521,
176
+ "learning_rate": 2.9027984476427427e-05,
177
+ "loss": 0.8126,
178
+ "step": 120
179
+ },
180
+ {
181
+ "epoch": 0.5060728744939271,
182
+ "grad_norm": 0.9319804906845093,
183
+ "learning_rate": 2.8905803913191545e-05,
184
+ "loss": 0.7398,
185
+ "step": 125
186
+ },
187
+ {
188
+ "epoch": 0.5263157894736842,
189
+ "grad_norm": 1.301496148109436,
190
+ "learning_rate": 2.877668098986624e-05,
191
+ "loss": 0.7155,
192
+ "step": 130
193
+ },
194
+ {
195
+ "epoch": 0.5465587044534413,
196
+ "grad_norm": 0.9583051800727844,
197
+ "learning_rate": 2.864068017002621e-05,
198
+ "loss": 0.7992,
199
+ "step": 135
200
+ },
201
+ {
202
+ "epoch": 0.5668016194331984,
203
+ "grad_norm": 0.9819439053535461,
204
+ "learning_rate": 2.8497869350980376e-05,
205
+ "loss": 0.7147,
206
+ "step": 140
207
+ },
208
+ {
209
+ "epoch": 0.5870445344129555,
210
+ "grad_norm": 0.9111624360084534,
211
+ "learning_rate": 2.834831982987462e-05,
212
+ "loss": 0.7053,
213
+ "step": 145
214
+ },
215
+ {
216
+ "epoch": 0.6072874493927125,
217
+ "grad_norm": 0.9278939962387085,
218
+ "learning_rate": 2.8192106268097336e-05,
219
+ "loss": 0.6773,
220
+ "step": 150
221
+ },
222
+ {
223
+ "epoch": 0.6275303643724697,
224
+ "grad_norm": 0.9512412548065186,
225
+ "learning_rate": 2.8029306654005288e-05,
226
+ "loss": 0.6563,
227
+ "step": 155
228
+ },
229
+ {
230
+ "epoch": 0.6477732793522267,
231
+ "grad_norm": 1.066825032234192,
232
+ "learning_rate": 2.7860002263988565e-05,
233
+ "loss": 0.579,
234
+ "step": 160
235
+ },
236
+ {
237
+ "epoch": 0.6680161943319838,
238
+ "grad_norm": 1.1656990051269531,
239
+ "learning_rate": 2.768427762189402e-05,
240
+ "loss": 0.6585,
241
+ "step": 165
242
+ },
243
+ {
244
+ "epoch": 0.6882591093117408,
245
+ "grad_norm": 0.966322660446167,
246
+ "learning_rate": 2.75022204568274e-05,
247
+ "loss": 0.5861,
248
+ "step": 170
249
+ },
250
+ {
251
+ "epoch": 0.708502024291498,
252
+ "grad_norm": 1.1481801271438599,
253
+ "learning_rate": 2.7313921659355305e-05,
254
+ "loss": 0.6022,
255
+ "step": 175
256
+ },
257
+ {
258
+ "epoch": 0.728744939271255,
259
+ "grad_norm": 0.9786959886550903,
260
+ "learning_rate": 2.7119475236128816e-05,
261
+ "loss": 0.5276,
262
+ "step": 180
263
+ },
264
+ {
265
+ "epoch": 0.7489878542510121,
266
+ "grad_norm": 1.128067970275879,
267
+ "learning_rate": 2.691897826295143e-05,
268
+ "loss": 0.522,
269
+ "step": 185
270
+ },
271
+ {
272
+ "epoch": 0.7692307692307693,
273
+ "grad_norm": 1.0342376232147217,
274
+ "learning_rate": 2.6712530836314763e-05,
275
+ "loss": 0.5481,
276
+ "step": 190
277
+ },
278
+ {
279
+ "epoch": 0.7894736842105263,
280
+ "grad_norm": 1.3109385967254639,
281
+ "learning_rate": 2.650023602342614e-05,
282
+ "loss": 0.4967,
283
+ "step": 195
284
+ },
285
+ {
286
+ "epoch": 0.8097165991902834,
287
+ "grad_norm": 1.1816333532333374,
288
+ "learning_rate": 2.6282199810753192e-05,
289
+ "loss": 0.5294,
290
+ "step": 200
291
+ },
292
+ {
293
+ "epoch": 0.8299595141700404,
294
+ "grad_norm": 1.168026328086853,
295
+ "learning_rate": 2.6058531051110933e-05,
296
+ "loss": 0.5157,
297
+ "step": 205
298
+ },
299
+ {
300
+ "epoch": 0.8502024291497976,
301
+ "grad_norm": 1.3411718606948853,
302
+ "learning_rate": 2.5829341409317866e-05,
303
+ "loss": 0.4499,
304
+ "step": 210
305
+ },
306
+ {
307
+ "epoch": 0.8704453441295547,
308
+ "grad_norm": 1.1015444993972778,
309
+ "learning_rate": 2.559474530644825e-05,
310
+ "loss": 0.4635,
311
+ "step": 215
312
+ },
313
+ {
314
+ "epoch": 0.8906882591093117,
315
+ "grad_norm": 1.1771754026412964,
316
+ "learning_rate": 2.5354859862708276e-05,
317
+ "loss": 0.4539,
318
+ "step": 220
319
+ },
320
+ {
321
+ "epoch": 0.9109311740890689,
322
+ "grad_norm": 1.1771122217178345,
323
+ "learning_rate": 2.5109804838964785e-05,
324
+ "loss": 0.474,
325
+ "step": 225
326
+ },
327
+ {
328
+ "epoch": 0.9311740890688259,
329
+ "grad_norm": 1.2321745157241821,
330
+ "learning_rate": 2.4859702576955595e-05,
331
+ "loss": 0.4315,
332
+ "step": 230
333
+ },
334
+ {
335
+ "epoch": 0.951417004048583,
336
+ "grad_norm": 1.4300092458724976,
337
+ "learning_rate": 2.4604677938211394e-05,
338
+ "loss": 0.417,
339
+ "step": 235
340
+ },
341
+ {
342
+ "epoch": 0.97165991902834,
343
+ "grad_norm": 1.226932406425476,
344
+ "learning_rate": 2.4344858241719625e-05,
345
+ "loss": 0.4144,
346
+ "step": 240
347
+ },
348
+ {
349
+ "epoch": 0.9919028340080972,
350
+ "grad_norm": 1.3439360857009888,
351
+ "learning_rate": 2.4080373200361527e-05,
352
+ "loss": 0.38,
353
+ "step": 245
354
+ },
355
+ {
356
+ "epoch": 1.0121457489878543,
357
+ "grad_norm": 1.1570885181427002,
358
+ "learning_rate": 2.3811354856153996e-05,
359
+ "loss": 0.3702,
360
+ "step": 250
361
+ },
362
+ {
363
+ "epoch": 1.0323886639676114,
364
+ "grad_norm": 1.1813459396362305,
365
+ "learning_rate": 2.3537937514328704e-05,
366
+ "loss": 0.3205,
367
+ "step": 255
368
+ },
369
+ {
370
+ "epoch": 1.0526315789473684,
371
+ "grad_norm": 1.1963030099868774,
372
+ "learning_rate": 2.326025767628129e-05,
373
+ "loss": 0.2857,
374
+ "step": 260
375
+ },
376
+ {
377
+ "epoch": 1.0728744939271255,
378
+ "grad_norm": 1.3866466283798218,
379
+ "learning_rate": 2.297845397142415e-05,
380
+ "loss": 0.3079,
381
+ "step": 265
382
+ },
383
+ {
384
+ "epoch": 1.0931174089068827,
385
+ "grad_norm": 1.2871726751327515,
386
+ "learning_rate": 2.2692667087976803e-05,
387
+ "loss": 0.3287,
388
+ "step": 270
389
+ },
390
+ {
391
+ "epoch": 1.1133603238866396,
392
+ "grad_norm": 1.344159483909607,
393
+ "learning_rate": 2.2403039702728466e-05,
394
+ "loss": 0.2678,
395
+ "step": 275
396
+ },
397
+ {
398
+ "epoch": 1.1336032388663968,
399
+ "grad_norm": 1.1413447856903076,
400
+ "learning_rate": 2.2109716409807804e-05,
401
+ "loss": 0.3005,
402
+ "step": 280
403
+ },
404
+ {
405
+ "epoch": 1.1538461538461537,
406
+ "grad_norm": 1.3377690315246582,
407
+ "learning_rate": 2.1812843648495465e-05,
408
+ "loss": 0.2764,
409
+ "step": 285
410
+ },
411
+ {
412
+ "epoch": 1.174089068825911,
413
+ "grad_norm": 1.1025853157043457,
414
+ "learning_rate": 2.1512569630115507e-05,
415
+ "loss": 0.244,
416
+ "step": 290
417
+ },
418
+ {
419
+ "epoch": 1.194331983805668,
420
+ "grad_norm": 1.3570576906204224,
421
+ "learning_rate": 2.1209044264042016e-05,
422
+ "loss": 0.3048,
423
+ "step": 295
424
+ },
425
+ {
426
+ "epoch": 1.214574898785425,
427
+ "grad_norm": 1.1793861389160156,
428
+ "learning_rate": 2.0902419082858142e-05,
429
+ "loss": 0.2586,
430
+ "step": 300
431
+ },
432
+ {
433
+ "epoch": 1.2348178137651822,
434
+ "grad_norm": 1.1302578449249268,
435
+ "learning_rate": 2.059284716670463e-05,
436
+ "loss": 0.2423,
437
+ "step": 305
438
+ },
439
+ {
440
+ "epoch": 1.2550607287449393,
441
+ "grad_norm": 1.348034381866455,
442
+ "learning_rate": 2.0280483066855823e-05,
443
+ "loss": 0.2719,
444
+ "step": 310
445
+ },
446
+ {
447
+ "epoch": 1.2753036437246963,
448
+ "grad_norm": 1.1223900318145752,
449
+ "learning_rate": 1.996548272856117e-05,
450
+ "loss": 0.2494,
451
+ "step": 315
452
+ },
453
+ {
454
+ "epoch": 1.2955465587044535,
455
+ "grad_norm": 1.2410658597946167,
456
+ "learning_rate": 1.9648003413190858e-05,
457
+ "loss": 0.2222,
458
+ "step": 320
459
+ },
460
+ {
461
+ "epoch": 1.3157894736842106,
462
+ "grad_norm": 1.2068846225738525,
463
+ "learning_rate": 1.9328203619724297e-05,
464
+ "loss": 0.2113,
465
+ "step": 325
466
+ },
467
+ {
468
+ "epoch": 1.3360323886639676,
469
+ "grad_norm": 1.4179112911224365,
470
+ "learning_rate": 1.9006243005620825e-05,
471
+ "loss": 0.2567,
472
+ "step": 330
473
+ },
474
+ {
475
+ "epoch": 1.3562753036437247,
476
+ "grad_norm": 1.527790904045105,
477
+ "learning_rate": 1.8682282307111988e-05,
478
+ "loss": 0.2131,
479
+ "step": 335
480
+ },
481
+ {
482
+ "epoch": 1.376518218623482,
483
+ "grad_norm": 1.1818265914916992,
484
+ "learning_rate": 1.8356483258955302e-05,
485
+ "loss": 0.2394,
486
+ "step": 340
487
+ },
488
+ {
489
+ "epoch": 1.3967611336032388,
490
+ "grad_norm": 1.2762672901153564,
491
+ "learning_rate": 1.802900851368946e-05,
492
+ "loss": 0.2433,
493
+ "step": 345
494
+ },
495
+ {
496
+ "epoch": 1.417004048582996,
497
+ "grad_norm": 1.179250717163086,
498
+ "learning_rate": 1.770002156043138e-05,
499
+ "loss": 0.2136,
500
+ "step": 350
501
+ },
502
+ {
503
+ "epoch": 1.4372469635627532,
504
+ "grad_norm": 1.1492518186569214,
505
+ "learning_rate": 1.73696866432556e-05,
506
+ "loss": 0.2121,
507
+ "step": 355
508
+ },
509
+ {
510
+ "epoch": 1.45748987854251,
511
+ "grad_norm": 1.3767096996307373,
512
+ "learning_rate": 1.70381686791967e-05,
513
+ "loss": 0.2258,
514
+ "step": 360
515
+ },
516
+ {
517
+ "epoch": 1.4777327935222673,
518
+ "grad_norm": 1.3511375188827515,
519
+ "learning_rate": 1.670563317591589e-05,
520
+ "loss": 0.1974,
521
+ "step": 365
522
+ },
523
+ {
524
+ "epoch": 1.4979757085020242,
525
+ "grad_norm": 1.319981336593628,
526
+ "learning_rate": 1.6372246149072572e-05,
527
+ "loss": 0.1992,
528
+ "step": 370
529
+ },
530
+ {
531
+ "epoch": 1.5182186234817814,
532
+ "grad_norm": 1.193726658821106,
533
+ "learning_rate": 1.6038174039442408e-05,
534
+ "loss": 0.195,
535
+ "step": 375
536
+ },
537
+ {
538
+ "epoch": 1.5384615384615383,
539
+ "grad_norm": 1.3207732439041138,
540
+ "learning_rate": 1.570358362982309e-05,
541
+ "loss": 0.1845,
542
+ "step": 380
543
+ },
544
+ {
545
+ "epoch": 1.5587044534412957,
546
+ "grad_norm": 1.3221644163131714,
547
+ "learning_rate": 1.5368641961769404e-05,
548
+ "loss": 0.182,
549
+ "step": 385
550
+ },
551
+ {
552
+ "epoch": 1.5789473684210527,
553
+ "grad_norm": 1.1301093101501465,
554
+ "learning_rate": 1.5033516252199047e-05,
555
+ "loss": 0.1777,
556
+ "step": 390
557
+ },
558
+ {
559
+ "epoch": 1.5991902834008096,
560
+ "grad_norm": 1.105190634727478,
561
+ "learning_rate": 1.4698373809910964e-05,
562
+ "loss": 0.1538,
563
+ "step": 395
564
+ },
565
+ {
566
+ "epoch": 1.6194331983805668,
567
+ "grad_norm": 1.2285429239273071,
568
+ "learning_rate": 1.4363381952057779e-05,
569
+ "loss": 0.1815,
570
+ "step": 400
571
+ },
572
+ {
573
+ "epoch": 1.639676113360324,
574
+ "grad_norm": 1.2153966426849365,
575
+ "learning_rate": 1.402870792061404e-05,
576
+ "loss": 0.1836,
577
+ "step": 405
578
+ },
579
+ {
580
+ "epoch": 1.6599190283400809,
581
+ "grad_norm": 1.1106749773025513,
582
+ "learning_rate": 1.3694518798882041e-05,
583
+ "loss": 0.1695,
584
+ "step": 410
585
+ },
586
+ {
587
+ "epoch": 1.680161943319838,
588
+ "grad_norm": 1.0664726495742798,
589
+ "learning_rate": 1.3360981428076837e-05,
590
+ "loss": 0.1555,
591
+ "step": 415
592
+ },
593
+ {
594
+ "epoch": 1.7004048582995952,
595
+ "grad_norm": 1.2539761066436768,
596
+ "learning_rate": 1.3028262324032083e-05,
597
+ "loss": 0.1738,
598
+ "step": 420
599
+ },
600
+ {
601
+ "epoch": 1.7206477732793521,
602
+ "grad_norm": 1.1291399002075195,
603
+ "learning_rate": 1.269652759406839e-05,
604
+ "loss": 0.15,
605
+ "step": 425
606
+ },
607
+ {
608
+ "epoch": 1.7408906882591093,
609
+ "grad_norm": 0.9693400263786316,
610
+ "learning_rate": 1.236594285406557e-05,
611
+ "loss": 0.1497,
612
+ "step": 430
613
+ },
614
+ {
615
+ "epoch": 1.7611336032388665,
616
+ "grad_norm": 0.9691015481948853,
617
+ "learning_rate": 1.2036673145780251e-05,
618
+ "loss": 0.1258,
619
+ "step": 435
620
+ },
621
+ {
622
+ "epoch": 1.7813765182186234,
623
+ "grad_norm": 1.0339523553848267,
624
+ "learning_rate": 1.1708882854450123e-05,
625
+ "loss": 0.1602,
626
+ "step": 440
627
+ },
628
+ {
629
+ "epoch": 1.8016194331983806,
630
+ "grad_norm": 1.0432922840118408,
631
+ "learning_rate": 1.1382735626725916e-05,
632
+ "loss": 0.1476,
633
+ "step": 445
634
+ },
635
+ {
636
+ "epoch": 1.8218623481781377,
637
+ "grad_norm": 0.9907374382019043,
638
+ "learning_rate": 1.105839428897216e-05,
639
+ "loss": 0.1348,
640
+ "step": 450
641
+ },
642
+ {
643
+ "epoch": 1.8421052631578947,
644
+ "grad_norm": 1.3727444410324097,
645
+ "learning_rate": 1.0736020765977434e-05,
646
+ "loss": 0.138,
647
+ "step": 455
648
+ },
649
+ {
650
+ "epoch": 1.8623481781376519,
651
+ "grad_norm": 0.8381685018539429,
652
+ "learning_rate": 1.0415776000114716e-05,
653
+ "loss": 0.1205,
654
+ "step": 460
655
+ },
656
+ {
657
+ "epoch": 1.882591093117409,
658
+ "grad_norm": 1.226954698562622,
659
+ "learning_rate": 1.0097819870992196e-05,
660
+ "loss": 0.1286,
661
+ "step": 465
662
+ },
663
+ {
664
+ "epoch": 1.902834008097166,
665
+ "grad_norm": 1.1794142723083496,
666
+ "learning_rate": 9.782311115634706e-06,
667
+ "loss": 0.1307,
668
+ "step": 470
669
+ },
670
+ {
671
+ "epoch": 1.9230769230769231,
672
+ "grad_norm": 1.1647013425827026,
673
+ "learning_rate": 9.469407249235532e-06,
674
+ "loss": 0.1161,
675
+ "step": 475
676
+ },
677
+ {
678
+ "epoch": 1.9433198380566803,
679
+ "grad_norm": 0.8942193388938904,
680
+ "learning_rate": 9.1592644865182e-06,
681
+ "loss": 0.1275,
682
+ "step": 480
683
+ },
684
+ {
685
+ "epoch": 1.9635627530364372,
686
+ "grad_norm": 1.0155425071716309,
687
+ "learning_rate": 8.852037663747595e-06,
688
+ "loss": 0.1149,
689
+ "step": 485
690
+ },
691
+ {
692
+ "epoch": 1.9838056680161942,
693
+ "grad_norm": 1.2870362997055054,
694
+ "learning_rate": 8.54788016142915e-06,
695
+ "loss": 0.1024,
696
+ "step": 490
697
+ },
698
+ {
699
+ "epoch": 2.0040485829959516,
700
+ "grad_norm": 0.8725767731666565,
701
+ "learning_rate": 8.246943827734899e-06,
702
+ "loss": 0.1038,
703
+ "step": 495
704
+ },
705
+ {
706
+ "epoch": 2.0242914979757085,
707
+ "grad_norm": 0.7810032367706299,
708
+ "learning_rate": 7.94937890269453e-06,
709
+ "loss": 0.0719,
710
+ "step": 500
711
+ },
712
+ {
713
+ "epoch": 2.0445344129554655,
714
+ "grad_norm": 0.8347038626670837,
715
+ "learning_rate": 7.655333943189218e-06,
716
+ "loss": 0.0925,
717
+ "step": 505
718
+ },
719
+ {
720
+ "epoch": 2.064777327935223,
721
+ "grad_norm": 0.7739137411117554,
722
+ "learning_rate": 7.364955748785817e-06,
723
+ "loss": 0.0933,
724
+ "step": 510
725
+ },
726
+ {
727
+ "epoch": 2.08502024291498,
728
+ "grad_norm": 0.864008903503418,
729
+ "learning_rate": 7.078389288448384e-06,
730
+ "loss": 0.082,
731
+ "step": 515
732
+ },
733
+ {
734
+ "epoch": 2.1052631578947367,
735
+ "grad_norm": 0.9412100911140442,
736
+ "learning_rate": 6.795777628163599e-06,
737
+ "loss": 0.0867,
738
+ "step": 520
739
+ },
740
+ {
741
+ "epoch": 2.125506072874494,
742
+ "grad_norm": 0.9862967729568481,
743
+ "learning_rate": 6.517261859516188e-06,
744
+ "loss": 0.0805,
745
+ "step": 525
746
+ },
747
+ {
748
+ "epoch": 2.145748987854251,
749
+ "grad_norm": 0.900925874710083,
750
+ "learning_rate": 6.242981029250131e-06,
751
+ "loss": 0.0813,
752
+ "step": 530
753
+ },
754
+ {
755
+ "epoch": 2.165991902834008,
756
+ "grad_norm": 0.9090055227279663,
757
+ "learning_rate": 5.973072069850686e-06,
758
+ "loss": 0.0867,
759
+ "step": 535
760
+ },
761
+ {
762
+ "epoch": 2.1862348178137654,
763
+ "grad_norm": 0.8485679030418396,
764
+ "learning_rate": 5.707669731181955e-06,
765
+ "loss": 0.0782,
766
+ "step": 540
767
+ },
768
+ {
769
+ "epoch": 2.2064777327935223,
770
+ "grad_norm": 0.8982809782028198,
771
+ "learning_rate": 5.4469065132141025e-06,
772
+ "loss": 0.0749,
773
+ "step": 545
774
+ },
775
+ {
776
+ "epoch": 2.2267206477732793,
777
+ "grad_norm": 0.8604884743690491,
778
+ "learning_rate": 5.190912599873818e-06,
779
+ "loss": 0.0849,
780
+ "step": 550
781
+ },
782
+ {
783
+ "epoch": 2.246963562753036,
784
+ "grad_norm": 0.7159515023231506,
785
+ "learning_rate": 4.93981579405105e-06,
786
+ "loss": 0.0867,
787
+ "step": 555
788
+ },
789
+ {
790
+ "epoch": 2.2672064777327936,
791
+ "grad_norm": 0.9456787109375,
792
+ "learning_rate": 4.693741453794433e-06,
793
+ "loss": 0.0803,
794
+ "step": 560
795
+ },
796
+ {
797
+ "epoch": 2.2874493927125505,
798
+ "grad_norm": 0.7104689478874207,
799
+ "learning_rate": 4.452812429727313e-06,
800
+ "loss": 0.0827,
801
+ "step": 565
802
+ },
803
+ {
804
+ "epoch": 2.3076923076923075,
805
+ "grad_norm": 0.6977279782295227,
806
+ "learning_rate": 4.21714900371556e-06,
807
+ "loss": 0.0771,
808
+ "step": 570
809
+ },
810
+ {
811
+ "epoch": 2.327935222672065,
812
+ "grad_norm": 0.741640567779541,
813
+ "learning_rate": 3.986868828817818e-06,
814
+ "loss": 0.0812,
815
+ "step": 575
816
+ },
817
+ {
818
+ "epoch": 2.348178137651822,
819
+ "grad_norm": 0.7973425984382629,
820
+ "learning_rate": 3.7620868705481586e-06,
821
+ "loss": 0.0738,
822
+ "step": 580
823
+ },
824
+ {
825
+ "epoch": 2.3684210526315788,
826
+ "grad_norm": 0.8517425656318665,
827
+ "learning_rate": 3.5429153494805087e-06,
828
+ "loss": 0.0763,
829
+ "step": 585
830
+ },
831
+ {
832
+ "epoch": 2.388663967611336,
833
+ "grad_norm": 0.8154937624931335,
834
+ "learning_rate": 3.329463685223411e-06,
835
+ "loss": 0.0695,
836
+ "step": 590
837
+ },
838
+ {
839
+ "epoch": 2.408906882591093,
840
+ "grad_norm": 0.728950023651123,
841
+ "learning_rate": 3.12183844179316e-06,
842
+ "loss": 0.0721,
843
+ "step": 595
844
+ },
845
+ {
846
+ "epoch": 2.42914979757085,
847
+ "grad_norm": 0.7380397915840149,
848
+ "learning_rate": 2.9201432744126074e-06,
849
+ "loss": 0.066,
850
+ "step": 600
851
+ },
852
+ {
853
+ "epoch": 2.4493927125506074,
854
+ "grad_norm": 0.6809558868408203,
855
+ "learning_rate": 2.7244788777621326e-06,
856
+ "loss": 0.0704,
857
+ "step": 605
858
+ },
859
+ {
860
+ "epoch": 2.4696356275303644,
861
+ "grad_norm": 0.7693683505058289,
862
+ "learning_rate": 2.5349429357085952e-06,
863
+ "loss": 0.0699,
864
+ "step": 610
865
+ },
866
+ {
867
+ "epoch": 2.4898785425101213,
868
+ "grad_norm": 0.9658976793289185,
869
+ "learning_rate": 2.3516300725375016e-06,
870
+ "loss": 0.0682,
871
+ "step": 615
872
+ },
873
+ {
874
+ "epoch": 2.5101214574898787,
875
+ "grad_norm": 0.8384422659873962,
876
+ "learning_rate": 2.174631805712576e-06,
877
+ "loss": 0.073,
878
+ "step": 620
879
+ },
880
+ {
881
+ "epoch": 2.5303643724696356,
882
+ "grad_norm": 0.7254630923271179,
883
+ "learning_rate": 2.0040365001864074e-06,
884
+ "loss": 0.0589,
885
+ "step": 625
886
+ },
887
+ {
888
+ "epoch": 2.5506072874493926,
889
+ "grad_norm": 0.7859408855438232,
890
+ "learning_rate": 1.8399293242849635e-06,
891
+ "loss": 0.0692,
892
+ "step": 630
893
+ },
894
+ {
895
+ "epoch": 2.57085020242915,
896
+ "grad_norm": 0.8682908415794373,
897
+ "learning_rate": 1.6823922071879932e-06,
898
+ "loss": 0.0794,
899
+ "step": 635
900
+ },
901
+ {
902
+ "epoch": 2.591093117408907,
903
+ "grad_norm": 0.8448325395584106,
904
+ "learning_rate": 1.5315037980265478e-06,
905
+ "loss": 0.067,
906
+ "step": 640
907
+ },
908
+ {
909
+ "epoch": 2.611336032388664,
910
+ "grad_norm": 0.6050984859466553,
911
+ "learning_rate": 1.3873394266180377e-06,
912
+ "loss": 0.0629,
913
+ "step": 645
914
+ },
915
+ {
916
+ "epoch": 2.6315789473684212,
917
+ "grad_norm": 0.6703817248344421,
918
+ "learning_rate": 1.2499710658584296e-06,
919
+ "loss": 0.066,
920
+ "step": 650
921
+ },
922
+ {
923
+ "epoch": 2.651821862348178,
924
+ "grad_norm": 0.7048584222793579,
925
+ "learning_rate": 1.119467295790363e-06,
926
+ "loss": 0.0604,
927
+ "step": 655
928
+ },
929
+ {
930
+ "epoch": 2.672064777327935,
931
+ "grad_norm": 0.7447172999382019,
932
+ "learning_rate": 9.958932693651168e-07,
933
+ "loss": 0.0679,
934
+ "step": 660
935
+ },
936
+ {
937
+ "epoch": 2.6923076923076925,
938
+ "grad_norm": 0.789459228515625,
939
+ "learning_rate": 8.793106799155187e-07,
940
+ "loss": 0.065,
941
+ "step": 665
942
+ },
943
+ {
944
+ "epoch": 2.7125506072874495,
945
+ "grad_norm": 0.440491646528244,
946
+ "learning_rate": 7.697777303560699e-07,
947
+ "loss": 0.055,
948
+ "step": 670
949
+ },
950
+ {
951
+ "epoch": 2.7327935222672064,
952
+ "grad_norm": 0.6782566905021667,
953
+ "learning_rate": 6.673491041255874e-07,
954
+ "loss": 0.0676,
955
+ "step": 675
956
+ },
957
+ {
958
+ "epoch": 2.753036437246964,
959
+ "grad_norm": 0.6501054167747498,
960
+ "learning_rate": 5.720759378869455e-07,
961
+ "loss": 0.072,
962
+ "step": 680
963
+ },
964
+ {
965
+ "epoch": 2.7732793522267207,
966
+ "grad_norm": 0.6169021725654602,
967
+ "learning_rate": 4.840057959975169e-07,
968
+ "loss": 0.0604,
969
+ "step": 685
970
+ },
971
+ {
972
+ "epoch": 2.7935222672064777,
973
+ "grad_norm": 0.6344029903411865,
974
+ "learning_rate": 4.031826467630545e-07,
975
+ "loss": 0.0584,
976
+ "step": 690
977
+ },
978
+ {
979
+ "epoch": 2.813765182186235,
980
+ "grad_norm": 0.6110345125198364,
981
+ "learning_rate": 3.2964684048685523e-07,
982
+ "loss": 0.0644,
983
+ "step": 695
984
+ },
985
+ {
986
+ "epoch": 2.834008097165992,
987
+ "grad_norm": 0.7080497741699219,
988
+ "learning_rate": 2.6343508932521243e-07,
989
+ "loss": 0.0591,
990
+ "step": 700
991
+ },
992
+ {
993
+ "epoch": 2.854251012145749,
994
+ "grad_norm": 0.8108674883842468,
995
+ "learning_rate": 2.0458044895916516e-07,
996
+ "loss": 0.0655,
997
+ "step": 705
998
+ },
999
+ {
1000
+ "epoch": 2.8744939271255063,
1001
+ "grad_norm": 0.5349428057670593,
1002
+ "learning_rate": 1.5311230209171078e-07,
1003
+ "loss": 0.0664,
1004
+ "step": 710
1005
+ },
1006
+ {
1007
+ "epoch": 2.8947368421052633,
1008
+ "grad_norm": 0.7437654137611389,
1009
+ "learning_rate": 1.0905634377873563e-07,
1010
+ "loss": 0.0665,
1011
+ "step": 715
1012
+ },
1013
+ {
1014
+ "epoch": 2.91497975708502,
1015
+ "grad_norm": 0.7719464898109436,
1016
+ "learning_rate": 7.243456860096476e-08,
1017
+ "loss": 0.0671,
1018
+ "step": 720
1019
+ },
1020
+ {
1021
+ "epoch": 2.9352226720647776,
1022
+ "grad_norm": 0.7235406637191772,
1023
+ "learning_rate": 4.326525968334216e-08,
1024
+ "loss": 0.0644,
1025
+ "step": 725
1026
+ },
1027
+ {
1028
+ "epoch": 2.9554655870445345,
1029
+ "grad_norm": 0.5301565527915955,
1030
+ "learning_rate": 2.1562979567330554e-08,
1031
+ "loss": 0.0677,
1032
+ "step": 730
1033
+ },
1034
+ {
1035
+ "epoch": 2.9757085020242915,
1036
+ "grad_norm": 0.5968860387802124,
1037
+ "learning_rate": 7.338562940680249e-09,
1038
+ "loss": 0.0607,
1039
+ "step": 735
1040
+ },
1041
+ {
1042
+ "epoch": 2.9959514170040484,
1043
+ "grad_norm": 0.7047298550605774,
1044
+ "learning_rate": 5.991112283026956e-10,
1045
+ "loss": 0.064,
1046
+ "step": 740
1047
+ },
1048
+ {
1049
+ "epoch": 3.0,
1050
+ "step": 741,
1051
+ "total_flos": 9.597313091213722e+17,
1052
+ "train_loss": 0.37897290995246485,
1053
+ "train_runtime": 452.2093,
1054
+ "train_samples_per_second": 52.396,
1055
+ "train_steps_per_second": 1.639
1056
+ }
1057
+ ],
1058
+ "logging_steps": 5,
1059
+ "max_steps": 741,
1060
+ "num_input_tokens_seen": 0,
1061
+ "num_train_epochs": 3,
1062
+ "save_steps": 20000,
1063
+ "stateful_callbacks": {
1064
+ "TrainerControl": {
1065
+ "args": {
1066
+ "should_epoch_stop": false,
1067
+ "should_evaluate": false,
1068
+ "should_log": false,
1069
+ "should_save": false,
1070
+ "should_training_stop": false
1071
+ },
1072
+ "attributes": {}
1073
+ }
1074
+ },
1075
+ "total_flos": 9.597313091213722e+17,
1076
+ "train_batch_size": 2,
1077
+ "trial_name": null,
1078
+ "trial_params": null
1079
+ }
109_128_e3_3e-5/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04eaa9878f2d428b6edf05ba33e3bc3b7e2e0d981855ad12cba343e4545ac11d
3
+ size 8273
109_128_e3_3e-5/vocab.json ADDED
The diff for this file is too large to render. See raw diff