Avinaash commited on
Commit
e37254f
·
verified ·
1 Parent(s): 2581014

Add 11 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ 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
+ win-rates.png filter=lfs diff=lfs merge=lfs -text
38
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_chartsense_sft
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 chartsense_sft dataset.
17
+
18
+
19
+ ![Training metrics](training-metrics.png)
20
+
21
+ ### AutoScientist Config
22
+
23
+ ```json
24
+ {
25
+ "job_id": "1e548ea0-c1a0-4aeb-8563-f35fa19cd991",
26
+ "training_experiment_id": "d24efb7c-6ba7-4a94-910d-7596b10720c1",
27
+ "original_model_name": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
28
+ "trained_model_name": "adaption_chartsense_sft",
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 25,397 rows of adapted data with the following domain distribution: data-analysis-visualization (96%), code (2%), science (0%), academic-education (0%), corporate-business (0%), sports (0%), market-analysis (0%), math (0%), marketing (0%), games (0%), hr (0%), technology (0%), agriculture (0%).
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
+ | Domain | Win rate vs. base model |
67
+ | --- | --- |
68
+ | data-analysis-visualization | 79% |
69
+
70
+ ## How to use
71
+
72
+ ```bash
73
+ pip install torch transformers peft
74
+ ```
75
+
76
+ ```python
77
+ import torch
78
+ from transformers import AutoModelForCausalLM, AutoTokenizer
79
+ from peft import PeftModel
80
+
81
+ BASE = "meta-llama/Llama-4-Scout-17B-16E-Instruct"
82
+ ADAPTER = "<this-repo-id>"
83
+
84
+ device = "cuda" if torch.cuda.is_available() else "cpu"
85
+ dtype = torch.float32 if device == "cpu" else torch.bfloat16
86
+
87
+ base = AutoModelForCausalLM.from_pretrained(BASE, dtype=dtype).to(device)
88
+ model = PeftModel.from_pretrained(base, ADAPTER)
89
+ # Optional: merge the LoRA weights into the base for faster inference
90
+ model = model.merge_and_unload()
91
+ model.eval()
92
+
93
+ tokenizer = AutoTokenizer.from_pretrained(BASE)
94
+ messages = [{"role": "user", "content": "Hello!"}]
95
+ text = tokenizer.apply_chat_template(
96
+ messages, tokenize=False, add_generation_prompt=True)
97
+ inputs = tokenizer(text, return_tensors="pt").to(device)
98
+
99
+ with torch.inference_mode():
100
+ out = model.generate(**inputs, max_new_tokens=512)
101
+ print(tokenizer.decode(out[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
102
+ ```
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
+ "feed_forward.gate_proj",
28
+ "feed_forward.up_proj",
29
+ "q_proj",
30
+ "shared_expert.gate_proj",
31
+ "o_proj",
32
+ "k_proj",
33
+ "shared_expert.up_proj",
34
+ "v_proj",
35
+ "shared_expert.down_proj",
36
+ "feed_forward.down_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:6a99b4833b44522a64fb9e2d89949a32063a2747672d5a66699b2af8dd1e88ad
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.13.0",
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,1726 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 4.0,
6
+ "eval_steps": 47,
7
+ "global_step": 236,
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.01694915254237288,
14
+ "grad_norm": 0.6888771057128906,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.2392578125,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.03389830508474576,
21
+ "grad_norm": 0.866387128829956,
22
+ "learning_rate": 1.25e-05,
23
+ "loss": 1.498046875,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.05084745762711865,
28
+ "grad_norm": 0.6771768927574158,
29
+ "learning_rate": 2.5e-05,
30
+ "loss": 1.28759765625,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.06779661016949153,
35
+ "grad_norm": 0.6170372366905212,
36
+ "learning_rate": 3.7500000000000003e-05,
37
+ "loss": 1.22265625,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.0847457627118644,
42
+ "grad_norm": 0.5621561408042908,
43
+ "learning_rate": 5e-05,
44
+ "loss": 1.2998046875,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.1016949152542373,
49
+ "grad_norm": 0.3775511085987091,
50
+ "learning_rate": 6.25e-05,
51
+ "loss": 1.28173828125,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.11864406779661017,
56
+ "grad_norm": 0.2543378472328186,
57
+ "learning_rate": 7.500000000000001e-05,
58
+ "loss": 1.24755859375,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.13559322033898305,
63
+ "grad_norm": 0.24368329346179962,
64
+ "learning_rate": 8.75e-05,
65
+ "loss": 1.1640625,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.15254237288135594,
70
+ "grad_norm": 0.37695613503456116,
71
+ "learning_rate": 0.0001,
72
+ "loss": 1.037109375,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.1694915254237288,
77
+ "grad_norm": 0.6395261883735657,
78
+ "learning_rate": 9.999572825127697e-05,
79
+ "loss": 1.20068359375,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.1864406779661017,
84
+ "grad_norm": 0.3627767264842987,
85
+ "learning_rate": 9.998291381612281e-05,
86
+ "loss": 1.10791015625,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.2033898305084746,
91
+ "grad_norm": 0.19022125005722046,
92
+ "learning_rate": 9.996155912742855e-05,
93
+ "loss": 0.840576171875,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.22033898305084745,
98
+ "grad_norm": 0.1781640350818634,
99
+ "learning_rate": 9.993166823949923e-05,
100
+ "loss": 1.0634765625,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.23728813559322035,
105
+ "grad_norm": 0.20156298577785492,
106
+ "learning_rate": 9.98932468272843e-05,
107
+ "loss": 1.17626953125,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.2542372881355932,
112
+ "grad_norm": 0.17879654467105865,
113
+ "learning_rate": 9.984630218530014e-05,
114
+ "loss": 0.89794921875,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.2711864406779661,
119
+ "grad_norm": 0.18100528419017792,
120
+ "learning_rate": 9.979084322624518e-05,
121
+ "loss": 1.15283203125,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.288135593220339,
126
+ "grad_norm": 0.17728430032730103,
127
+ "learning_rate": 9.972688047930772e-05,
128
+ "loss": 1.07080078125,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.3050847457627119,
133
+ "grad_norm": 0.14060959219932556,
134
+ "learning_rate": 9.965442608816703e-05,
135
+ "loss": 1.03125,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.3220338983050847,
140
+ "grad_norm": 0.13452130556106567,
141
+ "learning_rate": 9.957349380868764e-05,
142
+ "loss": 1.116455078125,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.3389830508474576,
147
+ "grad_norm": 0.10745736956596375,
148
+ "learning_rate": 9.948409900630787e-05,
149
+ "loss": 0.88720703125,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.3559322033898305,
154
+ "grad_norm": 0.10258574783802032,
155
+ "learning_rate": 9.938625865312251e-05,
156
+ "loss": 0.972412109375,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.3728813559322034,
161
+ "grad_norm": 0.10475312918424606,
162
+ "learning_rate": 9.92799913246606e-05,
163
+ "loss": 1.1953125,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.3898305084745763,
168
+ "grad_norm": 0.09753881394863129,
169
+ "learning_rate": 9.916531719635881e-05,
170
+ "loss": 0.908203125,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.4067796610169492,
175
+ "grad_norm": 0.11622539907693863,
176
+ "learning_rate": 9.904225803973094e-05,
177
+ "loss": 1.06689453125,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.423728813559322,
182
+ "grad_norm": 0.10409683734178543,
183
+ "learning_rate": 9.891083721823461e-05,
184
+ "loss": 1.007080078125,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.4406779661016949,
189
+ "grad_norm": 0.10611087828874588,
190
+ "learning_rate": 9.877107968283538e-05,
191
+ "loss": 1.08642578125,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.4576271186440678,
196
+ "grad_norm": 0.09127997606992722,
197
+ "learning_rate": 9.862301196726987e-05,
198
+ "loss": 1.0029296875,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.4745762711864407,
203
+ "grad_norm": 0.08576557040214539,
204
+ "learning_rate": 9.846666218300807e-05,
205
+ "loss": 1.02734375,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.4915254237288136,
210
+ "grad_norm": 0.0856955274939537,
211
+ "learning_rate": 9.830206001391626e-05,
212
+ "loss": 1.03125,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.5084745762711864,
217
+ "grad_norm": 0.08397874236106873,
218
+ "learning_rate": 9.812923671062138e-05,
219
+ "loss": 1.099365234375,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.5254237288135594,
224
+ "grad_norm": 0.08784671872854233,
225
+ "learning_rate": 9.794822508457784e-05,
226
+ "loss": 1.072998046875,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.5423728813559322,
231
+ "grad_norm": 0.08265256881713867,
232
+ "learning_rate": 9.775905950183821e-05,
233
+ "loss": 0.9990234375,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.559322033898305,
238
+ "grad_norm": 0.07514134794473648,
239
+ "learning_rate": 9.756177587652856e-05,
240
+ "loss": 1.05615234375,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.576271186440678,
245
+ "grad_norm": 0.08056832104921341,
246
+ "learning_rate": 9.735641166402998e-05,
247
+ "loss": 1.0478515625,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.5932203389830508,
252
+ "grad_norm": 0.08656042814254761,
253
+ "learning_rate": 9.714300585386747e-05,
254
+ "loss": 0.9912109375,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.6101694915254238,
259
+ "grad_norm": 0.0823112279176712,
260
+ "learning_rate": 9.692159896230756e-05,
261
+ "loss": 0.940673828125,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.6271186440677966,
266
+ "grad_norm": 0.07311712950468063,
267
+ "learning_rate": 9.669223302466608e-05,
268
+ "loss": 1.04296875,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.6440677966101694,
273
+ "grad_norm": 0.07049518823623657,
274
+ "learning_rate": 9.645495158732755e-05,
275
+ "loss": 0.99462890625,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.6610169491525424,
280
+ "grad_norm": 0.07307340204715729,
281
+ "learning_rate": 9.620979969947759e-05,
282
+ "loss": 0.9482421875,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.6779661016949152,
287
+ "grad_norm": 0.07870783656835556,
288
+ "learning_rate": 9.595682390455015e-05,
289
+ "loss": 0.82757568359375,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.6949152542372882,
294
+ "grad_norm": 0.07178431749343872,
295
+ "learning_rate": 9.5696072231391e-05,
296
+ "loss": 0.96826171875,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.711864406779661,
301
+ "grad_norm": 0.06541870534420013,
302
+ "learning_rate": 9.542759418513906e-05,
303
+ "loss": 0.76641845703125,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.7288135593220338,
308
+ "grad_norm": 0.0818762481212616,
309
+ "learning_rate": 9.515144073782774e-05,
310
+ "loss": 0.962890625,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.7457627118644068,
315
+ "grad_norm": 0.07723236829042435,
316
+ "learning_rate": 9.486766431870752e-05,
317
+ "loss": 1.051025390625,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.7627118644067796,
322
+ "grad_norm": 0.07016034424304962,
323
+ "learning_rate": 9.4576318804292e-05,
324
+ "loss": 0.941162109375,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.7796610169491526,
329
+ "grad_norm": 0.07902839779853821,
330
+ "learning_rate": 9.427745950812917e-05,
331
+ "loss": 0.94921875,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.7966101694915254,
336
+ "grad_norm": 0.07988400012254715,
337
+ "learning_rate": 9.397114317029975e-05,
338
+ "loss": 1.051025390625,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.8135593220338984,
343
+ "grad_norm": 0.08166942745447159,
344
+ "learning_rate": 9.365742794664484e-05,
345
+ "loss": 1.043701171875,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.8135593220338984,
350
+ "eval_loss": 0.93798828125,
351
+ "eval_runtime": 5.5259,
352
+ "eval_samples_per_second": 0.724,
353
+ "eval_steps_per_second": 0.181,
354
+ "step": 48
355
+ },
356
+ {
357
+ "epoch": 0.8305084745762712,
358
+ "grad_norm": 0.07792344689369202,
359
+ "learning_rate": 9.333637339772472e-05,
360
+ "loss": 0.91748046875,
361
+ "step": 49
362
+ },
363
+ {
364
+ "epoch": 0.847457627118644,
365
+ "grad_norm": 0.08160696178674698,
366
+ "learning_rate": 9.300804047751092e-05,
367
+ "loss": 1.11083984375,
368
+ "step": 50
369
+ },
370
+ {
371
+ "epoch": 0.864406779661017,
372
+ "grad_norm": 0.07113709300756454,
373
+ "learning_rate": 9.267249152181379e-05,
374
+ "loss": 0.971435546875,
375
+ "step": 51
376
+ },
377
+ {
378
+ "epoch": 0.8813559322033898,
379
+ "grad_norm": 0.0816531628370285,
380
+ "learning_rate": 9.232979023644767e-05,
381
+ "loss": 0.98974609375,
382
+ "step": 52
383
+ },
384
+ {
385
+ "epoch": 0.8983050847457628,
386
+ "grad_norm": 0.08208615332841873,
387
+ "learning_rate": 9.198000168513604e-05,
388
+ "loss": 1.03857421875,
389
+ "step": 53
390
+ },
391
+ {
392
+ "epoch": 0.9152542372881356,
393
+ "grad_norm": 0.08193928748369217,
394
+ "learning_rate": 9.162319227715878e-05,
395
+ "loss": 1.110107421875,
396
+ "step": 54
397
+ },
398
+ {
399
+ "epoch": 0.9322033898305084,
400
+ "grad_norm": 0.08443181961774826,
401
+ "learning_rate": 9.125942975474403e-05,
402
+ "loss": 1.0693359375,
403
+ "step": 55
404
+ },
405
+ {
406
+ "epoch": 0.9491525423728814,
407
+ "grad_norm": 0.08366511017084122,
408
+ "learning_rate": 9.08887831802069e-05,
409
+ "loss": 1.046875,
410
+ "step": 56
411
+ },
412
+ {
413
+ "epoch": 0.9661016949152542,
414
+ "grad_norm": 0.09129314869642258,
415
+ "learning_rate": 9.051132292283771e-05,
416
+ "loss": 0.986572265625,
417
+ "step": 57
418
+ },
419
+ {
420
+ "epoch": 0.9830508474576272,
421
+ "grad_norm": 0.08283063024282455,
422
+ "learning_rate": 9.01271206455419e-05,
423
+ "loss": 0.98095703125,
424
+ "step": 58
425
+ },
426
+ {
427
+ "epoch": 1.0,
428
+ "grad_norm": 0.07913633435964584,
429
+ "learning_rate": 8.973624929123445e-05,
430
+ "loss": 0.962158203125,
431
+ "step": 59
432
+ },
433
+ {
434
+ "epoch": 1.0169491525423728,
435
+ "grad_norm": 0.08337118476629257,
436
+ "learning_rate": 8.93387830689913e-05,
437
+ "loss": 0.85302734375,
438
+ "step": 60
439
+ },
440
+ {
441
+ "epoch": 1.0338983050847457,
442
+ "grad_norm": 0.09908353537321091,
443
+ "learning_rate": 8.893479743996034e-05,
444
+ "loss": 1.0205078125,
445
+ "step": 61
446
+ },
447
+ {
448
+ "epoch": 1.0508474576271187,
449
+ "grad_norm": 0.07855907827615738,
450
+ "learning_rate": 8.852436910303467e-05,
451
+ "loss": 0.90673828125,
452
+ "step": 62
453
+ },
454
+ {
455
+ "epoch": 1.0677966101694916,
456
+ "grad_norm": 1.063303828239441,
457
+ "learning_rate": 8.810757598029093e-05,
458
+ "loss": 0.8740234375,
459
+ "step": 63
460
+ },
461
+ {
462
+ "epoch": 1.0847457627118644,
463
+ "grad_norm": 0.09119535982608795,
464
+ "learning_rate": 8.768449720219533e-05,
465
+ "loss": 0.9609375,
466
+ "step": 64
467
+ },
468
+ {
469
+ "epoch": 1.1016949152542372,
470
+ "grad_norm": 0.07633139193058014,
471
+ "learning_rate": 8.725521309258031e-05,
472
+ "loss": 1.016357421875,
473
+ "step": 65
474
+ },
475
+ {
476
+ "epoch": 1.11864406779661,
477
+ "grad_norm": 0.0819622054696083,
478
+ "learning_rate": 8.681980515339464e-05,
479
+ "loss": 1.029296875,
480
+ "step": 66
481
+ },
482
+ {
483
+ "epoch": 1.1355932203389831,
484
+ "grad_norm": 0.08978190273046494,
485
+ "learning_rate": 8.637835604922979e-05,
486
+ "loss": 0.9619140625,
487
+ "step": 67
488
+ },
489
+ {
490
+ "epoch": 1.152542372881356,
491
+ "grad_norm": 0.08815392851829529,
492
+ "learning_rate": 8.593094959162564e-05,
493
+ "loss": 0.8486328125,
494
+ "step": 68
495
+ },
496
+ {
497
+ "epoch": 1.1694915254237288,
498
+ "grad_norm": 0.08441230654716492,
499
+ "learning_rate": 8.547767072315835e-05,
500
+ "loss": 1.02978515625,
501
+ "step": 69
502
+ },
503
+ {
504
+ "epoch": 1.1864406779661016,
505
+ "grad_norm": 0.08631148934364319,
506
+ "learning_rate": 8.50186055013136e-05,
507
+ "loss": 0.93115234375,
508
+ "step": 70
509
+ },
510
+ {
511
+ "epoch": 1.2033898305084745,
512
+ "grad_norm": 0.09572659432888031,
513
+ "learning_rate": 8.455384108214805e-05,
514
+ "loss": 0.70166015625,
515
+ "step": 71
516
+ },
517
+ {
518
+ "epoch": 1.2203389830508475,
519
+ "grad_norm": 0.0865466445684433,
520
+ "learning_rate": 8.408346570374233e-05,
521
+ "loss": 0.91064453125,
522
+ "step": 72
523
+ },
524
+ {
525
+ "epoch": 1.2372881355932204,
526
+ "grad_norm": 0.09005347639322281,
527
+ "learning_rate": 8.360756866944858e-05,
528
+ "loss": 1.0126953125,
529
+ "step": 73
530
+ },
531
+ {
532
+ "epoch": 1.2542372881355932,
533
+ "grad_norm": 0.08672618865966797,
534
+ "learning_rate": 8.312624033093555e-05,
535
+ "loss": 0.7626953125,
536
+ "step": 74
537
+ },
538
+ {
539
+ "epoch": 1.271186440677966,
540
+ "grad_norm": 0.08496890217065811,
541
+ "learning_rate": 8.263957207103507e-05,
542
+ "loss": 1.0,
543
+ "step": 75
544
+ },
545
+ {
546
+ "epoch": 1.288135593220339,
547
+ "grad_norm": 0.09614504873752594,
548
+ "learning_rate": 8.214765628639235e-05,
549
+ "loss": 0.947265625,
550
+ "step": 76
551
+ },
552
+ {
553
+ "epoch": 1.305084745762712,
554
+ "grad_norm": 0.07839664816856384,
555
+ "learning_rate": 8.165058636992411e-05,
556
+ "loss": 0.915283203125,
557
+ "step": 77
558
+ },
559
+ {
560
+ "epoch": 1.3220338983050848,
561
+ "grad_norm": 0.08440063148736954,
562
+ "learning_rate": 8.114845669308723e-05,
563
+ "loss": 0.99365234375,
564
+ "step": 78
565
+ },
566
+ {
567
+ "epoch": 1.3389830508474576,
568
+ "grad_norm": 0.08282492309808731,
569
+ "learning_rate": 8.064136258796198e-05,
570
+ "loss": 0.7822265625,
571
+ "step": 79
572
+ },
573
+ {
574
+ "epoch": 1.3559322033898304,
575
+ "grad_norm": 0.08753400295972824,
576
+ "learning_rate": 8.012940032915263e-05,
577
+ "loss": 0.8583984375,
578
+ "step": 80
579
+ },
580
+ {
581
+ "epoch": 1.3728813559322033,
582
+ "grad_norm": 0.09745857864618301,
583
+ "learning_rate": 7.961266711550922e-05,
584
+ "loss": 1.078125,
585
+ "step": 81
586
+ },
587
+ {
588
+ "epoch": 1.3898305084745763,
589
+ "grad_norm": 0.09322620183229446,
590
+ "learning_rate": 7.909126105167373e-05,
591
+ "loss": 0.800537109375,
592
+ "step": 82
593
+ },
594
+ {
595
+ "epoch": 1.4067796610169492,
596
+ "grad_norm": 0.09690751135349274,
597
+ "learning_rate": 7.856528112945452e-05,
598
+ "loss": 0.96142578125,
599
+ "step": 83
600
+ },
601
+ {
602
+ "epoch": 1.423728813559322,
603
+ "grad_norm": 0.07993591576814651,
604
+ "learning_rate": 7.803482720903205e-05,
605
+ "loss": 0.909912109375,
606
+ "step": 84
607
+ },
608
+ {
609
+ "epoch": 1.4406779661016949,
610
+ "grad_norm": 0.08795332163572311,
611
+ "learning_rate": 7.75e-05,
612
+ "loss": 0.98095703125,
613
+ "step": 85
614
+ },
615
+ {
616
+ "epoch": 1.457627118644068,
617
+ "grad_norm": 0.0931357815861702,
618
+ "learning_rate": 7.696090104224492e-05,
619
+ "loss": 0.8984375,
620
+ "step": 86
621
+ },
622
+ {
623
+ "epoch": 1.4745762711864407,
624
+ "grad_norm": 0.09056106209754944,
625
+ "learning_rate": 7.641763268666831e-05,
626
+ "loss": 0.927001953125,
627
+ "step": 87
628
+ },
629
+ {
630
+ "epoch": 1.4915254237288136,
631
+ "grad_norm": 0.10342171043157578,
632
+ "learning_rate": 7.587029807575482e-05,
633
+ "loss": 0.9306640625,
634
+ "step": 88
635
+ },
636
+ {
637
+ "epoch": 1.5084745762711864,
638
+ "grad_norm": 0.08985871076583862,
639
+ "learning_rate": 7.531900112399004e-05,
640
+ "loss": 1.006591796875,
641
+ "step": 89
642
+ },
643
+ {
644
+ "epoch": 1.5254237288135593,
645
+ "grad_norm": 0.1016957238316536,
646
+ "learning_rate": 7.476384649813167e-05,
647
+ "loss": 0.9736328125,
648
+ "step": 90
649
+ },
650
+ {
651
+ "epoch": 1.542372881355932,
652
+ "grad_norm": 0.1086297556757927,
653
+ "learning_rate": 7.420493959733816e-05,
654
+ "loss": 0.9091796875,
655
+ "step": 91
656
+ },
657
+ {
658
+ "epoch": 1.559322033898305,
659
+ "grad_norm": 0.09838839620351791,
660
+ "learning_rate": 7.364238653315795e-05,
661
+ "loss": 0.967041015625,
662
+ "step": 92
663
+ },
664
+ {
665
+ "epoch": 1.576271186440678,
666
+ "grad_norm": 0.10762996226549149,
667
+ "learning_rate": 7.307629410938363e-05,
668
+ "loss": 0.95849609375,
669
+ "step": 93
670
+ },
671
+ {
672
+ "epoch": 1.5932203389830508,
673
+ "grad_norm": 0.09758035838603973,
674
+ "learning_rate": 7.250676980177468e-05,
675
+ "loss": 0.89599609375,
676
+ "step": 94
677
+ },
678
+ {
679
+ "epoch": 1.6101694915254239,
680
+ "grad_norm": 0.0979393795132637,
681
+ "learning_rate": 7.193392173765261e-05,
682
+ "loss": 0.855224609375,
683
+ "step": 95
684
+ },
685
+ {
686
+ "epoch": 1.6101694915254239,
687
+ "eval_loss": 0.89306640625,
688
+ "eval_runtime": 5.5076,
689
+ "eval_samples_per_second": 0.726,
690
+ "eval_steps_per_second": 0.182,
691
+ "step": 95
692
+ },
693
+ {
694
+ "epoch": 1.6271186440677967,
695
+ "grad_norm": 0.0959092304110527,
696
+ "learning_rate": 7.135785867537234e-05,
697
+ "loss": 0.95751953125,
698
+ "step": 96
699
+ },
700
+ {
701
+ "epoch": 1.6440677966101696,
702
+ "grad_norm": 0.09253595769405365,
703
+ "learning_rate": 7.077868998367395e-05,
704
+ "loss": 0.91943359375,
705
+ "step": 97
706
+ },
707
+ {
708
+ "epoch": 1.6610169491525424,
709
+ "grad_norm": 0.09634922444820404,
710
+ "learning_rate": 7.019652562091827e-05,
711
+ "loss": 0.871337890625,
712
+ "step": 98
713
+ },
714
+ {
715
+ "epoch": 1.6779661016949152,
716
+ "grad_norm": 0.3277416229248047,
717
+ "learning_rate": 6.961147611421075e-05,
718
+ "loss": 0.76153564453125,
719
+ "step": 99
720
+ },
721
+ {
722
+ "epoch": 1.694915254237288,
723
+ "grad_norm": 0.10589414834976196,
724
+ "learning_rate": 6.902365253841736e-05,
725
+ "loss": 0.88671875,
726
+ "step": 100
727
+ },
728
+ {
729
+ "epoch": 1.711864406779661,
730
+ "grad_norm": 0.08682512491941452,
731
+ "learning_rate": 6.843316649507626e-05,
732
+ "loss": 0.70526123046875,
733
+ "step": 101
734
+ },
735
+ {
736
+ "epoch": 1.7288135593220337,
737
+ "grad_norm": 0.1030946597456932,
738
+ "learning_rate": 6.784013009120974e-05,
739
+ "loss": 0.8876953125,
740
+ "step": 102
741
+ },
742
+ {
743
+ "epoch": 1.7457627118644068,
744
+ "grad_norm": 0.09692194312810898,
745
+ "learning_rate": 6.724465591804008e-05,
746
+ "loss": 0.976318359375,
747
+ "step": 103
748
+ },
749
+ {
750
+ "epoch": 1.7627118644067796,
751
+ "grad_norm": 0.09669726341962814,
752
+ "learning_rate": 6.664685702961344e-05,
753
+ "loss": 0.868408203125,
754
+ "step": 104
755
+ },
756
+ {
757
+ "epoch": 1.7796610169491527,
758
+ "grad_norm": 0.10304367542266846,
759
+ "learning_rate": 6.604684692133597e-05,
760
+ "loss": 0.87451171875,
761
+ "step": 105
762
+ },
763
+ {
764
+ "epoch": 1.7966101694915255,
765
+ "grad_norm": 0.1047707349061966,
766
+ "learning_rate": 6.544473950842606e-05,
767
+ "loss": 0.9775390625,
768
+ "step": 106
769
+ },
770
+ {
771
+ "epoch": 1.8135593220338984,
772
+ "grad_norm": 0.13497479259967804,
773
+ "learning_rate": 6.484064910428692e-05,
774
+ "loss": 0.97412109375,
775
+ "step": 107
776
+ },
777
+ {
778
+ "epoch": 1.8305084745762712,
779
+ "grad_norm": 0.1045294776558876,
780
+ "learning_rate": 6.423469039880354e-05,
781
+ "loss": 0.849365234375,
782
+ "step": 108
783
+ },
784
+ {
785
+ "epoch": 1.847457627118644,
786
+ "grad_norm": 0.10763411968946457,
787
+ "learning_rate": 6.362697843656823e-05,
788
+ "loss": 1.0341796875,
789
+ "step": 109
790
+ },
791
+ {
792
+ "epoch": 1.8644067796610169,
793
+ "grad_norm": 0.09887196868658066,
794
+ "learning_rate": 6.301762859503869e-05,
795
+ "loss": 0.906494140625,
796
+ "step": 110
797
+ },
798
+ {
799
+ "epoch": 1.8813559322033897,
800
+ "grad_norm": 0.09416954219341278,
801
+ "learning_rate": 6.240675656263303e-05,
802
+ "loss": 0.92138671875,
803
+ "step": 111
804
+ },
805
+ {
806
+ "epoch": 1.8983050847457628,
807
+ "grad_norm": 0.10028339922428131,
808
+ "learning_rate": 6.179447831676566e-05,
809
+ "loss": 0.96728515625,
810
+ "step": 112
811
+ },
812
+ {
813
+ "epoch": 1.9152542372881356,
814
+ "grad_norm": 0.11095006763935089,
815
+ "learning_rate": 6.118091010182837e-05,
816
+ "loss": 1.040771484375,
817
+ "step": 113
818
+ },
819
+ {
820
+ "epoch": 1.9322033898305084,
821
+ "grad_norm": 0.09702226519584656,
822
+ "learning_rate": 6.056616840712065e-05,
823
+ "loss": 0.99658203125,
824
+ "step": 114
825
+ },
826
+ {
827
+ "epoch": 1.9491525423728815,
828
+ "grad_norm": 0.11389920860528946,
829
+ "learning_rate": 5.995036994473357e-05,
830
+ "loss": 0.984375,
831
+ "step": 115
832
+ },
833
+ {
834
+ "epoch": 1.9661016949152543,
835
+ "grad_norm": 0.1546120047569275,
836
+ "learning_rate": 5.9333631627391384e-05,
837
+ "loss": 0.921630859375,
838
+ "step": 116
839
+ },
840
+ {
841
+ "epoch": 1.9830508474576272,
842
+ "grad_norm": 0.10404060035943985,
843
+ "learning_rate": 5.8716070546254966e-05,
844
+ "loss": 0.91796875,
845
+ "step": 117
846
+ },
847
+ {
848
+ "epoch": 2.0,
849
+ "grad_norm": 0.10162726789712906,
850
+ "learning_rate": 5.80978039486914e-05,
851
+ "loss": 0.891357421875,
852
+ "step": 118
853
+ },
854
+ {
855
+ "epoch": 2.016949152542373,
856
+ "grad_norm": 0.1013130396604538,
857
+ "learning_rate": 5.747894921601396e-05,
858
+ "loss": 0.792236328125,
859
+ "step": 119
860
+ },
861
+ {
862
+ "epoch": 2.0338983050847457,
863
+ "grad_norm": 0.12374264746904373,
864
+ "learning_rate": 5.6859623841196595e-05,
865
+ "loss": 0.963134765625,
866
+ "step": 120
867
+ },
868
+ {
869
+ "epoch": 2.0508474576271185,
870
+ "grad_norm": 0.10125789046287537,
871
+ "learning_rate": 5.62399454065673e-05,
872
+ "loss": 0.849853515625,
873
+ "step": 121
874
+ },
875
+ {
876
+ "epoch": 2.0677966101694913,
877
+ "grad_norm": 0.10426539182662964,
878
+ "learning_rate": 5.562003156148434e-05,
879
+ "loss": 0.819091796875,
880
+ "step": 122
881
+ },
882
+ {
883
+ "epoch": 2.084745762711864,
884
+ "grad_norm": 0.11077326536178589,
885
+ "learning_rate": 5.500000000000001e-05,
886
+ "loss": 0.9033203125,
887
+ "step": 123
888
+ },
889
+ {
890
+ "epoch": 2.1016949152542375,
891
+ "grad_norm": 0.09078076481819153,
892
+ "learning_rate": 5.437996843851567e-05,
893
+ "loss": 0.95556640625,
894
+ "step": 124
895
+ },
896
+ {
897
+ "epoch": 2.1186440677966103,
898
+ "grad_norm": 0.09942633658647537,
899
+ "learning_rate": 5.376005459343272e-05,
900
+ "loss": 0.97265625,
901
+ "step": 125
902
+ },
903
+ {
904
+ "epoch": 2.135593220338983,
905
+ "grad_norm": 0.12037667632102966,
906
+ "learning_rate": 5.314037615880341e-05,
907
+ "loss": 0.9033203125,
908
+ "step": 126
909
+ },
910
+ {
911
+ "epoch": 2.152542372881356,
912
+ "grad_norm": 1.0118740797042847,
913
+ "learning_rate": 5.2521050783986046e-05,
914
+ "loss": 0.796142578125,
915
+ "step": 127
916
+ },
917
+ {
918
+ "epoch": 2.169491525423729,
919
+ "grad_norm": 0.09780632704496384,
920
+ "learning_rate": 5.190219605130863e-05,
921
+ "loss": 0.9775390625,
922
+ "step": 128
923
+ },
924
+ {
925
+ "epoch": 2.1864406779661016,
926
+ "grad_norm": 0.1027628555893898,
927
+ "learning_rate": 5.128392945374505e-05,
928
+ "loss": 0.875244140625,
929
+ "step": 129
930
+ },
931
+ {
932
+ "epoch": 2.2033898305084745,
933
+ "grad_norm": 0.11545059084892273,
934
+ "learning_rate": 5.066636837260863e-05,
935
+ "loss": 0.656005859375,
936
+ "step": 130
937
+ },
938
+ {
939
+ "epoch": 2.2203389830508473,
940
+ "grad_norm": 0.10182905197143555,
941
+ "learning_rate": 5.004963005526644e-05,
942
+ "loss": 0.860107421875,
943
+ "step": 131
944
+ },
945
+ {
946
+ "epoch": 2.23728813559322,
947
+ "grad_norm": 0.337242066860199,
948
+ "learning_rate": 4.9433831592879355e-05,
949
+ "loss": 0.95751953125,
950
+ "step": 132
951
+ },
952
+ {
953
+ "epoch": 2.2542372881355934,
954
+ "grad_norm": 0.12530653178691864,
955
+ "learning_rate": 4.881908989817163e-05,
956
+ "loss": 0.71533203125,
957
+ "step": 133
958
+ },
959
+ {
960
+ "epoch": 2.2711864406779663,
961
+ "grad_norm": 0.1110646054148674,
962
+ "learning_rate": 4.8205521683234335e-05,
963
+ "loss": 0.947265625,
964
+ "step": 134
965
+ },
966
+ {
967
+ "epoch": 2.288135593220339,
968
+ "grad_norm": 0.09985275566577911,
969
+ "learning_rate": 4.7593243437366975e-05,
970
+ "loss": 0.897216796875,
971
+ "step": 135
972
+ },
973
+ {
974
+ "epoch": 2.305084745762712,
975
+ "grad_norm": 0.09477593004703522,
976
+ "learning_rate": 4.698237140496132e-05,
977
+ "loss": 0.86962890625,
978
+ "step": 136
979
+ },
980
+ {
981
+ "epoch": 2.3220338983050848,
982
+ "grad_norm": 0.10785605013370514,
983
+ "learning_rate": 4.6373021563431784e-05,
984
+ "loss": 0.947998046875,
985
+ "step": 137
986
+ },
987
+ {
988
+ "epoch": 2.3389830508474576,
989
+ "grad_norm": 0.1287638396024704,
990
+ "learning_rate": 4.576530960119646e-05,
991
+ "loss": 0.7392578125,
992
+ "step": 138
993
+ },
994
+ {
995
+ "epoch": 2.3559322033898304,
996
+ "grad_norm": 0.09915657341480255,
997
+ "learning_rate": 4.515935089571309e-05,
998
+ "loss": 0.81396484375,
999
+ "step": 139
1000
+ },
1001
+ {
1002
+ "epoch": 2.3728813559322033,
1003
+ "grad_norm": 0.11962717771530151,
1004
+ "learning_rate": 4.455526049157396e-05,
1005
+ "loss": 1.0302734375,
1006
+ "step": 140
1007
+ },
1008
+ {
1009
+ "epoch": 2.389830508474576,
1010
+ "grad_norm": 0.1173805221915245,
1011
+ "learning_rate": 4.395315307866405e-05,
1012
+ "loss": 0.757080078125,
1013
+ "step": 141
1014
+ },
1015
+ {
1016
+ "epoch": 2.406779661016949,
1017
+ "grad_norm": 0.10178910940885544,
1018
+ "learning_rate": 4.3353142970386564e-05,
1019
+ "loss": 0.91796875,
1020
+ "step": 142
1021
+ },
1022
+ {
1023
+ "epoch": 2.406779661016949,
1024
+ "eval_loss": 0.876953125,
1025
+ "eval_runtime": 5.5331,
1026
+ "eval_samples_per_second": 0.723,
1027
+ "eval_steps_per_second": 0.181,
1028
+ "step": 142
1029
+ },
1030
+ {
1031
+ "epoch": 2.423728813559322,
1032
+ "grad_norm": 0.0964282676577568,
1033
+ "learning_rate": 4.275534408195991e-05,
1034
+ "loss": 0.869140625,
1035
+ "step": 143
1036
+ },
1037
+ {
1038
+ "epoch": 2.440677966101695,
1039
+ "grad_norm": 0.09992555528879166,
1040
+ "learning_rate": 4.215986990879027e-05,
1041
+ "loss": 0.93701171875,
1042
+ "step": 144
1043
+ },
1044
+ {
1045
+ "epoch": 2.457627118644068,
1046
+ "grad_norm": 0.11470576375722885,
1047
+ "learning_rate": 4.156683350492376e-05,
1048
+ "loss": 0.85498046875,
1049
+ "step": 145
1050
+ },
1051
+ {
1052
+ "epoch": 2.4745762711864407,
1053
+ "grad_norm": 0.10724995285272598,
1054
+ "learning_rate": 4.0976347461582654e-05,
1055
+ "loss": 0.8857421875,
1056
+ "step": 146
1057
+ },
1058
+ {
1059
+ "epoch": 2.4915254237288136,
1060
+ "grad_norm": 0.10291863232851028,
1061
+ "learning_rate": 4.0388523885789256e-05,
1062
+ "loss": 0.88671875,
1063
+ "step": 147
1064
+ },
1065
+ {
1066
+ "epoch": 2.5084745762711864,
1067
+ "grad_norm": 0.12115908414125443,
1068
+ "learning_rate": 3.980347437908175e-05,
1069
+ "loss": 0.9638671875,
1070
+ "step": 148
1071
+ },
1072
+ {
1073
+ "epoch": 2.5254237288135593,
1074
+ "grad_norm": 0.12119631469249725,
1075
+ "learning_rate": 3.922131001632606e-05,
1076
+ "loss": 0.93115234375,
1077
+ "step": 149
1078
+ },
1079
+ {
1080
+ "epoch": 2.542372881355932,
1081
+ "grad_norm": 0.11702482402324677,
1082
+ "learning_rate": 3.864214132462765e-05,
1083
+ "loss": 0.866943359375,
1084
+ "step": 150
1085
+ },
1086
+ {
1087
+ "epoch": 2.559322033898305,
1088
+ "grad_norm": 0.10389980673789978,
1089
+ "learning_rate": 3.8066078262347406e-05,
1090
+ "loss": 0.92919921875,
1091
+ "step": 151
1092
+ },
1093
+ {
1094
+ "epoch": 2.576271186440678,
1095
+ "grad_norm": 0.1386137753725052,
1096
+ "learning_rate": 3.749323019822534e-05,
1097
+ "loss": 0.9169921875,
1098
+ "step": 152
1099
+ },
1100
+ {
1101
+ "epoch": 2.593220338983051,
1102
+ "grad_norm": 0.10683158785104752,
1103
+ "learning_rate": 3.692370589061639e-05,
1104
+ "loss": 0.85595703125,
1105
+ "step": 153
1106
+ },
1107
+ {
1108
+ "epoch": 2.610169491525424,
1109
+ "grad_norm": 0.11181148141622543,
1110
+ "learning_rate": 3.6357613466842054e-05,
1111
+ "loss": 0.815673828125,
1112
+ "step": 154
1113
+ },
1114
+ {
1115
+ "epoch": 2.6271186440677967,
1116
+ "grad_norm": 0.12605640292167664,
1117
+ "learning_rate": 3.579506040266184e-05,
1118
+ "loss": 0.919677734375,
1119
+ "step": 155
1120
+ },
1121
+ {
1122
+ "epoch": 2.6440677966101696,
1123
+ "grad_norm": 0.11007009446620941,
1124
+ "learning_rate": 3.523615350186834e-05,
1125
+ "loss": 0.88134765625,
1126
+ "step": 156
1127
+ },
1128
+ {
1129
+ "epoch": 2.6610169491525424,
1130
+ "grad_norm": 0.0949372947216034,
1131
+ "learning_rate": 3.468099887600999e-05,
1132
+ "loss": 0.833984375,
1133
+ "step": 157
1134
+ },
1135
+ {
1136
+ "epoch": 2.6779661016949152,
1137
+ "grad_norm": 0.09774491935968399,
1138
+ "learning_rate": 3.412970192424517e-05,
1139
+ "loss": 0.73193359375,
1140
+ "step": 158
1141
+ },
1142
+ {
1143
+ "epoch": 2.694915254237288,
1144
+ "grad_norm": 0.1312067061662674,
1145
+ "learning_rate": 3.358236731333169e-05,
1146
+ "loss": 0.84912109375,
1147
+ "step": 159
1148
+ },
1149
+ {
1150
+ "epoch": 2.711864406779661,
1151
+ "grad_norm": 0.09475670754909515,
1152
+ "learning_rate": 3.3039098957755097e-05,
1153
+ "loss": 0.67608642578125,
1154
+ "step": 160
1155
+ },
1156
+ {
1157
+ "epoch": 2.7288135593220337,
1158
+ "grad_norm": 0.11485911160707474,
1159
+ "learning_rate": 3.250000000000001e-05,
1160
+ "loss": 0.848388671875,
1161
+ "step": 161
1162
+ },
1163
+ {
1164
+ "epoch": 2.7457627118644066,
1165
+ "grad_norm": 0.10541412979364395,
1166
+ "learning_rate": 3.1965172790967965e-05,
1167
+ "loss": 0.9404296875,
1168
+ "step": 162
1169
+ },
1170
+ {
1171
+ "epoch": 2.7627118644067794,
1172
+ "grad_norm": 0.2602388262748718,
1173
+ "learning_rate": 3.14347188705455e-05,
1174
+ "loss": 0.83349609375,
1175
+ "step": 163
1176
+ },
1177
+ {
1178
+ "epoch": 2.7796610169491527,
1179
+ "grad_norm": 0.10894317924976349,
1180
+ "learning_rate": 3.0908738948326285e-05,
1181
+ "loss": 0.838134765625,
1182
+ "step": 164
1183
+ },
1184
+ {
1185
+ "epoch": 2.7966101694915255,
1186
+ "grad_norm": 0.11598169803619385,
1187
+ "learning_rate": 3.0387332884490805e-05,
1188
+ "loss": 0.94140625,
1189
+ "step": 165
1190
+ },
1191
+ {
1192
+ "epoch": 2.8135593220338984,
1193
+ "grad_norm": 0.09514643251895905,
1194
+ "learning_rate": 2.9870599670847366e-05,
1195
+ "loss": 0.940673828125,
1196
+ "step": 166
1197
+ },
1198
+ {
1199
+ "epoch": 2.830508474576271,
1200
+ "grad_norm": 0.11295430362224579,
1201
+ "learning_rate": 2.9358637412038027e-05,
1202
+ "loss": 0.8154296875,
1203
+ "step": 167
1204
+ },
1205
+ {
1206
+ "epoch": 2.847457627118644,
1207
+ "grad_norm": 0.13384811580181122,
1208
+ "learning_rate": 2.885154330691278e-05,
1209
+ "loss": 0.9990234375,
1210
+ "step": 168
1211
+ },
1212
+ {
1213
+ "epoch": 2.864406779661017,
1214
+ "grad_norm": 0.10941619426012039,
1215
+ "learning_rate": 2.8349413630075906e-05,
1216
+ "loss": 0.87255859375,
1217
+ "step": 169
1218
+ },
1219
+ {
1220
+ "epoch": 2.8813559322033897,
1221
+ "grad_norm": 0.12930384278297424,
1222
+ "learning_rate": 2.785234371360766e-05,
1223
+ "loss": 0.88671875,
1224
+ "step": 170
1225
+ },
1226
+ {
1227
+ "epoch": 2.898305084745763,
1228
+ "grad_norm": 0.11116838455200195,
1229
+ "learning_rate": 2.736042792896495e-05,
1230
+ "loss": 0.932373046875,
1231
+ "step": 171
1232
+ },
1233
+ {
1234
+ "epoch": 2.915254237288136,
1235
+ "grad_norm": 0.12374906986951828,
1236
+ "learning_rate": 2.6873759669064476e-05,
1237
+ "loss": 1.005126953125,
1238
+ "step": 172
1239
+ },
1240
+ {
1241
+ "epoch": 2.9322033898305087,
1242
+ "grad_norm": 0.11184250563383102,
1243
+ "learning_rate": 2.639243133055145e-05,
1244
+ "loss": 0.96240234375,
1245
+ "step": 173
1246
+ },
1247
+ {
1248
+ "epoch": 2.9491525423728815,
1249
+ "grad_norm": 0.10277713090181351,
1250
+ "learning_rate": 2.5916534296257655e-05,
1251
+ "loss": 0.953125,
1252
+ "step": 174
1253
+ },
1254
+ {
1255
+ "epoch": 2.9661016949152543,
1256
+ "grad_norm": 0.11024855822324753,
1257
+ "learning_rate": 2.5446158917851958e-05,
1258
+ "loss": 0.890869140625,
1259
+ "step": 175
1260
+ },
1261
+ {
1262
+ "epoch": 2.983050847457627,
1263
+ "grad_norm": 0.11626192927360535,
1264
+ "learning_rate": 2.498139449868641e-05,
1265
+ "loss": 0.8876953125,
1266
+ "step": 176
1267
+ },
1268
+ {
1269
+ "epoch": 3.0,
1270
+ "grad_norm": 0.11005569249391556,
1271
+ "learning_rate": 2.4522329276841663e-05,
1272
+ "loss": 0.8564453125,
1273
+ "step": 177
1274
+ },
1275
+ {
1276
+ "epoch": 3.016949152542373,
1277
+ "grad_norm": 0.10232047736644745,
1278
+ "learning_rate": 2.4069050408374373e-05,
1279
+ "loss": 0.759765625,
1280
+ "step": 178
1281
+ },
1282
+ {
1283
+ "epoch": 3.0338983050847457,
1284
+ "grad_norm": 0.11233022063970566,
1285
+ "learning_rate": 2.362164395077021e-05,
1286
+ "loss": 0.93603515625,
1287
+ "step": 179
1288
+ },
1289
+ {
1290
+ "epoch": 3.0508474576271185,
1291
+ "grad_norm": 0.10281368345022202,
1292
+ "learning_rate": 2.3180194846605367e-05,
1293
+ "loss": 0.82080078125,
1294
+ "step": 180
1295
+ },
1296
+ {
1297
+ "epoch": 3.0677966101694913,
1298
+ "grad_norm": 0.10223117470741272,
1299
+ "learning_rate": 2.2744786907419703e-05,
1300
+ "loss": 0.792236328125,
1301
+ "step": 181
1302
+ },
1303
+ {
1304
+ "epoch": 3.084745762711864,
1305
+ "grad_norm": 0.10896459966897964,
1306
+ "learning_rate": 2.231550279780468e-05,
1307
+ "loss": 0.87158203125,
1308
+ "step": 182
1309
+ },
1310
+ {
1311
+ "epoch": 3.1016949152542375,
1312
+ "grad_norm": 0.10090362280607224,
1313
+ "learning_rate": 2.189242401970908e-05,
1314
+ "loss": 0.928466796875,
1315
+ "step": 183
1316
+ },
1317
+ {
1318
+ "epoch": 3.1186440677966103,
1319
+ "grad_norm": 0.09479139000177383,
1320
+ "learning_rate": 2.1475630896965336e-05,
1321
+ "loss": 0.946533203125,
1322
+ "step": 184
1323
+ },
1324
+ {
1325
+ "epoch": 3.135593220338983,
1326
+ "grad_norm": 0.1425022929906845,
1327
+ "learning_rate": 2.1065202560039677e-05,
1328
+ "loss": 0.875244140625,
1329
+ "step": 185
1330
+ },
1331
+ {
1332
+ "epoch": 3.152542372881356,
1333
+ "grad_norm": 0.10372081398963928,
1334
+ "learning_rate": 2.0661216931008714e-05,
1335
+ "loss": 0.773681640625,
1336
+ "step": 186
1337
+ },
1338
+ {
1339
+ "epoch": 3.169491525423729,
1340
+ "grad_norm": 0.09539317339658737,
1341
+ "learning_rate": 2.026375070876556e-05,
1342
+ "loss": 0.95068359375,
1343
+ "step": 187
1344
+ },
1345
+ {
1346
+ "epoch": 3.1864406779661016,
1347
+ "grad_norm": 0.10878961533308029,
1348
+ "learning_rate": 1.987287935445811e-05,
1349
+ "loss": 0.847900390625,
1350
+ "step": 188
1351
+ },
1352
+ {
1353
+ "epoch": 3.2033898305084745,
1354
+ "grad_norm": 0.11231493949890137,
1355
+ "learning_rate": 1.9488677077162295e-05,
1356
+ "loss": 0.631103515625,
1357
+ "step": 189
1358
+ },
1359
+ {
1360
+ "epoch": 3.2033898305084745,
1361
+ "eval_loss": 0.869140625,
1362
+ "eval_runtime": 5.5277,
1363
+ "eval_samples_per_second": 0.724,
1364
+ "eval_steps_per_second": 0.181,
1365
+ "step": 189
1366
+ },
1367
+ {
1368
+ "epoch": 3.2203389830508473,
1369
+ "grad_norm": 0.10731599479913712,
1370
+ "learning_rate": 1.9111216819793097e-05,
1371
+ "loss": 0.834228515625,
1372
+ "step": 190
1373
+ },
1374
+ {
1375
+ "epoch": 3.23728813559322,
1376
+ "grad_norm": 0.10284540802240372,
1377
+ "learning_rate": 1.8740570245255984e-05,
1378
+ "loss": 0.92919921875,
1379
+ "step": 191
1380
+ },
1381
+ {
1382
+ "epoch": 3.2542372881355934,
1383
+ "grad_norm": 0.11073050647974014,
1384
+ "learning_rate": 1.837680772284123e-05,
1385
+ "loss": 0.689453125,
1386
+ "step": 192
1387
+ },
1388
+ {
1389
+ "epoch": 3.2711864406779663,
1390
+ "grad_norm": 0.12270122021436691,
1391
+ "learning_rate": 1.8019998314863974e-05,
1392
+ "loss": 0.91943359375,
1393
+ "step": 193
1394
+ },
1395
+ {
1396
+ "epoch": 3.288135593220339,
1397
+ "grad_norm": 0.10275924950838089,
1398
+ "learning_rate": 1.767020976355234e-05,
1399
+ "loss": 0.873779296875,
1400
+ "step": 194
1401
+ },
1402
+ {
1403
+ "epoch": 3.305084745762712,
1404
+ "grad_norm": 0.097442127764225,
1405
+ "learning_rate": 1.7327508478186218e-05,
1406
+ "loss": 0.845458984375,
1407
+ "step": 195
1408
+ },
1409
+ {
1410
+ "epoch": 3.3220338983050848,
1411
+ "grad_norm": 0.09888269007205963,
1412
+ "learning_rate": 1.6991959522489082e-05,
1413
+ "loss": 0.921875,
1414
+ "step": 196
1415
+ },
1416
+ {
1417
+ "epoch": 3.3389830508474576,
1418
+ "grad_norm": 0.10165548324584961,
1419
+ "learning_rate": 1.6663626602275288e-05,
1420
+ "loss": 0.71728515625,
1421
+ "step": 197
1422
+ },
1423
+ {
1424
+ "epoch": 3.3559322033898304,
1425
+ "grad_norm": 0.1232258751988411,
1426
+ "learning_rate": 1.6342572053355166e-05,
1427
+ "loss": 0.793212890625,
1428
+ "step": 198
1429
+ },
1430
+ {
1431
+ "epoch": 3.3728813559322033,
1432
+ "grad_norm": 0.10164085775613785,
1433
+ "learning_rate": 1.602885682970026e-05,
1434
+ "loss": 1.0048828125,
1435
+ "step": 199
1436
+ },
1437
+ {
1438
+ "epoch": 3.389830508474576,
1439
+ "grad_norm": 0.10870424658060074,
1440
+ "learning_rate": 1.5722540491870837e-05,
1441
+ "loss": 0.734130859375,
1442
+ "step": 200
1443
+ },
1444
+ {
1445
+ "epoch": 3.406779661016949,
1446
+ "grad_norm": 0.09911137819290161,
1447
+ "learning_rate": 1.5423681195707997e-05,
1448
+ "loss": 0.89501953125,
1449
+ "step": 201
1450
+ },
1451
+ {
1452
+ "epoch": 3.423728813559322,
1453
+ "grad_norm": 0.09735211730003357,
1454
+ "learning_rate": 1.5132335681292492e-05,
1455
+ "loss": 0.849365234375,
1456
+ "step": 202
1457
+ },
1458
+ {
1459
+ "epoch": 3.440677966101695,
1460
+ "grad_norm": 0.11244349926710129,
1461
+ "learning_rate": 1.484855926217227e-05,
1462
+ "loss": 0.91259765625,
1463
+ "step": 203
1464
+ },
1465
+ {
1466
+ "epoch": 3.457627118644068,
1467
+ "grad_norm": 0.10653837025165558,
1468
+ "learning_rate": 1.4572405814860954e-05,
1469
+ "loss": 0.831298828125,
1470
+ "step": 204
1471
+ },
1472
+ {
1473
+ "epoch": 3.4745762711864407,
1474
+ "grad_norm": 0.1004338338971138,
1475
+ "learning_rate": 1.4303927768609015e-05,
1476
+ "loss": 0.86279296875,
1477
+ "step": 205
1478
+ },
1479
+ {
1480
+ "epoch": 3.4915254237288136,
1481
+ "grad_norm": 0.11053711920976639,
1482
+ "learning_rate": 1.4043176095449841e-05,
1483
+ "loss": 0.8623046875,
1484
+ "step": 206
1485
+ },
1486
+ {
1487
+ "epoch": 3.5084745762711864,
1488
+ "grad_norm": 0.11450106650590897,
1489
+ "learning_rate": 1.3790200300522413e-05,
1490
+ "loss": 0.94287109375,
1491
+ "step": 207
1492
+ },
1493
+ {
1494
+ "epoch": 3.5254237288135593,
1495
+ "grad_norm": 0.1193515956401825,
1496
+ "learning_rate": 1.354504841267246e-05,
1497
+ "loss": 0.91064453125,
1498
+ "step": 208
1499
+ },
1500
+ {
1501
+ "epoch": 3.542372881355932,
1502
+ "grad_norm": 0.10841777920722961,
1503
+ "learning_rate": 1.330776697533392e-05,
1504
+ "loss": 0.845947265625,
1505
+ "step": 209
1506
+ },
1507
+ {
1508
+ "epoch": 3.559322033898305,
1509
+ "grad_norm": 0.09431479871273041,
1510
+ "learning_rate": 1.307840103769245e-05,
1511
+ "loss": 0.90966796875,
1512
+ "step": 210
1513
+ },
1514
+ {
1515
+ "epoch": 3.576271186440678,
1516
+ "grad_norm": 0.12500523030757904,
1517
+ "learning_rate": 1.2856994146132542e-05,
1518
+ "loss": 0.89599609375,
1519
+ "step": 211
1520
+ },
1521
+ {
1522
+ "epoch": 3.593220338983051,
1523
+ "grad_norm": 0.10567139089107513,
1524
+ "learning_rate": 1.2643588335970022e-05,
1525
+ "loss": 0.83544921875,
1526
+ "step": 212
1527
+ },
1528
+ {
1529
+ "epoch": 3.610169491525424,
1530
+ "grad_norm": 0.10635709017515182,
1531
+ "learning_rate": 1.2438224123471442e-05,
1532
+ "loss": 0.794921875,
1533
+ "step": 213
1534
+ },
1535
+ {
1536
+ "epoch": 3.6271186440677967,
1537
+ "grad_norm": 0.10316949337720871,
1538
+ "learning_rate": 1.2240940498161797e-05,
1539
+ "loss": 0.900146484375,
1540
+ "step": 214
1541
+ },
1542
+ {
1543
+ "epoch": 3.6440677966101696,
1544
+ "grad_norm": 0.09647554159164429,
1545
+ "learning_rate": 1.2051774915422163e-05,
1546
+ "loss": 0.8642578125,
1547
+ "step": 215
1548
+ },
1549
+ {
1550
+ "epoch": 3.6610169491525424,
1551
+ "grad_norm": 0.09970184415578842,
1552
+ "learning_rate": 1.1870763289378629e-05,
1553
+ "loss": 0.81787109375,
1554
+ "step": 216
1555
+ },
1556
+ {
1557
+ "epoch": 3.6779661016949152,
1558
+ "grad_norm": 0.09053965657949448,
1559
+ "learning_rate": 1.1697939986083733e-05,
1560
+ "loss": 0.71661376953125,
1561
+ "step": 217
1562
+ },
1563
+ {
1564
+ "epoch": 3.694915254237288,
1565
+ "grad_norm": 0.10457823425531387,
1566
+ "learning_rate": 1.1533337816991932e-05,
1567
+ "loss": 0.83056640625,
1568
+ "step": 218
1569
+ },
1570
+ {
1571
+ "epoch": 3.711864406779661,
1572
+ "grad_norm": 0.09273640811443329,
1573
+ "learning_rate": 1.1376988032730134e-05,
1574
+ "loss": 0.6630859375,
1575
+ "step": 219
1576
+ },
1577
+ {
1578
+ "epoch": 3.7288135593220337,
1579
+ "grad_norm": 0.10779716819524765,
1580
+ "learning_rate": 1.1228920317164623e-05,
1581
+ "loss": 0.833251953125,
1582
+ "step": 220
1583
+ },
1584
+ {
1585
+ "epoch": 3.7457627118644066,
1586
+ "grad_norm": 0.11510983109474182,
1587
+ "learning_rate": 1.1089162781765398e-05,
1588
+ "loss": 0.923095703125,
1589
+ "step": 221
1590
+ },
1591
+ {
1592
+ "epoch": 3.7627118644067794,
1593
+ "grad_norm": 0.10284290462732315,
1594
+ "learning_rate": 1.0957741960269049e-05,
1595
+ "loss": 0.81591796875,
1596
+ "step": 222
1597
+ },
1598
+ {
1599
+ "epoch": 3.7796610169491527,
1600
+ "grad_norm": 0.11504746228456497,
1601
+ "learning_rate": 1.0834682803641197e-05,
1602
+ "loss": 0.820068359375,
1603
+ "step": 223
1604
+ },
1605
+ {
1606
+ "epoch": 3.7966101694915255,
1607
+ "grad_norm": 0.10790020227432251,
1608
+ "learning_rate": 1.0720008675339404e-05,
1609
+ "loss": 0.925048828125,
1610
+ "step": 224
1611
+ },
1612
+ {
1613
+ "epoch": 3.8135593220338984,
1614
+ "grad_norm": 0.10109377652406693,
1615
+ "learning_rate": 1.0613741346877497e-05,
1616
+ "loss": 0.925537109375,
1617
+ "step": 225
1618
+ },
1619
+ {
1620
+ "epoch": 3.830508474576271,
1621
+ "grad_norm": 0.10490377247333527,
1622
+ "learning_rate": 1.0515900993692127e-05,
1623
+ "loss": 0.800537109375,
1624
+ "step": 226
1625
+ },
1626
+ {
1627
+ "epoch": 3.847457627118644,
1628
+ "grad_norm": 0.10508555173873901,
1629
+ "learning_rate": 1.0426506191312355e-05,
1630
+ "loss": 0.98046875,
1631
+ "step": 227
1632
+ },
1633
+ {
1634
+ "epoch": 3.864406779661017,
1635
+ "grad_norm": 0.10123743861913681,
1636
+ "learning_rate": 1.0345573911832976e-05,
1637
+ "loss": 0.85791015625,
1638
+ "step": 228
1639
+ },
1640
+ {
1641
+ "epoch": 3.8813559322033897,
1642
+ "grad_norm": 0.10421520471572876,
1643
+ "learning_rate": 1.0273119520692275e-05,
1644
+ "loss": 0.87060546875,
1645
+ "step": 229
1646
+ },
1647
+ {
1648
+ "epoch": 3.898305084745763,
1649
+ "grad_norm": 0.1495855748653412,
1650
+ "learning_rate": 1.020915677375483e-05,
1651
+ "loss": 0.917724609375,
1652
+ "step": 230
1653
+ },
1654
+ {
1655
+ "epoch": 3.915254237288136,
1656
+ "grad_norm": 0.10790368914604187,
1657
+ "learning_rate": 1.0153697814699859e-05,
1658
+ "loss": 0.990966796875,
1659
+ "step": 231
1660
+ },
1661
+ {
1662
+ "epoch": 3.9322033898305087,
1663
+ "grad_norm": 0.10553882271051407,
1664
+ "learning_rate": 1.01067531727157e-05,
1665
+ "loss": 0.94677734375,
1666
+ "step": 232
1667
+ },
1668
+ {
1669
+ "epoch": 3.9491525423728815,
1670
+ "grad_norm": 0.1143532320857048,
1671
+ "learning_rate": 1.0068331760500774e-05,
1672
+ "loss": 0.939208984375,
1673
+ "step": 233
1674
+ },
1675
+ {
1676
+ "epoch": 3.9661016949152543,
1677
+ "grad_norm": 0.10906478762626648,
1678
+ "learning_rate": 1.0038440872571456e-05,
1679
+ "loss": 0.877197265625,
1680
+ "step": 234
1681
+ },
1682
+ {
1683
+ "epoch": 3.983050847457627,
1684
+ "grad_norm": 0.1037352979183197,
1685
+ "learning_rate": 1.0017086183877188e-05,
1686
+ "loss": 0.87548828125,
1687
+ "step": 235
1688
+ },
1689
+ {
1690
+ "epoch": 4.0,
1691
+ "grad_norm": 0.10856913775205612,
1692
+ "learning_rate": 1.0004271748723041e-05,
1693
+ "loss": 0.84228515625,
1694
+ "step": 236
1695
+ },
1696
+ {
1697
+ "epoch": 4.0,
1698
+ "eval_loss": 0.8642578125,
1699
+ "eval_runtime": 5.5072,
1700
+ "eval_samples_per_second": 0.726,
1701
+ "eval_steps_per_second": 0.182,
1702
+ "step": 236
1703
+ }
1704
+ ],
1705
+ "logging_steps": 1.0,
1706
+ "max_steps": 236,
1707
+ "num_input_tokens_seen": 0,
1708
+ "num_train_epochs": 4,
1709
+ "save_steps": 0,
1710
+ "stateful_callbacks": {
1711
+ "TrainerControl": {
1712
+ "args": {
1713
+ "should_epoch_stop": false,
1714
+ "should_evaluate": false,
1715
+ "should_log": false,
1716
+ "should_save": true,
1717
+ "should_training_stop": true
1718
+ },
1719
+ "attributes": {}
1720
+ }
1721
+ },
1722
+ "total_flos": 2.0521223963556184e+19,
1723
+ "train_batch_size": 1,
1724
+ "trial_name": null,
1725
+ "trial_params": null
1726
+ }
training-metrics.png ADDED

Git LFS Details

  • SHA256: 0990b671112c1458d63f22141431375342d5287b08fac4218770c57edd753297
  • Pointer size: 131 Bytes
  • Size of remote file: 147 kB
win-rates.png ADDED

Git LFS Details

  • SHA256: 801c560e35d0cb5305e7c6d1e60734c4ee813044fee88de9e8b1da48055901c7
  • Pointer size: 131 Bytes
  • Size of remote file: 110 kB