WhyParabola commited on
Commit
a60151f
·
verified ·
1 Parent(s): 72678bf

Add 11 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ training-metrics.png filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: meta-llama/Llama-4-Scout-17B-16E-Instruct
3
+ library_name: peft
4
+ license: other
5
+ tags:
6
+ - lora
7
+ - peft
8
+ - adapter
9
+ - adaption
10
+ ---
11
+
12
+ # adaption_crop_disease_reasoning
13
+
14
+ ## Model Training
15
+
16
+ A LORA adapter for `meta-llama/Llama-4-Scout-17B-16E-Instruct`. This model was trained with SFT using [Adaption](https://adaptionlabs.ai)'s AutoScientist on the crop_disease_reasoning dataset.
17
+
18
+
19
+ ![Training metrics](training-metrics.png)
20
+
21
+ ### AutoScientist Config
22
+
23
+ ```json
24
+ {
25
+ "job_id": "eb780706-a44d-459d-8ce6-c666e459dc76",
26
+ "training_experiment_id": "9aa3a4bd-67ac-4a69-afc1-06cc11b3320b",
27
+ "original_model_name": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
28
+ "trained_model_name": "adaption_crop_disease_reasoning",
29
+ "training_method": "sft",
30
+ "training_type": "lora",
31
+ "data_format": "chat",
32
+ "hyperparams": {
33
+ "lora": "true",
34
+ "lora_r": 64,
35
+ "n_evals": 5,
36
+ "n_epochs": 4,
37
+ "batch_size": "max",
38
+ "lora_alpha": 128,
39
+ "lora_dropout": 0,
40
+ "min_lr_ratio": 0.1,
41
+ "warmup_ratio": 0.03,
42
+ "weight_decay": 0.02,
43
+ "learning_rate": 0.0001,
44
+ "max_grad_norm": 1,
45
+ "base_model_size": "109B",
46
+ "train_on_inputs": "false",
47
+ "training_method": "sft",
48
+ "lr_scheduler_type": "cosine",
49
+ "scheduler_num_cycles": 0.5,
50
+ "lora_trainable_modules": "k_proj,o_proj,q_proj,v_proj,shared_expert.gate_proj,shared_expert.up_proj,shared_expert.down_proj,feed_forward.gate_proj,feed_forward.up_proj,feed_forward.down_proj"
51
+ }
52
+ }
53
+ ```
54
+
55
+ ## Training Data
56
+
57
+ The model was trained on 34,323 rows of adapted data with the following domain distribution: agriculture (100%).
58
+
59
+ ## Model Evaluation
60
+
61
+ The model was evaluated on an in-distribution held-out test set as well as a broader domain-specific test set to measure generalization.
62
+
63
+
64
+ ![Win rates](win-rates.png)
65
+
66
+
67
+ ## How to use
68
+
69
+ ```bash
70
+ pip install torch transformers peft
71
+ ```
72
+
73
+ ```python
74
+ import torch
75
+ from transformers import AutoModelForCausalLM, AutoTokenizer
76
+ from peft import PeftModel
77
+
78
+ BASE = "meta-llama/Llama-4-Scout-17B-16E-Instruct"
79
+ ADAPTER = "<this-repo-id>"
80
+
81
+ device = "cuda" if torch.cuda.is_available() else "cpu"
82
+ dtype = torch.float32 if device == "cpu" else torch.bfloat16
83
+
84
+ base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
85
+ model = PeftModel.from_pretrained(base, ADAPTER)
86
+ # Optional: merge the LoRA weights into the base for faster inference
87
+ model = model.merge_and_unload()
88
+ model.eval()
89
+
90
+ tokenizer = AutoTokenizer.from_pretrained(BASE)
91
+ messages = [{"role": "user", "content": "Hello!"}]
92
+ text = tokenizer.apply_chat_template(
93
+ messages, tokenize=False, add_generation_prompt=True)
94
+ inputs = tokenizer(text, return_tensors="pt").to(device)
95
+
96
+ with torch.inference_mode():
97
+ out = model.generate(**inputs, max_new_tokens=512)
98
+ print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
99
+ ```
adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "togethercomputer/Llama-4-Scout-17B-16E-Instruct_bnb_4bit",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": [],
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": 128,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 64,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "q_proj",
28
+ "o_proj",
29
+ "feed_forward.up_proj",
30
+ "feed_forward.down_proj",
31
+ "v_proj",
32
+ "shared_expert.down_proj",
33
+ "shared_expert.gate_proj",
34
+ "k_proj",
35
+ "shared_expert.up_proj",
36
+ "feed_forward.gate_proj"
37
+ ],
38
+ "task_type": "CAUSAL_LM",
39
+ "trainable_token_indices": null,
40
+ "use_dora": false,
41
+ "use_rslora": false
42
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7a557e4c368cce5c8d1cc1d896a64b1105562ce381d738e981d2008858153b0
3
+ size 893484120
chat_template.jinja ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token }}
2
+ {%- if custom_tools is defined %}
3
+ {%- set tools = custom_tools %}
4
+ {%- endif %}
5
+ {%- if not tools_in_user_message is defined %}
6
+ {%- set tools_in_user_message = true %}
7
+ {%- endif %}
8
+ {%- if not date_string is defined %}
9
+ {%- if strftime_now is defined %}
10
+ {%- set date_string = strftime_now("%d %b %Y") %}
11
+ {%- else %}
12
+ {%- set date_string = "26 Jul 2024" %}
13
+ {%- endif %}
14
+ {%- endif %}
15
+ {%- if not tools is defined %}
16
+ {%- set tools = none %}
17
+ {%- endif %}
18
+
19
+ {#- This block extracts the system message, so we can slot it into the right place. #}
20
+ {%- if messages[0]['role'] == 'system' %}
21
+ {%- if messages[0]['content'] is string %}
22
+ {%- set system_message = messages[0]['content']|trim %}
23
+ {%- else %}
24
+ {#- FIXME: The processor requires an array, always. #}
25
+ {%- set system_message = messages[0]['content'][0]['text']|trim %}
26
+ {%- endif %}
27
+ {%- set messages = messages[1:] %}
28
+ {%- set user_supplied_system_message = true %}
29
+ {%- else %}
30
+ {%- set system_message = "" %}
31
+ {%- set user_supplied_system_message = false %}
32
+ {%- endif %}
33
+
34
+ {#- System message if the user supplied one #}
35
+ {%- if user_supplied_system_message %}
36
+ {{- "<|header_start|>system<|header_end|>\n\n" }}
37
+ {%- if tools is not none %}
38
+ {{- "Environment: ipython\n" }}
39
+ {%- endif %}
40
+ {%- if tools is not none and not tools_in_user_message %}
41
+ {{- "You have access to the following functions. To call a function, please respond with JSON for a function call." }}
42
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
43
+ {{- "Do not use variables.\n\n" }}
44
+ {%- for t in tools %}
45
+ {{- t | tojson(indent=4) }}
46
+ {{- "\n\n" }}
47
+ {%- endfor %}
48
+ {%- endif %}
49
+ {{- system_message }}
50
+ {{- "<|eot|>" }}
51
+ {%- endif %}
52
+
53
+ {#- Custom tools are passed in a user message with some extra guidance #}
54
+ {%- if tools_in_user_message and not tools is none %}
55
+ {#- Extract the first user message so we can plug it in here #}
56
+ {%- if messages | length != 0 %}
57
+ {%- set first_user_message = messages[0]['content']|trim %}
58
+ {%- set messages = messages[1:] %}
59
+ {%- else %}
60
+ {{- raise_exception("Cannot put tools in the first user message when there's no first user message!") }}
61
+ {%- endif %}
62
+ {{- '<|header_start|>user<|header_end|>\n\n' -}}
63
+ {{- "Given the following functions, please respond with a JSON for a function call " }}
64
+ {{- "with its proper arguments that best answers the given prompt.\n\n" }}
65
+ {{- 'Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}.' }}
66
+ {{- "Do not use variables.\n\n" }}
67
+ {%- for t in tools %}
68
+ {{- t | tojson(indent=4) }}
69
+ {{- "\n\n" }}
70
+ {%- endfor %}
71
+ {{- first_user_message + "<|eot|>"}}
72
+ {%- endif %}
73
+
74
+ {%- for message in messages %}
75
+ {%- if not (message.role == 'ipython' or message.role == 'tool' or 'tool_calls' in message) %}
76
+ {{- '<|header_start|>' + message['role'] + '<|header_end|>\n\n' }}
77
+ {%- if message['content'] is string %}
78
+ {{- message['content'] }}
79
+ {%- else %}
80
+ {%- for content in message['content'] %}
81
+ {%- if content['type'] == 'image' %}
82
+ {{- '<|image|>' }}
83
+ {%- elif content['type'] == 'text' %}
84
+ {{- content['text'] }}
85
+ {%- endif %}
86
+ {%- endfor %}
87
+ {%- endif %}
88
+ {{- "<|eot|>" }}
89
+ {%- elif 'tool_calls' in message and message.tool_calls|length > 0 %}
90
+ {{- '<|header_start|>assistant<|header_end|>\n\n' -}}
91
+ {{- '<|python_start|>' }}
92
+ {%- if message['content'] is string %}
93
+ {{- message['content'] }}
94
+ {%- else %}
95
+ {%- for content in message['content'] %}
96
+ {%- if content['type'] == 'image' %}
97
+ {{- '<|image|>' }}
98
+ {%- elif content['type'] == 'text' %}
99
+ {{- content['text'] }}
100
+ {%- endif %}
101
+ {%- endfor %}
102
+ {%- endif %}
103
+ {{- '<|python_end|>' }}
104
+ {%- for tool_call in message.tool_calls %}
105
+ {{- '{"name": "' + tool_call.function.name + '", ' }}
106
+ {{- '"parameters": ' }}
107
+ {{- tool_call.function.arguments | tojson }}
108
+ {{- "}" }}
109
+ {%- endfor %}
110
+ {{- "<|eot|>" }}
111
+ {%- elif message.role == "tool" or message.role == "ipython" %}
112
+ {{- "<|header_start|>ipython<|header_end|>\n\n" }}
113
+ {%- if message.content is mapping or message.content is iterable %}
114
+ {{- message.content | tojson }}
115
+ {%- else %}
116
+ {{- message.content }}
117
+ {%- endif %}
118
+ {{- "<|eot|>" }}
119
+ {%- endif %}
120
+ {%- endfor %}
121
+ {%- if add_generation_prompt %}
122
+ {{- '<|header_start|>assistant<|header_end|>\n\n' }}
123
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Llama4ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_chunk_size": 8192,
7
+ "attention_dropout": 0.0,
8
+ "attn_scale": 0.1,
9
+ "attn_temperature_tuning": true,
10
+ "bos_token_id": 200000,
11
+ "cache_implementation": "hybrid",
12
+ "dtype": "bfloat16",
13
+ "eos_token_id": 200008,
14
+ "floor_scale": 8192,
15
+ "for_llm_compressor": false,
16
+ "head_dim": 128,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 5120,
19
+ "initializer_range": 0.02,
20
+ "interleave_moe_layer_step": 1,
21
+ "intermediate_size": 8192,
22
+ "intermediate_size_mlp": 16384,
23
+ "layer_types": [
24
+ "chunked_attention",
25
+ "chunked_attention",
26
+ "chunked_attention",
27
+ "full_attention",
28
+ "chunked_attention",
29
+ "chunked_attention",
30
+ "chunked_attention",
31
+ "full_attention",
32
+ "chunked_attention",
33
+ "chunked_attention",
34
+ "chunked_attention",
35
+ "full_attention",
36
+ "chunked_attention",
37
+ "chunked_attention",
38
+ "chunked_attention",
39
+ "full_attention",
40
+ "chunked_attention",
41
+ "chunked_attention",
42
+ "chunked_attention",
43
+ "full_attention",
44
+ "chunked_attention",
45
+ "chunked_attention",
46
+ "chunked_attention",
47
+ "full_attention",
48
+ "chunked_attention",
49
+ "chunked_attention",
50
+ "chunked_attention",
51
+ "full_attention",
52
+ "chunked_attention",
53
+ "chunked_attention",
54
+ "chunked_attention",
55
+ "full_attention",
56
+ "chunked_attention",
57
+ "chunked_attention",
58
+ "chunked_attention",
59
+ "full_attention",
60
+ "chunked_attention",
61
+ "chunked_attention",
62
+ "chunked_attention",
63
+ "full_attention",
64
+ "chunked_attention",
65
+ "chunked_attention",
66
+ "chunked_attention",
67
+ "full_attention",
68
+ "chunked_attention",
69
+ "chunked_attention",
70
+ "chunked_attention",
71
+ "full_attention"
72
+ ],
73
+ "max_position_embeddings": 10485760,
74
+ "model_type": "llama4_text",
75
+ "moe_layers": [
76
+ 0,
77
+ 1,
78
+ 2,
79
+ 3,
80
+ 4,
81
+ 5,
82
+ 6,
83
+ 7,
84
+ 8,
85
+ 9,
86
+ 10,
87
+ 11,
88
+ 12,
89
+ 13,
90
+ 14,
91
+ 15,
92
+ 16,
93
+ 17,
94
+ 18,
95
+ 19,
96
+ 20,
97
+ 21,
98
+ 22,
99
+ 23,
100
+ 24,
101
+ 25,
102
+ 26,
103
+ 27,
104
+ 28,
105
+ 29,
106
+ 30,
107
+ 31,
108
+ 32,
109
+ 33,
110
+ 34,
111
+ 35,
112
+ 36,
113
+ 37,
114
+ 38,
115
+ 39,
116
+ 40,
117
+ 41,
118
+ 42,
119
+ 43,
120
+ 44,
121
+ 45,
122
+ 46,
123
+ 47
124
+ ],
125
+ "no_rope_layer_interval": 4,
126
+ "no_rope_layers": [
127
+ 1,
128
+ 1,
129
+ 1,
130
+ 0,
131
+ 1,
132
+ 1,
133
+ 1,
134
+ 0,
135
+ 1,
136
+ 1,
137
+ 1,
138
+ 0,
139
+ 1,
140
+ 1,
141
+ 1,
142
+ 0,
143
+ 1,
144
+ 1,
145
+ 1,
146
+ 0,
147
+ 1,
148
+ 1,
149
+ 1,
150
+ 0,
151
+ 1,
152
+ 1,
153
+ 1,
154
+ 0,
155
+ 1,
156
+ 1,
157
+ 1,
158
+ 0,
159
+ 1,
160
+ 1,
161
+ 1,
162
+ 0,
163
+ 1,
164
+ 1,
165
+ 1,
166
+ 0,
167
+ 1,
168
+ 1,
169
+ 1,
170
+ 0,
171
+ 1,
172
+ 1,
173
+ 1,
174
+ 0
175
+ ],
176
+ "num_attention_heads": 40,
177
+ "num_experts_per_tok": 1,
178
+ "num_hidden_layers": 48,
179
+ "num_key_value_heads": 8,
180
+ "num_local_experts": 16,
181
+ "output_router_logits": false,
182
+ "pad_token_id": 200018,
183
+ "quantization_config": {
184
+ "_load_in_4bit": true,
185
+ "_load_in_8bit": false,
186
+ "bnb_4bit_compute_dtype": "bfloat16",
187
+ "bnb_4bit_quant_storage": "bfloat16",
188
+ "bnb_4bit_quant_type": "nf4",
189
+ "bnb_4bit_use_double_quant": false,
190
+ "llm_int8_enable_fp32_cpu_offload": false,
191
+ "llm_int8_has_fp16_weight": false,
192
+ "llm_int8_skip_modules": null,
193
+ "llm_int8_threshold": 6.0,
194
+ "load_in_4bit": true,
195
+ "load_in_8bit": false,
196
+ "quant_method": "bitsandbytes"
197
+ },
198
+ "rms_norm_eps": 1e-05,
199
+ "rope_parameters": {
200
+ "factor": 16.0,
201
+ "high_freq_factor": 1.0,
202
+ "low_freq_factor": 1.0,
203
+ "original_max_position_embeddings": 8192,
204
+ "rope_theta": 500000.0,
205
+ "rope_type": "llama3"
206
+ },
207
+ "router_aux_loss_coef": 0.001,
208
+ "router_jitter_noise": 0.0,
209
+ "tie_word_embeddings": false,
210
+ "transformers_version": "5.10.1",
211
+ "use_cache": false,
212
+ "use_qk_norm": true,
213
+ "vocab_size": 202048,
214
+ "torch_dtype": "bfloat16"
215
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|begin_of_text|>",
3
+ "eos_token": "<|eot|>",
4
+ "pad_token": "<|finetune_right_pad|>"
5
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:172c9eb4beafc72601690da3ccfcede5c2e6806a8d5ec1fca33e22acea8023a4
3
+ size 27948578
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|begin_of_text|>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "<|eot|>",
6
+ "is_local": false,
7
+ "local_files_only": true,
8
+ "model_input_names": [
9
+ "input_ids",
10
+ "attention_mask"
11
+ ],
12
+ "model_max_length": 10485760,
13
+ "pad_token": "<|finetune_right_pad|>",
14
+ "padding_side": "right",
15
+ "processor_class": "Llama4Processor",
16
+ "tokenizer_class": "TokenizersBackend"
17
+ }
trainer_state.json ADDED
@@ -0,0 +1,1642 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 44,
7
+ "global_step": 224,
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.017857142857142856,
14
+ "grad_norm": 0.31462591886520386,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.7392578125,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.03571428571428571,
21
+ "grad_norm": 0.2711670398712158,
22
+ "learning_rate": 1.4285714285714285e-05,
23
+ "loss": 1.6328125,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.05357142857142857,
28
+ "grad_norm": 0.30870506167411804,
29
+ "learning_rate": 2.857142857142857e-05,
30
+ "loss": 1.6630859375,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.07142857142857142,
35
+ "grad_norm": 0.28610464930534363,
36
+ "learning_rate": 4.2857142857142856e-05,
37
+ "loss": 1.658203125,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.08928571428571429,
42
+ "grad_norm": 0.20997090637683868,
43
+ "learning_rate": 5.714285714285714e-05,
44
+ "loss": 1.6162109375,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.10714285714285714,
49
+ "grad_norm": 0.1340269297361374,
50
+ "learning_rate": 7.142857142857143e-05,
51
+ "loss": 1.5986328125,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.125,
56
+ "grad_norm": 0.11159807443618774,
57
+ "learning_rate": 8.571428571428571e-05,
58
+ "loss": 1.490234375,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.14285714285714285,
63
+ "grad_norm": 0.15790338814258575,
64
+ "learning_rate": 0.0001,
65
+ "loss": 1.48046875,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.16071428571428573,
70
+ "grad_norm": 0.21403393149375916,
71
+ "learning_rate": 9.99952842018222e-05,
72
+ "loss": 1.4365234375,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.17857142857142858,
77
+ "grad_norm": 0.18980804085731506,
78
+ "learning_rate": 9.998113779567773e-05,
79
+ "loss": 1.4560546875,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.19642857142857142,
84
+ "grad_norm": 0.11710498481988907,
85
+ "learning_rate": 9.995756374652646e-05,
86
+ "loss": 1.3837890625,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.21428571428571427,
91
+ "grad_norm": 0.08485613018274307,
92
+ "learning_rate": 9.992456699527763e-05,
93
+ "loss": 1.4248046875,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.23214285714285715,
98
+ "grad_norm": 0.07681010663509369,
99
+ "learning_rate": 9.988215445775436e-05,
100
+ "loss": 1.404296875,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.25,
105
+ "grad_norm": 0.06381040811538696,
106
+ "learning_rate": 9.983033502324401e-05,
107
+ "loss": 1.31787109375,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.26785714285714285,
112
+ "grad_norm": 0.2749612033367157,
113
+ "learning_rate": 9.976911955263529e-05,
114
+ "loss": 1.1463623046875,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.2857142857142857,
119
+ "grad_norm": 0.07103897631168365,
120
+ "learning_rate": 9.969852087614172e-05,
121
+ "loss": 1.30078125,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.30357142857142855,
126
+ "grad_norm": 0.06604181230068207,
127
+ "learning_rate": 9.961855379061266e-05,
128
+ "loss": 1.24951171875,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.32142857142857145,
133
+ "grad_norm": 0.06762582063674927,
134
+ "learning_rate": 9.952923505643191e-05,
135
+ "loss": 1.380859375,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.3392857142857143,
140
+ "grad_norm": 0.0505656860768795,
141
+ "learning_rate": 9.9430583394005e-05,
142
+ "loss": 1.318359375,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.35714285714285715,
147
+ "grad_norm": 0.04348813742399216,
148
+ "learning_rate": 9.932261947983547e-05,
149
+ "loss": 1.296875,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.375,
154
+ "grad_norm": 0.04398291930556297,
155
+ "learning_rate": 9.92053659421913e-05,
156
+ "loss": 1.3359375,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.39285714285714285,
161
+ "grad_norm": 0.043604083359241486,
162
+ "learning_rate": 9.907884735636226e-05,
163
+ "loss": 1.265625,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.4107142857142857,
168
+ "grad_norm": 0.04494720697402954,
169
+ "learning_rate": 9.894309023950905e-05,
170
+ "loss": 1.14459228515625,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.42857142857142855,
175
+ "grad_norm": 0.0465690903365612,
176
+ "learning_rate": 9.879812304510566e-05,
177
+ "loss": 1.2802734375,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.44642857142857145,
182
+ "grad_norm": 0.03763221576809883,
183
+ "learning_rate": 9.864397615697568e-05,
184
+ "loss": 1.251953125,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.4642857142857143,
189
+ "grad_norm": 0.04064473882317543,
190
+ "learning_rate": 9.848068188292421e-05,
191
+ "loss": 1.2607421875,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.48214285714285715,
196
+ "grad_norm": 0.03627771884202957,
197
+ "learning_rate": 9.830827444796634e-05,
198
+ "loss": 1.1982421875,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.5,
203
+ "grad_norm": 0.03516250103712082,
204
+ "learning_rate": 9.812678998715397e-05,
205
+ "loss": 1.20654296875,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.5178571428571429,
210
+ "grad_norm": 0.03213035315275192,
211
+ "learning_rate": 9.793626653800219e-05,
212
+ "loss": 1.1690673828125,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.5357142857142857,
217
+ "grad_norm": 0.035089440643787384,
218
+ "learning_rate": 9.773674403251701e-05,
219
+ "loss": 1.24609375,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.5535714285714286,
224
+ "grad_norm": 0.03564055263996124,
225
+ "learning_rate": 9.752826428882581e-05,
226
+ "loss": 1.208984375,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.5714285714285714,
231
+ "grad_norm": 0.03575805202126503,
232
+ "learning_rate": 9.731087100241291e-05,
233
+ "loss": 1.2265625,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.5892857142857143,
238
+ "grad_norm": 0.035467199981212616,
239
+ "learning_rate": 9.708460973696108e-05,
240
+ "loss": 1.216796875,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.6071428571428571,
245
+ "grad_norm": 0.03591489419341087,
246
+ "learning_rate": 9.684952791480208e-05,
247
+ "loss": 1.2275390625,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.625,
252
+ "grad_norm": 0.03851291164755821,
253
+ "learning_rate": 9.660567480697717e-05,
254
+ "loss": 1.2255859375,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.6428571428571429,
259
+ "grad_norm": 0.03599183261394501,
260
+ "learning_rate": 9.635310152291039e-05,
261
+ "loss": 1.2216796875,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.6607142857142857,
266
+ "grad_norm": 0.03200181946158409,
267
+ "learning_rate": 9.609186099969655e-05,
268
+ "loss": 1.17236328125,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.6785714285714286,
273
+ "grad_norm": 0.032688844949007034,
274
+ "learning_rate": 9.582200799100601e-05,
275
+ "loss": 1.1484375,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.6964285714285714,
280
+ "grad_norm": 0.03375864028930664,
281
+ "learning_rate": 9.554359905560886e-05,
282
+ "loss": 1.20703125,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.7142857142857143,
287
+ "grad_norm": 0.04003170132637024,
288
+ "learning_rate": 9.525669254552067e-05,
289
+ "loss": 1.1796875,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.7321428571428571,
294
+ "grad_norm": 0.038663070648908615,
295
+ "learning_rate": 9.496134859377242e-05,
296
+ "loss": 1.208984375,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.75,
301
+ "grad_norm": 0.031495656818151474,
302
+ "learning_rate": 9.46576291018072e-05,
303
+ "loss": 1.05224609375,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.7678571428571429,
308
+ "grad_norm": 0.04218436777591705,
309
+ "learning_rate": 9.43455977265062e-05,
310
+ "loss": 1.1669921875,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.7857142857142857,
315
+ "grad_norm": 0.032447610050439835,
316
+ "learning_rate": 9.402531986684682e-05,
317
+ "loss": 1.12548828125,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.8035714285714286,
322
+ "grad_norm": 0.03663216531276703,
323
+ "learning_rate": 9.369686265019557e-05,
324
+ "loss": 1.142578125,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.8214285714285714,
329
+ "grad_norm": 0.03747383505105972,
330
+ "learning_rate": 9.336029491823884e-05,
331
+ "loss": 1.1171875,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.8392857142857143,
336
+ "grad_norm": 0.032268162816762924,
337
+ "learning_rate": 9.301568721255431e-05,
338
+ "loss": 1.142578125,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.8571428571428571,
343
+ "grad_norm": 0.04622168838977814,
344
+ "learning_rate": 9.266311175982595e-05,
345
+ "loss": 1.1728515625,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.8571428571428571,
350
+ "eval_loss": 1.14892578125,
351
+ "eval_runtime": 5.5238,
352
+ "eval_samples_per_second": 0.543,
353
+ "eval_steps_per_second": 0.181,
354
+ "step": 48
355
+ },
356
+ {
357
+ "epoch": 0.875,
358
+ "grad_norm": 0.039248574525117874,
359
+ "learning_rate": 9.230264245670615e-05,
360
+ "loss": 1.150390625,
361
+ "step": 49
362
+ },
363
+ {
364
+ "epoch": 0.8928571428571429,
365
+ "grad_norm": 0.04478568583726883,
366
+ "learning_rate": 9.193435485432745e-05,
367
+ "loss": 1.1494140625,
368
+ "step": 50
369
+ },
370
+ {
371
+ "epoch": 0.9107142857142857,
372
+ "grad_norm": 0.03433000668883324,
373
+ "learning_rate": 9.155832614246782e-05,
374
+ "loss": 1.119140625,
375
+ "step": 51
376
+ },
377
+ {
378
+ "epoch": 0.9285714285714286,
379
+ "grad_norm": 0.033498235046863556,
380
+ "learning_rate": 9.11746351333723e-05,
381
+ "loss": 1.12451171875,
382
+ "step": 52
383
+ },
384
+ {
385
+ "epoch": 0.9464285714285714,
386
+ "grad_norm": 0.04067613556981087,
387
+ "learning_rate": 9.07833622452348e-05,
388
+ "loss": 1.1171875,
389
+ "step": 53
390
+ },
391
+ {
392
+ "epoch": 0.9642857142857143,
393
+ "grad_norm": 0.04021085798740387,
394
+ "learning_rate": 9.038458948534298e-05,
395
+ "loss": 1.1357421875,
396
+ "step": 54
397
+ },
398
+ {
399
+ "epoch": 0.9821428571428571,
400
+ "grad_norm": 0.035040102899074554,
401
+ "learning_rate": 8.997840043289034e-05,
402
+ "loss": 1.11572265625,
403
+ "step": 55
404
+ },
405
+ {
406
+ "epoch": 1.0,
407
+ "grad_norm": 0.03852618858218193,
408
+ "learning_rate": 8.956488022145886e-05,
409
+ "loss": 1.1337890625,
410
+ "step": 56
411
+ },
412
+ {
413
+ "epoch": 1.0178571428571428,
414
+ "grad_norm": 0.04005853086709976,
415
+ "learning_rate": 8.914411552117559e-05,
416
+ "loss": 1.12109375,
417
+ "step": 57
418
+ },
419
+ {
420
+ "epoch": 1.0357142857142858,
421
+ "grad_norm": 0.03370766341686249,
422
+ "learning_rate": 8.871619452054753e-05,
423
+ "loss": 1.125,
424
+ "step": 58
425
+ },
426
+ {
427
+ "epoch": 1.0535714285714286,
428
+ "grad_norm": 0.03593919426202774,
429
+ "learning_rate": 8.828120690797799e-05,
430
+ "loss": 1.1064453125,
431
+ "step": 59
432
+ },
433
+ {
434
+ "epoch": 1.0714285714285714,
435
+ "grad_norm": 0.04067913070321083,
436
+ "learning_rate": 8.783924385296883e-05,
437
+ "loss": 1.08447265625,
438
+ "step": 60
439
+ },
440
+ {
441
+ "epoch": 1.0892857142857142,
442
+ "grad_norm": 0.03520175814628601,
443
+ "learning_rate": 8.739039798701195e-05,
444
+ "loss": 1.125,
445
+ "step": 61
446
+ },
447
+ {
448
+ "epoch": 1.1071428571428572,
449
+ "grad_norm": 0.04327214136719704,
450
+ "learning_rate": 8.693476338417483e-05,
451
+ "loss": 1.1181640625,
452
+ "step": 62
453
+ },
454
+ {
455
+ "epoch": 1.125,
456
+ "grad_norm": 0.03611943870782852,
457
+ "learning_rate": 8.64724355413832e-05,
458
+ "loss": 1.087890625,
459
+ "step": 63
460
+ },
461
+ {
462
+ "epoch": 1.1428571428571428,
463
+ "grad_norm": 0.03562260419130325,
464
+ "learning_rate": 8.600351135840589e-05,
465
+ "loss": 1.1181640625,
466
+ "step": 64
467
+ },
468
+ {
469
+ "epoch": 1.1607142857142858,
470
+ "grad_norm": 0.03648838773369789,
471
+ "learning_rate": 8.552808911754551e-05,
472
+ "loss": 1.08447265625,
473
+ "step": 65
474
+ },
475
+ {
476
+ "epoch": 1.1785714285714286,
477
+ "grad_norm": 0.03709696978330612,
478
+ "learning_rate": 8.504626846303918e-05,
479
+ "loss": 1.103515625,
480
+ "step": 66
481
+ },
482
+ {
483
+ "epoch": 1.1964285714285714,
484
+ "grad_norm": 0.034074269235134125,
485
+ "learning_rate": 8.455815038017428e-05,
486
+ "loss": 1.0595703125,
487
+ "step": 67
488
+ },
489
+ {
490
+ "epoch": 1.2142857142857142,
491
+ "grad_norm": 0.04193117842078209,
492
+ "learning_rate": 8.40638371741226e-05,
493
+ "loss": 1.068359375,
494
+ "step": 68
495
+ },
496
+ {
497
+ "epoch": 1.2321428571428572,
498
+ "grad_norm": 0.03742880001664162,
499
+ "learning_rate": 8.356343244849821e-05,
500
+ "loss": 1.08251953125,
501
+ "step": 69
502
+ },
503
+ {
504
+ "epoch": 1.25,
505
+ "grad_norm": 0.03593381866812706,
506
+ "learning_rate": 8.305704108364301e-05,
507
+ "loss": 1.0791015625,
508
+ "step": 70
509
+ },
510
+ {
511
+ "epoch": 1.2678571428571428,
512
+ "grad_norm": 0.21050015091896057,
513
+ "learning_rate": 8.254476921464484e-05,
514
+ "loss": 0.91876220703125,
515
+ "step": 71
516
+ },
517
+ {
518
+ "epoch": 1.2857142857142856,
519
+ "grad_norm": 0.03813980519771576,
520
+ "learning_rate": 8.20267242090924e-05,
521
+ "loss": 1.05322265625,
522
+ "step": 72
523
+ },
524
+ {
525
+ "epoch": 1.3035714285714286,
526
+ "grad_norm": 0.03416725993156433,
527
+ "learning_rate": 8.150301464457205e-05,
528
+ "loss": 1.0185546875,
529
+ "step": 73
530
+ },
531
+ {
532
+ "epoch": 1.3214285714285714,
533
+ "grad_norm": 0.04501667991280556,
534
+ "learning_rate": 8.097375028591093e-05,
535
+ "loss": 1.119140625,
536
+ "step": 74
537
+ },
538
+ {
539
+ "epoch": 1.3392857142857144,
540
+ "grad_norm": 0.039226219058036804,
541
+ "learning_rate": 8.043904206217118e-05,
542
+ "loss": 1.0712890625,
543
+ "step": 75
544
+ },
545
+ {
546
+ "epoch": 1.3571428571428572,
547
+ "grad_norm": 0.03748096153140068,
548
+ "learning_rate": 7.98990020434002e-05,
549
+ "loss": 1.05419921875,
550
+ "step": 76
551
+ },
552
+ {
553
+ "epoch": 1.375,
554
+ "grad_norm": 0.04423496872186661,
555
+ "learning_rate": 7.935374341714186e-05,
556
+ "loss": 1.0751953125,
557
+ "step": 77
558
+ },
559
+ {
560
+ "epoch": 1.3928571428571428,
561
+ "grad_norm": 0.036168552935123444,
562
+ "learning_rate": 7.880338046471331e-05,
563
+ "loss": 1.06884765625,
564
+ "step": 78
565
+ },
566
+ {
567
+ "epoch": 1.4107142857142856,
568
+ "grad_norm": 0.04387127235531807,
569
+ "learning_rate": 7.82480285372527e-05,
570
+ "loss": 0.9215087890625,
571
+ "step": 79
572
+ },
573
+ {
574
+ "epoch": 1.4285714285714286,
575
+ "grad_norm": 0.037132617086172104,
576
+ "learning_rate": 7.76878040315426e-05,
577
+ "loss": 1.06298828125,
578
+ "step": 80
579
+ },
580
+ {
581
+ "epoch": 1.4464285714285714,
582
+ "grad_norm": 0.041180018335580826,
583
+ "learning_rate": 7.712282436561422e-05,
584
+ "loss": 1.068359375,
585
+ "step": 81
586
+ },
587
+ {
588
+ "epoch": 1.4642857142857144,
589
+ "grad_norm": 0.03797157108783722,
590
+ "learning_rate": 7.655320795413778e-05,
591
+ "loss": 1.06396484375,
592
+ "step": 82
593
+ },
594
+ {
595
+ "epoch": 1.4821428571428572,
596
+ "grad_norm": 0.03520366549491882,
597
+ "learning_rate": 7.597907418360373e-05,
598
+ "loss": 1.05224609375,
599
+ "step": 83
600
+ },
601
+ {
602
+ "epoch": 1.5,
603
+ "grad_norm": 0.040242329239845276,
604
+ "learning_rate": 7.540054338730048e-05,
605
+ "loss": 1.0478515625,
606
+ "step": 84
607
+ },
608
+ {
609
+ "epoch": 1.5178571428571428,
610
+ "grad_norm": 0.03706357255578041,
611
+ "learning_rate": 7.481773682009356e-05,
612
+ "loss": 1.03131103515625,
613
+ "step": 85
614
+ },
615
+ {
616
+ "epoch": 1.5357142857142856,
617
+ "grad_norm": 0.041947633028030396,
618
+ "learning_rate": 7.423077663301174e-05,
619
+ "loss": 1.06787109375,
620
+ "step": 86
621
+ },
622
+ {
623
+ "epoch": 1.5535714285714286,
624
+ "grad_norm": 0.03751680627465248,
625
+ "learning_rate": 7.363978584764533e-05,
626
+ "loss": 1.03369140625,
627
+ "step": 87
628
+ },
629
+ {
630
+ "epoch": 1.5714285714285714,
631
+ "grad_norm": 0.043604396283626556,
632
+ "learning_rate": 7.304488833036179e-05,
633
+ "loss": 1.04638671875,
634
+ "step": 88
635
+ },
636
+ {
637
+ "epoch": 1.5892857142857144,
638
+ "grad_norm": 0.04247773438692093,
639
+ "learning_rate": 7.244620876634457e-05,
640
+ "loss": 1.033203125,
641
+ "step": 89
642
+ },
643
+ {
644
+ "epoch": 1.6071428571428572,
645
+ "grad_norm": 0.0520530641078949,
646
+ "learning_rate": 7.184387263346027e-05,
647
+ "loss": 1.052734375,
648
+ "step": 90
649
+ },
650
+ {
651
+ "epoch": 1.625,
652
+ "grad_norm": 0.04999032989144325,
653
+ "learning_rate": 7.123800617595939e-05,
654
+ "loss": 1.021484375,
655
+ "step": 91
656
+ },
657
+ {
658
+ "epoch": 1.6428571428571428,
659
+ "grad_norm": 0.04556800797581673,
660
+ "learning_rate": 7.062873637801692e-05,
661
+ "loss": 1.046875,
662
+ "step": 92
663
+ },
664
+ {
665
+ "epoch": 1.6428571428571428,
666
+ "eval_loss": 1.06005859375,
667
+ "eval_runtime": 5.5116,
668
+ "eval_samples_per_second": 0.544,
669
+ "eval_steps_per_second": 0.181,
670
+ "step": 92
671
+ },
672
+ {
673
+ "epoch": 1.6607142857142856,
674
+ "grad_norm": 0.03681010752916336,
675
+ "learning_rate": 7.001619093711742e-05,
676
+ "loss": 1.04345703125,
677
+ "step": 93
678
+ },
679
+ {
680
+ "epoch": 1.6785714285714286,
681
+ "grad_norm": 0.03767043352127075,
682
+ "learning_rate": 6.940049823729085e-05,
683
+ "loss": 1.01171875,
684
+ "step": 94
685
+ },
686
+ {
687
+ "epoch": 1.6964285714285714,
688
+ "grad_norm": 0.04384612664580345,
689
+ "learning_rate": 6.878178732220443e-05,
690
+ "loss": 1.05224609375,
691
+ "step": 95
692
+ },
693
+ {
694
+ "epoch": 1.7142857142857144,
695
+ "grad_norm": 0.05709799751639366,
696
+ "learning_rate": 6.816018786811616e-05,
697
+ "loss": 1.0205078125,
698
+ "step": 96
699
+ },
700
+ {
701
+ "epoch": 1.7321428571428572,
702
+ "grad_norm": 0.04267285764217377,
703
+ "learning_rate": 6.753583015669597e-05,
704
+ "loss": 1.08203125,
705
+ "step": 97
706
+ },
707
+ {
708
+ "epoch": 1.75,
709
+ "grad_norm": 0.04427693411707878,
710
+ "learning_rate": 6.690884504771978e-05,
711
+ "loss": 0.946533203125,
712
+ "step": 98
713
+ },
714
+ {
715
+ "epoch": 1.7678571428571428,
716
+ "grad_norm": 0.05095678195357323,
717
+ "learning_rate": 6.627936395164243e-05,
718
+ "loss": 1.03369140625,
719
+ "step": 99
720
+ },
721
+ {
722
+ "epoch": 1.7857142857142856,
723
+ "grad_norm": 0.03963042423129082,
724
+ "learning_rate": 6.56475188020553e-05,
725
+ "loss": 1.01904296875,
726
+ "step": 100
727
+ },
728
+ {
729
+ "epoch": 1.8035714285714286,
730
+ "grad_norm": 0.056748420000076294,
731
+ "learning_rate": 6.501344202803414e-05,
732
+ "loss": 1.02490234375,
733
+ "step": 101
734
+ },
735
+ {
736
+ "epoch": 1.8214285714285714,
737
+ "grad_norm": 0.04485310986638069,
738
+ "learning_rate": 6.437726652638325e-05,
739
+ "loss": 0.9970703125,
740
+ "step": 102
741
+ },
742
+ {
743
+ "epoch": 1.8392857142857144,
744
+ "grad_norm": 0.047313790768384933,
745
+ "learning_rate": 6.373912563378134e-05,
746
+ "loss": 1.03369140625,
747
+ "step": 103
748
+ },
749
+ {
750
+ "epoch": 1.8571428571428572,
751
+ "grad_norm": 0.06668058782815933,
752
+ "learning_rate": 6.309915309883544e-05,
753
+ "loss": 1.03662109375,
754
+ "step": 104
755
+ },
756
+ {
757
+ "epoch": 1.875,
758
+ "grad_norm": 0.07310571521520615,
759
+ "learning_rate": 6.245748305404842e-05,
760
+ "loss": 1.01806640625,
761
+ "step": 105
762
+ },
763
+ {
764
+ "epoch": 1.8928571428571428,
765
+ "grad_norm": 0.048690345138311386,
766
+ "learning_rate": 6.181424998770595e-05,
767
+ "loss": 1.03076171875,
768
+ "step": 106
769
+ },
770
+ {
771
+ "epoch": 1.9107142857142856,
772
+ "grad_norm": 0.048476070165634155,
773
+ "learning_rate": 6.116958871568903e-05,
774
+ "loss": 1.02587890625,
775
+ "step": 107
776
+ },
777
+ {
778
+ "epoch": 1.9285714285714286,
779
+ "grad_norm": 0.0492747500538826,
780
+ "learning_rate": 6.052363435321775e-05,
781
+ "loss": 1.0244140625,
782
+ "step": 108
783
+ },
784
+ {
785
+ "epoch": 1.9464285714285714,
786
+ "grad_norm": 0.05430912598967552,
787
+ "learning_rate": 5.9876522286532335e-05,
788
+ "loss": 1.01318359375,
789
+ "step": 109
790
+ },
791
+ {
792
+ "epoch": 1.9642857142857144,
793
+ "grad_norm": 0.04884471371769905,
794
+ "learning_rate": 5.922838814451745e-05,
795
+ "loss": 1.033203125,
796
+ "step": 110
797
+ },
798
+ {
799
+ "epoch": 1.9821428571428572,
800
+ "grad_norm": 0.04615797474980354,
801
+ "learning_rate": 5.8579367770275594e-05,
802
+ "loss": 1.01513671875,
803
+ "step": 111
804
+ },
805
+ {
806
+ "epoch": 2.0,
807
+ "grad_norm": 0.04669768735766411,
808
+ "learning_rate": 5.792959719265557e-05,
809
+ "loss": 1.03515625,
810
+ "step": 112
811
+ },
812
+ {
813
+ "epoch": 2.017857142857143,
814
+ "grad_norm": 0.04905088245868683,
815
+ "learning_rate": 5.727921259774208e-05,
816
+ "loss": 1.0234375,
817
+ "step": 113
818
+ },
819
+ {
820
+ "epoch": 2.0357142857142856,
821
+ "grad_norm": 0.04005492478609085,
822
+ "learning_rate": 5.662835030031236e-05,
823
+ "loss": 1.0419921875,
824
+ "step": 114
825
+ },
826
+ {
827
+ "epoch": 2.0535714285714284,
828
+ "grad_norm": 0.04845428094267845,
829
+ "learning_rate": 5.597714671526578e-05,
830
+ "loss": 1.02099609375,
831
+ "step": 115
832
+ },
833
+ {
834
+ "epoch": 2.0714285714285716,
835
+ "grad_norm": 0.044558197259902954,
836
+ "learning_rate": 5.532573832903257e-05,
837
+ "loss": 1.0009765625,
838
+ "step": 116
839
+ },
840
+ {
841
+ "epoch": 2.0892857142857144,
842
+ "grad_norm": 0.045990314334630966,
843
+ "learning_rate": 5.467426167096743e-05,
844
+ "loss": 1.03857421875,
845
+ "step": 117
846
+ },
847
+ {
848
+ "epoch": 2.107142857142857,
849
+ "grad_norm": 0.06346140801906586,
850
+ "learning_rate": 5.402285328473423e-05,
851
+ "loss": 1.02099609375,
852
+ "step": 118
853
+ },
854
+ {
855
+ "epoch": 2.125,
856
+ "grad_norm": 0.046397555619478226,
857
+ "learning_rate": 5.337164969968765e-05,
858
+ "loss": 1.00146484375,
859
+ "step": 119
860
+ },
861
+ {
862
+ "epoch": 2.142857142857143,
863
+ "grad_norm": 0.0518205352127552,
864
+ "learning_rate": 5.2720787402257935e-05,
865
+ "loss": 1.03857421875,
866
+ "step": 120
867
+ },
868
+ {
869
+ "epoch": 2.1607142857142856,
870
+ "grad_norm": 0.04607610031962395,
871
+ "learning_rate": 5.2070402807344454e-05,
872
+ "loss": 1.0048828125,
873
+ "step": 121
874
+ },
875
+ {
876
+ "epoch": 2.1785714285714284,
877
+ "grad_norm": 0.04944227635860443,
878
+ "learning_rate": 5.142063222972443e-05,
879
+ "loss": 1.01904296875,
880
+ "step": 122
881
+ },
882
+ {
883
+ "epoch": 2.1964285714285716,
884
+ "grad_norm": 0.04604826867580414,
885
+ "learning_rate": 5.077161185548256e-05,
886
+ "loss": 0.97998046875,
887
+ "step": 123
888
+ },
889
+ {
890
+ "epoch": 2.2142857142857144,
891
+ "grad_norm": 0.0500909686088562,
892
+ "learning_rate": 5.012347771346768e-05,
893
+ "loss": 0.982421875,
894
+ "step": 124
895
+ },
896
+ {
897
+ "epoch": 2.232142857142857,
898
+ "grad_norm": 0.05230355262756348,
899
+ "learning_rate": 4.947636564678227e-05,
900
+ "loss": 1.00341796875,
901
+ "step": 125
902
+ },
903
+ {
904
+ "epoch": 2.25,
905
+ "grad_norm": 0.039609186351299286,
906
+ "learning_rate": 4.883041128431098e-05,
907
+ "loss": 1.013671875,
908
+ "step": 126
909
+ },
910
+ {
911
+ "epoch": 2.267857142857143,
912
+ "grad_norm": 0.03894784674048424,
913
+ "learning_rate": 4.8185750012294065e-05,
914
+ "loss": 0.854522705078125,
915
+ "step": 127
916
+ },
917
+ {
918
+ "epoch": 2.2857142857142856,
919
+ "grad_norm": 0.044610414654016495,
920
+ "learning_rate": 4.754251694595159e-05,
921
+ "loss": 0.984375,
922
+ "step": 128
923
+ },
924
+ {
925
+ "epoch": 2.3035714285714284,
926
+ "grad_norm": 0.03917090222239494,
927
+ "learning_rate": 4.690084690116456e-05,
928
+ "loss": 0.95556640625,
929
+ "step": 129
930
+ },
931
+ {
932
+ "epoch": 2.3214285714285716,
933
+ "grad_norm": 0.04778430610895157,
934
+ "learning_rate": 4.6260874366218664e-05,
935
+ "loss": 1.04052734375,
936
+ "step": 130
937
+ },
938
+ {
939
+ "epoch": 2.3392857142857144,
940
+ "grad_norm": 0.046456895768642426,
941
+ "learning_rate": 4.5622733473616754e-05,
942
+ "loss": 1.0,
943
+ "step": 131
944
+ },
945
+ {
946
+ "epoch": 2.357142857142857,
947
+ "grad_norm": 0.04751892015337944,
948
+ "learning_rate": 4.498655797196586e-05,
949
+ "loss": 0.98876953125,
950
+ "step": 132
951
+ },
952
+ {
953
+ "epoch": 2.375,
954
+ "grad_norm": 0.04714829474687576,
955
+ "learning_rate": 4.435248119794473e-05,
956
+ "loss": 1.0,
957
+ "step": 133
958
+ },
959
+ {
960
+ "epoch": 2.392857142857143,
961
+ "grad_norm": 0.04082926735281944,
962
+ "learning_rate": 4.372063604835758e-05,
963
+ "loss": 1.005859375,
964
+ "step": 134
965
+ },
966
+ {
967
+ "epoch": 2.4107142857142856,
968
+ "grad_norm": 0.04500019550323486,
969
+ "learning_rate": 4.309115495228022e-05,
970
+ "loss": 0.85601806640625,
971
+ "step": 135
972
+ },
973
+ {
974
+ "epoch": 2.4285714285714284,
975
+ "grad_norm": 0.04198666289448738,
976
+ "learning_rate": 4.246416984330404e-05,
977
+ "loss": 0.998046875,
978
+ "step": 136
979
+ },
980
+ {
981
+ "epoch": 2.4285714285714284,
982
+ "eval_loss": 1.0283203125,
983
+ "eval_runtime": 5.5184,
984
+ "eval_samples_per_second": 0.544,
985
+ "eval_steps_per_second": 0.181,
986
+ "step": 136
987
+ },
988
+ {
989
+ "epoch": 2.4464285714285716,
990
+ "grad_norm": 0.04133324325084686,
991
+ "learning_rate": 4.183981213188385e-05,
992
+ "loss": 1.0068359375,
993
+ "step": 137
994
+ },
995
+ {
996
+ "epoch": 2.4642857142857144,
997
+ "grad_norm": 0.042704060673713684,
998
+ "learning_rate": 4.1218212677795586e-05,
999
+ "loss": 1.00341796875,
1000
+ "step": 138
1001
+ },
1002
+ {
1003
+ "epoch": 2.482142857142857,
1004
+ "grad_norm": 0.0368497334420681,
1005
+ "learning_rate": 4.0599501762709136e-05,
1006
+ "loss": 0.99609375,
1007
+ "step": 139
1008
+ },
1009
+ {
1010
+ "epoch": 2.5,
1011
+ "grad_norm": 0.042351022362709045,
1012
+ "learning_rate": 3.998380906288258e-05,
1013
+ "loss": 0.9912109375,
1014
+ "step": 140
1015
+ },
1016
+ {
1017
+ "epoch": 2.517857142857143,
1018
+ "grad_norm": 0.03679140284657478,
1019
+ "learning_rate": 3.93712636219831e-05,
1020
+ "loss": 0.978271484375,
1021
+ "step": 141
1022
+ },
1023
+ {
1024
+ "epoch": 2.5357142857142856,
1025
+ "grad_norm": 0.045904260128736496,
1026
+ "learning_rate": 3.8761993824040624e-05,
1027
+ "loss": 1.00830078125,
1028
+ "step": 142
1029
+ },
1030
+ {
1031
+ "epoch": 2.553571428571429,
1032
+ "grad_norm": 0.04805140569806099,
1033
+ "learning_rate": 3.8156127366539765e-05,
1034
+ "loss": 0.97412109375,
1035
+ "step": 143
1036
+ },
1037
+ {
1038
+ "epoch": 2.571428571428571,
1039
+ "grad_norm": 0.045705657452344894,
1040
+ "learning_rate": 3.755379123365544e-05,
1041
+ "loss": 0.98828125,
1042
+ "step": 144
1043
+ },
1044
+ {
1045
+ "epoch": 2.5892857142857144,
1046
+ "grad_norm": 0.047024913132190704,
1047
+ "learning_rate": 3.695511166963823e-05,
1048
+ "loss": 0.9736328125,
1049
+ "step": 145
1050
+ },
1051
+ {
1052
+ "epoch": 2.607142857142857,
1053
+ "grad_norm": 0.04604227468371391,
1054
+ "learning_rate": 3.636021415235469e-05,
1055
+ "loss": 0.9921875,
1056
+ "step": 146
1057
+ },
1058
+ {
1059
+ "epoch": 2.625,
1060
+ "grad_norm": 0.06223449110984802,
1061
+ "learning_rate": 3.576922336698827e-05,
1062
+ "loss": 0.95849609375,
1063
+ "step": 147
1064
+ },
1065
+ {
1066
+ "epoch": 2.642857142857143,
1067
+ "grad_norm": 0.04685801640152931,
1068
+ "learning_rate": 3.518226317990646e-05,
1069
+ "loss": 0.9873046875,
1070
+ "step": 148
1071
+ },
1072
+ {
1073
+ "epoch": 2.6607142857142856,
1074
+ "grad_norm": 0.044816114008426666,
1075
+ "learning_rate": 3.4599456612699533e-05,
1076
+ "loss": 0.99267578125,
1077
+ "step": 149
1078
+ },
1079
+ {
1080
+ "epoch": 2.678571428571429,
1081
+ "grad_norm": 0.042907748371362686,
1082
+ "learning_rate": 3.402092581639625e-05,
1083
+ "loss": 0.9638671875,
1084
+ "step": 150
1085
+ },
1086
+ {
1087
+ "epoch": 2.696428571428571,
1088
+ "grad_norm": 0.04838351160287857,
1089
+ "learning_rate": 3.344679204586221e-05,
1090
+ "loss": 0.99755859375,
1091
+ "step": 151
1092
+ },
1093
+ {
1094
+ "epoch": 2.7142857142857144,
1095
+ "grad_norm": 0.0596080906689167,
1096
+ "learning_rate": 3.287717563438578e-05,
1097
+ "loss": 0.96826171875,
1098
+ "step": 152
1099
+ },
1100
+ {
1101
+ "epoch": 2.732142857142857,
1102
+ "grad_norm": 0.05309814587235451,
1103
+ "learning_rate": 3.231219596845742e-05,
1104
+ "loss": 1.03466796875,
1105
+ "step": 153
1106
+ },
1107
+ {
1108
+ "epoch": 2.75,
1109
+ "grad_norm": 0.04150069132447243,
1110
+ "learning_rate": 3.175197146274731e-05,
1111
+ "loss": 0.90673828125,
1112
+ "step": 154
1113
+ },
1114
+ {
1115
+ "epoch": 2.767857142857143,
1116
+ "grad_norm": 0.061403609812259674,
1117
+ "learning_rate": 3.119661953528671e-05,
1118
+ "loss": 0.98388671875,
1119
+ "step": 155
1120
+ },
1121
+ {
1122
+ "epoch": 2.7857142857142856,
1123
+ "grad_norm": 0.04387956112623215,
1124
+ "learning_rate": 3.064625658285815e-05,
1125
+ "loss": 0.97314453125,
1126
+ "step": 156
1127
+ },
1128
+ {
1129
+ "epoch": 2.803571428571429,
1130
+ "grad_norm": 0.052994322031736374,
1131
+ "learning_rate": 3.0100997956599814e-05,
1132
+ "loss": 0.97900390625,
1133
+ "step": 157
1134
+ },
1135
+ {
1136
+ "epoch": 2.821428571428571,
1137
+ "grad_norm": 0.06168539449572563,
1138
+ "learning_rate": 2.956095793782883e-05,
1139
+ "loss": 0.95166015625,
1140
+ "step": 158
1141
+ },
1142
+ {
1143
+ "epoch": 2.8392857142857144,
1144
+ "grad_norm": 0.047501757740974426,
1145
+ "learning_rate": 2.902624971408907e-05,
1146
+ "loss": 0.9873046875,
1147
+ "step": 159
1148
+ },
1149
+ {
1150
+ "epoch": 2.857142857142857,
1151
+ "grad_norm": 0.06902100890874863,
1152
+ "learning_rate": 2.8496985355427958e-05,
1153
+ "loss": 0.9853515625,
1154
+ "step": 160
1155
+ },
1156
+ {
1157
+ "epoch": 2.875,
1158
+ "grad_norm": 0.058358438313007355,
1159
+ "learning_rate": 2.7973275790907626e-05,
1160
+ "loss": 0.96728515625,
1161
+ "step": 161
1162
+ },
1163
+ {
1164
+ "epoch": 2.892857142857143,
1165
+ "grad_norm": 0.05274480581283569,
1166
+ "learning_rate": 2.745523078535517e-05,
1167
+ "loss": 0.98583984375,
1168
+ "step": 162
1169
+ },
1170
+ {
1171
+ "epoch": 2.9107142857142856,
1172
+ "grad_norm": 0.049125488847494125,
1173
+ "learning_rate": 2.6942958916356998e-05,
1174
+ "loss": 0.98583984375,
1175
+ "step": 163
1176
+ },
1177
+ {
1178
+ "epoch": 2.928571428571429,
1179
+ "grad_norm": 0.056219276040792465,
1180
+ "learning_rate": 2.643656755150181e-05,
1181
+ "loss": 0.98193359375,
1182
+ "step": 164
1183
+ },
1184
+ {
1185
+ "epoch": 2.946428571428571,
1186
+ "grad_norm": 0.060292672365903854,
1187
+ "learning_rate": 2.593616282587742e-05,
1188
+ "loss": 0.97119140625,
1189
+ "step": 165
1190
+ },
1191
+ {
1192
+ "epoch": 2.9642857142857144,
1193
+ "grad_norm": 0.05146801471710205,
1194
+ "learning_rate": 2.5441849619825726e-05,
1195
+ "loss": 0.98828125,
1196
+ "step": 166
1197
+ },
1198
+ {
1199
+ "epoch": 2.982142857142857,
1200
+ "grad_norm": 0.05642533302307129,
1201
+ "learning_rate": 2.495373153696083e-05,
1202
+ "loss": 0.9755859375,
1203
+ "step": 167
1204
+ },
1205
+ {
1206
+ "epoch": 3.0,
1207
+ "grad_norm": 0.05079466849565506,
1208
+ "learning_rate": 2.447191088245451e-05,
1209
+ "loss": 0.9912109375,
1210
+ "step": 168
1211
+ },
1212
+ {
1213
+ "epoch": 3.017857142857143,
1214
+ "grad_norm": 0.046873848885297775,
1215
+ "learning_rate": 2.39964886415941e-05,
1216
+ "loss": 0.98095703125,
1217
+ "step": 169
1218
+ },
1219
+ {
1220
+ "epoch": 3.0357142857142856,
1221
+ "grad_norm": 0.04289823770523071,
1222
+ "learning_rate": 2.3527564458616814e-05,
1223
+ "loss": 1.005859375,
1224
+ "step": 170
1225
+ },
1226
+ {
1227
+ "epoch": 3.0535714285714284,
1228
+ "grad_norm": 0.054384272545576096,
1229
+ "learning_rate": 2.306523661582519e-05,
1230
+ "loss": 0.98095703125,
1231
+ "step": 171
1232
+ },
1233
+ {
1234
+ "epoch": 3.0714285714285716,
1235
+ "grad_norm": 0.05032803490757942,
1236
+ "learning_rate": 2.260960201298806e-05,
1237
+ "loss": 0.96533203125,
1238
+ "step": 172
1239
+ },
1240
+ {
1241
+ "epoch": 3.0892857142857144,
1242
+ "grad_norm": 0.043237391859292984,
1243
+ "learning_rate": 2.2160756147031187e-05,
1244
+ "loss": 1.0,
1245
+ "step": 173
1246
+ },
1247
+ {
1248
+ "epoch": 3.107142857142857,
1249
+ "grad_norm": 0.05785789340734482,
1250
+ "learning_rate": 2.1718793092022005e-05,
1251
+ "loss": 0.9794921875,
1252
+ "step": 174
1253
+ },
1254
+ {
1255
+ "epoch": 3.125,
1256
+ "grad_norm": 0.05047431215643883,
1257
+ "learning_rate": 2.1283805479452478e-05,
1258
+ "loss": 0.96630859375,
1259
+ "step": 175
1260
+ },
1261
+ {
1262
+ "epoch": 3.142857142857143,
1263
+ "grad_norm": 0.043065909296274185,
1264
+ "learning_rate": 2.0855884478824412e-05,
1265
+ "loss": 1.00341796875,
1266
+ "step": 176
1267
+ },
1268
+ {
1269
+ "epoch": 3.1607142857142856,
1270
+ "grad_norm": 0.043199557811021805,
1271
+ "learning_rate": 2.0435119778541154e-05,
1272
+ "loss": 0.9697265625,
1273
+ "step": 177
1274
+ },
1275
+ {
1276
+ "epoch": 3.1785714285714284,
1277
+ "grad_norm": 0.04932871088385582,
1278
+ "learning_rate": 2.0021599567109655e-05,
1279
+ "loss": 0.984375,
1280
+ "step": 178
1281
+ },
1282
+ {
1283
+ "epoch": 3.1964285714285716,
1284
+ "grad_norm": 0.04993288218975067,
1285
+ "learning_rate": 1.9615410514657035e-05,
1286
+ "loss": 0.94580078125,
1287
+ "step": 179
1288
+ },
1289
+ {
1290
+ "epoch": 3.2142857142857144,
1291
+ "grad_norm": 0.04949844256043434,
1292
+ "learning_rate": 1.921663775476521e-05,
1293
+ "loss": 0.947265625,
1294
+ "step": 180
1295
+ },
1296
+ {
1297
+ "epoch": 3.2142857142857144,
1298
+ "eval_loss": 1.0126953125,
1299
+ "eval_runtime": 5.5085,
1300
+ "eval_samples_per_second": 0.545,
1301
+ "eval_steps_per_second": 0.182,
1302
+ "step": 180
1303
+ },
1304
+ {
1305
+ "epoch": 3.232142857142857,
1306
+ "grad_norm": 0.045212678611278534,
1307
+ "learning_rate": 1.8825364866627705e-05,
1308
+ "loss": 0.97021484375,
1309
+ "step": 181
1310
+ },
1311
+ {
1312
+ "epoch": 3.25,
1313
+ "grad_norm": 0.0437084436416626,
1314
+ "learning_rate": 1.8441673857532215e-05,
1315
+ "loss": 0.98095703125,
1316
+ "step": 182
1317
+ },
1318
+ {
1319
+ "epoch": 3.267857142857143,
1320
+ "grad_norm": 0.040914278477430344,
1321
+ "learning_rate": 1.806564514567258e-05,
1322
+ "loss": 0.826934814453125,
1323
+ "step": 183
1324
+ },
1325
+ {
1326
+ "epoch": 3.2857142857142856,
1327
+ "grad_norm": 0.04190181940793991,
1328
+ "learning_rate": 1.7697357543293865e-05,
1329
+ "loss": 0.95654296875,
1330
+ "step": 184
1331
+ },
1332
+ {
1333
+ "epoch": 3.3035714285714284,
1334
+ "grad_norm": 0.04074949771165848,
1335
+ "learning_rate": 1.7336888240174048e-05,
1336
+ "loss": 0.92724609375,
1337
+ "step": 185
1338
+ },
1339
+ {
1340
+ "epoch": 3.3214285714285716,
1341
+ "grad_norm": 0.04683749005198479,
1342
+ "learning_rate": 1.6984312787445706e-05,
1343
+ "loss": 1.0078125,
1344
+ "step": 186
1345
+ },
1346
+ {
1347
+ "epoch": 3.3392857142857144,
1348
+ "grad_norm": 0.046260934323072433,
1349
+ "learning_rate": 1.6639705081761163e-05,
1350
+ "loss": 0.9677734375,
1351
+ "step": 187
1352
+ },
1353
+ {
1354
+ "epoch": 3.357142857142857,
1355
+ "grad_norm": 0.04606393724679947,
1356
+ "learning_rate": 1.630313734980445e-05,
1357
+ "loss": 0.95751953125,
1358
+ "step": 188
1359
+ },
1360
+ {
1361
+ "epoch": 3.375,
1362
+ "grad_norm": 0.04770003259181976,
1363
+ "learning_rate": 1.5974680133153193e-05,
1364
+ "loss": 0.9677734375,
1365
+ "step": 189
1366
+ },
1367
+ {
1368
+ "epoch": 3.392857142857143,
1369
+ "grad_norm": 0.04185847193002701,
1370
+ "learning_rate": 1.5654402273493805e-05,
1371
+ "loss": 0.9775390625,
1372
+ "step": 190
1373
+ },
1374
+ {
1375
+ "epoch": 3.4107142857142856,
1376
+ "grad_norm": 0.04649612680077553,
1377
+ "learning_rate": 1.5342370898192814e-05,
1378
+ "loss": 0.83087158203125,
1379
+ "step": 191
1380
+ },
1381
+ {
1382
+ "epoch": 3.4285714285714284,
1383
+ "grad_norm": 0.043748557567596436,
1384
+ "learning_rate": 1.5038651406227603e-05,
1385
+ "loss": 0.97021484375,
1386
+ "step": 192
1387
+ },
1388
+ {
1389
+ "epoch": 3.4464285714285716,
1390
+ "grad_norm": 0.04148659110069275,
1391
+ "learning_rate": 1.4743307454479339e-05,
1392
+ "loss": 0.98095703125,
1393
+ "step": 193
1394
+ },
1395
+ {
1396
+ "epoch": 3.4642857142857144,
1397
+ "grad_norm": 0.04294572025537491,
1398
+ "learning_rate": 1.4456400944391146e-05,
1399
+ "loss": 0.97412109375,
1400
+ "step": 194
1401
+ },
1402
+ {
1403
+ "epoch": 3.482142857142857,
1404
+ "grad_norm": 0.038999732583761215,
1405
+ "learning_rate": 1.4177992008993988e-05,
1406
+ "loss": 0.97412109375,
1407
+ "step": 195
1408
+ },
1409
+ {
1410
+ "epoch": 3.5,
1411
+ "grad_norm": 0.04187963902950287,
1412
+ "learning_rate": 1.3908139000303461e-05,
1413
+ "loss": 0.966796875,
1414
+ "step": 196
1415
+ },
1416
+ {
1417
+ "epoch": 3.517857142857143,
1418
+ "grad_norm": 0.041592612862586975,
1419
+ "learning_rate": 1.3646898477089626e-05,
1420
+ "loss": 0.9552001953125,
1421
+ "step": 197
1422
+ },
1423
+ {
1424
+ "epoch": 3.5357142857142856,
1425
+ "grad_norm": 0.04535580053925514,
1426
+ "learning_rate": 1.339432519302285e-05,
1427
+ "loss": 0.9853515625,
1428
+ "step": 198
1429
+ },
1430
+ {
1431
+ "epoch": 3.553571428571429,
1432
+ "grad_norm": 0.045265089720487595,
1433
+ "learning_rate": 1.3150472085197929e-05,
1434
+ "loss": 0.9501953125,
1435
+ "step": 199
1436
+ },
1437
+ {
1438
+ "epoch": 3.571428571428571,
1439
+ "grad_norm": 0.04560013860464096,
1440
+ "learning_rate": 1.2915390263038919e-05,
1441
+ "loss": 0.9638671875,
1442
+ "step": 200
1443
+ },
1444
+ {
1445
+ "epoch": 3.5892857142857144,
1446
+ "grad_norm": 0.04827389493584633,
1447
+ "learning_rate": 1.2689128997587108e-05,
1448
+ "loss": 0.94921875,
1449
+ "step": 201
1450
+ },
1451
+ {
1452
+ "epoch": 3.607142857142857,
1453
+ "grad_norm": 0.04968206584453583,
1454
+ "learning_rate": 1.2471735711174194e-05,
1455
+ "loss": 0.96875,
1456
+ "step": 202
1457
+ },
1458
+ {
1459
+ "epoch": 3.625,
1460
+ "grad_norm": 0.04841538146138191,
1461
+ "learning_rate": 1.2263255967483008e-05,
1462
+ "loss": 0.9306640625,
1463
+ "step": 203
1464
+ },
1465
+ {
1466
+ "epoch": 3.642857142857143,
1467
+ "grad_norm": 0.046395279467105865,
1468
+ "learning_rate": 1.2063733461997805e-05,
1469
+ "loss": 0.96240234375,
1470
+ "step": 204
1471
+ },
1472
+ {
1473
+ "epoch": 3.6607142857142856,
1474
+ "grad_norm": 0.040127336978912354,
1475
+ "learning_rate": 1.1873210012846035e-05,
1476
+ "loss": 0.97216796875,
1477
+ "step": 205
1478
+ },
1479
+ {
1480
+ "epoch": 3.678571428571429,
1481
+ "grad_norm": 0.04214334860444069,
1482
+ "learning_rate": 1.169172555203366e-05,
1483
+ "loss": 0.9423828125,
1484
+ "step": 206
1485
+ },
1486
+ {
1487
+ "epoch": 3.696428571428571,
1488
+ "grad_norm": 0.04559830576181412,
1489
+ "learning_rate": 1.1519318117075797e-05,
1490
+ "loss": 0.97412109375,
1491
+ "step": 207
1492
+ },
1493
+ {
1494
+ "epoch": 3.7142857142857144,
1495
+ "grad_norm": 0.05023607611656189,
1496
+ "learning_rate": 1.1356023843024322e-05,
1497
+ "loss": 0.9453125,
1498
+ "step": 208
1499
+ },
1500
+ {
1501
+ "epoch": 3.732142857142857,
1502
+ "grad_norm": 0.0502508319914341,
1503
+ "learning_rate": 1.1201876954894353e-05,
1504
+ "loss": 1.0146484375,
1505
+ "step": 209
1506
+ },
1507
+ {
1508
+ "epoch": 3.75,
1509
+ "grad_norm": 0.04057978093624115,
1510
+ "learning_rate": 1.1056909760490961e-05,
1511
+ "loss": 0.89013671875,
1512
+ "step": 210
1513
+ },
1514
+ {
1515
+ "epoch": 3.767857142857143,
1516
+ "grad_norm": 0.05251820385456085,
1517
+ "learning_rate": 1.092115264363775e-05,
1518
+ "loss": 0.9619140625,
1519
+ "step": 211
1520
+ },
1521
+ {
1522
+ "epoch": 3.7857142857142856,
1523
+ "grad_norm": 0.045598700642585754,
1524
+ "learning_rate": 1.0794634057808699e-05,
1525
+ "loss": 0.95703125,
1526
+ "step": 212
1527
+ },
1528
+ {
1529
+ "epoch": 3.803571428571429,
1530
+ "grad_norm": 0.04837017506361008,
1531
+ "learning_rate": 1.0677380520164538e-05,
1532
+ "loss": 0.95751953125,
1533
+ "step": 213
1534
+ },
1535
+ {
1536
+ "epoch": 3.821428571428571,
1537
+ "grad_norm": 0.04650958627462387,
1538
+ "learning_rate": 1.0569416605995009e-05,
1539
+ "loss": 0.931640625,
1540
+ "step": 214
1541
+ },
1542
+ {
1543
+ "epoch": 3.8392857142857144,
1544
+ "grad_norm": 0.0454195961356163,
1545
+ "learning_rate": 1.0470764943568096e-05,
1546
+ "loss": 0.96826171875,
1547
+ "step": 215
1548
+ },
1549
+ {
1550
+ "epoch": 3.857142857142857,
1551
+ "grad_norm": 0.05558029189705849,
1552
+ "learning_rate": 1.0381446209387354e-05,
1553
+ "loss": 0.9638671875,
1554
+ "step": 216
1555
+ },
1556
+ {
1557
+ "epoch": 3.875,
1558
+ "grad_norm": 0.06056639924645424,
1559
+ "learning_rate": 1.0301479123858283e-05,
1560
+ "loss": 0.94775390625,
1561
+ "step": 217
1562
+ },
1563
+ {
1564
+ "epoch": 3.892857142857143,
1565
+ "grad_norm": 0.04491675645112991,
1566
+ "learning_rate": 1.023088044736472e-05,
1567
+ "loss": 0.96728515625,
1568
+ "step": 218
1569
+ },
1570
+ {
1571
+ "epoch": 3.9107142857142856,
1572
+ "grad_norm": 0.04396628960967064,
1573
+ "learning_rate": 1.0169664976756e-05,
1574
+ "loss": 0.96826171875,
1575
+ "step": 219
1576
+ },
1577
+ {
1578
+ "epoch": 3.928571428571429,
1579
+ "grad_norm": 0.046213548630476,
1580
+ "learning_rate": 1.0117845542245663e-05,
1581
+ "loss": 0.96484375,
1582
+ "step": 220
1583
+ },
1584
+ {
1585
+ "epoch": 3.946428571428571,
1586
+ "grad_norm": 0.04557639732956886,
1587
+ "learning_rate": 1.0075433004722365e-05,
1588
+ "loss": 0.95458984375,
1589
+ "step": 221
1590
+ },
1591
+ {
1592
+ "epoch": 3.9642857142857144,
1593
+ "grad_norm": 0.047114044427871704,
1594
+ "learning_rate": 1.0042436253473541e-05,
1595
+ "loss": 0.97314453125,
1596
+ "step": 222
1597
+ },
1598
+ {
1599
+ "epoch": 3.982142857142857,
1600
+ "grad_norm": 0.04391677305102348,
1601
+ "learning_rate": 1.0018862204322276e-05,
1602
+ "loss": 0.9580078125,
1603
+ "step": 223
1604
+ },
1605
+ {
1606
+ "epoch": 4.0,
1607
+ "grad_norm": 0.04709929600358009,
1608
+ "learning_rate": 1.0004715798177817e-05,
1609
+ "loss": 0.9755859375,
1610
+ "step": 224
1611
+ },
1612
+ {
1613
+ "epoch": 4.0,
1614
+ "eval_loss": 1.00634765625,
1615
+ "eval_runtime": 5.4981,
1616
+ "eval_samples_per_second": 0.546,
1617
+ "eval_steps_per_second": 0.182,
1618
+ "step": 224
1619
+ }
1620
+ ],
1621
+ "logging_steps": 1.0,
1622
+ "max_steps": 224,
1623
+ "num_input_tokens_seen": 0,
1624
+ "num_train_epochs": 4,
1625
+ "save_steps": 0,
1626
+ "stateful_callbacks": {
1627
+ "TrainerControl": {
1628
+ "args": {
1629
+ "should_epoch_stop": false,
1630
+ "should_evaluate": false,
1631
+ "should_log": false,
1632
+ "should_save": true,
1633
+ "should_training_stop": true
1634
+ },
1635
+ "attributes": {}
1636
+ }
1637
+ },
1638
+ "total_flos": 1.9468188245609677e+19,
1639
+ "train_batch_size": 1,
1640
+ "trial_name": null,
1641
+ "trial_params": null
1642
+ }
training-metrics.png ADDED

Git LFS Details

  • SHA256: 66c9f35cdd905d9aab0adcc501c395faae9fa90b496559742cc2433bc41a4779
  • Pointer size: 131 Bytes
  • Size of remote file: 177 kB
win-rates.png ADDED