stenml commited on
Commit
95e3e0b
·
verified ·
1 Parent(s): e66bd33

BowLingual 12B v2.1 raw training output

Browse files
Files changed (49) hide show
  1. .gitattributes +4 -0
  2. DATASET_SHA256.txt +1 -0
  3. RC_SELECTION.tsv +3 -0
  4. README.md +59 -0
  5. best-lora/README.md +210 -0
  6. best-lora/adapter_config.json +46 -0
  7. best-lora/adapter_model.safetensors +3 -0
  8. best-lora/chat_template.jinja +70 -0
  9. best-lora/processor_config.json +62 -0
  10. best-lora/tokenizer.json +3 -0
  11. best-lora/tokenizer_config.json +290 -0
  12. best-lora/training_args.bin +3 -0
  13. best_checkpoint.txt +2 -0
  14. checkpoint-1400/README.md +210 -0
  15. checkpoint-1400/adapter_config.json +46 -0
  16. checkpoint-1400/adapter_model.safetensors +3 -0
  17. checkpoint-1400/chat_template.jinja +70 -0
  18. checkpoint-1400/optimizer.pt +3 -0
  19. checkpoint-1400/processor_config.json +62 -0
  20. checkpoint-1400/rng_state.pth +3 -0
  21. checkpoint-1400/scheduler.pt +3 -0
  22. checkpoint-1400/tokenizer.json +3 -0
  23. checkpoint-1400/tokenizer_config.json +290 -0
  24. checkpoint-1400/trainer_state.json +2218 -0
  25. checkpoint-1400/training_args.bin +3 -0
  26. checkpoint-1425/README.md +210 -0
  27. checkpoint-1425/adapter_config.json +46 -0
  28. checkpoint-1425/adapter_model.safetensors +3 -0
  29. checkpoint-1425/chat_template.jinja +70 -0
  30. checkpoint-1425/optimizer.pt +3 -0
  31. checkpoint-1425/processor_config.json +62 -0
  32. checkpoint-1425/rng_state.pth +3 -0
  33. checkpoint-1425/scheduler.pt +3 -0
  34. checkpoint-1425/tokenizer.json +3 -0
  35. checkpoint-1425/tokenizer_config.json +290 -0
  36. checkpoint-1425/trainer_state.json +2261 -0
  37. checkpoint-1425/training_args.bin +3 -0
  38. checkpoint-950/README.md +210 -0
  39. checkpoint-950/adapter_config.json +46 -0
  40. checkpoint-950/adapter_model.safetensors +3 -0
  41. checkpoint-950/chat_template.jinja +70 -0
  42. checkpoint-950/optimizer.pt +3 -0
  43. checkpoint-950/processor_config.json +62 -0
  44. checkpoint-950/rng_state.pth +3 -0
  45. checkpoint-950/scheduler.pt +3 -0
  46. checkpoint-950/tokenizer.json +3 -0
  47. checkpoint-950/tokenizer_config.json +290 -0
  48. checkpoint-950/trainer_state.json +1516 -0
  49. checkpoint-950/training_args.bin +3 -0
.gitattributes CHANGED
@@ -33,3 +33,7 @@ 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
+ best-lora/tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-1400/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-1425/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ checkpoint-950/tokenizer.json filter=lfs diff=lfs merge=lfs -text
DATASET_SHA256.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 154ccb8fb7abe1ffd8494a083dbe1e77c8ca410878e2ad01daf1f7e99b8cf01e /app/data/dataset.jsonl
RC_SELECTION.tsv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ 1 950 0.5508978963 2.0000000000 /output/checkpoint-950
2
+ 2 1400 0.6027438641 2.9473684211 /output/checkpoint-1400
3
+ 3 1425 0.6031771302 3.0000000000 /output/checkpoint-1425
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-12b-it
3
+ library_name: transformers
4
+ model_name: output
5
+ tags:
6
+ - generated_from_trainer
7
+ - sft
8
+ - trl
9
+ - unsloth
10
+ licence: license
11
+ ---
12
+
13
+ # Model Card for output
14
+
15
+ This model is a fine-tuned version of [unsloth/gemma-4-12b-it](https://huggingface.co/unsloth/gemma-4-12b-it).
16
+ It has been trained using [TRL](https://github.com/huggingface/trl).
17
+
18
+ ## Quick start
19
+
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
24
+ generator = pipeline("text-generation", model="None", device="cuda")
25
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
+ print(output["generated_text"])
27
+ ```
28
+
29
+ ## Training procedure
30
+
31
+
32
+
33
+
34
+ This model was trained with SFT.
35
+
36
+ ### Framework versions
37
+
38
+ - TRL: 0.24.0
39
+ - Transformers: 5.10.2
40
+ - Pytorch: 2.11.0+cu130
41
+ - Datasets: 4.3.0
42
+ - Tokenizers: 0.22.2
43
+
44
+ ## Citations
45
+
46
+
47
+
48
+ Cite TRL as:
49
+
50
+ ```bibtex
51
+ @misc{vonwerra2022trl,
52
+ title = {{TRL: Transformer Reinforcement Learning}},
53
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
54
+ year = 2020,
55
+ journal = {GitHub repository},
56
+ publisher = {GitHub},
57
+ howpublished = {\url{https://github.com/huggingface/trl}}
58
+ }
59
+ ```
best-lora/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-12b-it
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/gemma-4-12b-it
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.20.0
best-lora/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Gemma4UnifiedForConditionalGeneration",
7
+ "parent_library": "transformers.models.gemma4_unified.modeling_gemma4_unified",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/gemma-4-12b-it",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "monteclora_config": null,
31
+ "peft_type": "LORA",
32
+ "peft_version": "0.20.0",
33
+ "qalora_group_size": 16,
34
+ "r": 16,
35
+ "rank_pattern": {},
36
+ "revision": null,
37
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer).*?(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection))|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer)\\.(?:(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection)))",
38
+ "target_parameters": null,
39
+ "task_type": "CAUSAL_LM",
40
+ "trainable_token_indices": null,
41
+ "use_bdlora": null,
42
+ "use_dora": false,
43
+ "use_qalora": false,
44
+ "use_rslora": false,
45
+ "velora_config": null
46
+ }
best-lora/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f05b624df3aa0d19a9c5bb1f9413057987f10a140fd822057666c011c43bdc6
3
+ size 262373216
best-lora/chat_template.jinja ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}{%- macro strip_thinking(text) -%}
2
+ {%- set ns = namespace(result='') -%}
3
+ {%- for part in text.split('<channel|>') -%}
4
+ {%- if '<|channel>' in part -%}
5
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
6
+ {%- else -%}
7
+ {%- set ns.result = ns.result + part -%}
8
+ {%- endif -%}
9
+ {%- endfor -%}
10
+ {{- ns.result | trim -}}
11
+ {%- endmacro -%}
12
+ {%- set thinking = enable_thinking is defined and enable_thinking -%}
13
+ {%- set loop_messages = messages -%}
14
+ {%- if messages[0]['role'] in ['system', 'developer'] or thinking -%}
15
+ {{ '<|turn>system
16
+ ' }}
17
+ {%- if thinking -%}
18
+ {{ '<|think|>
19
+ ' }}
20
+ {%- endif -%}
21
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
22
+ {{ messages[0]['content'] | trim }}
23
+ {%- set loop_messages = messages[1:] -%}
24
+ {%- endif -%}
25
+ {{ '<turn|>
26
+ ' }}
27
+ {%- endif -%}
28
+ {%- for message in loop_messages -%}
29
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
30
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
31
+ {%- endif -%}
32
+ {%- if (message['role'] == 'assistant') -%}
33
+ {%- set role = "model" -%}
34
+ {%- else -%}
35
+ {%- set role = message['role'] -%}
36
+ {%- endif -%}
37
+ {{ '<|turn>' + role + '
38
+ ' }}
39
+ {%- if message['content'] is string -%}
40
+ {%- if role == "model" -%}
41
+ {{ strip_thinking(message['content']) }}
42
+ {%- else -%}
43
+ {{ message['content'] | trim }}
44
+ {%- endif -%}
45
+ {%- elif message['content'] is iterable -%}
46
+ {%- for item in message['content'] -%}
47
+ {%- if item['type'] == 'audio' -%}
48
+ {{ '<|audio|>' }}
49
+ {%- elif item['type'] == 'image' -%}
50
+ {{ '<|image|>' }}
51
+ {%- elif item['type'] == 'video' -%}
52
+ {{ '<|video|>' }}
53
+ {%- elif item['type'] == 'text' -%}
54
+ {%- if role == "model" -%}
55
+ {{ strip_thinking(item['text']) }}
56
+ {%- else -%}
57
+ {{ item['text'] | trim }}
58
+ {%- endif -%}
59
+ {%- endif -%}
60
+ {%- endfor -%}
61
+ {%- else -%}
62
+ {{ raise_exception("Invalid content type") }}
63
+ {%- endif -%}
64
+ {{ '<turn|>
65
+ ' }}
66
+ {%- endfor -%}
67
+ {%- if add_generation_prompt -%}
68
+ {{'<|turn>model
69
+ '}}
70
+ {%- endif -%}
best-lora/processor_config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_ms_per_token": 40,
3
+ "audio_seq_length": 750,
4
+ "feature_extractor": {
5
+ "audio_samples_per_token": 640,
6
+ "feature_extractor_type": "Gemma4UnifiedAudioFeatureExtractor",
7
+ "feature_size": 640,
8
+ "padding_side": "right",
9
+ "padding_value": 0.0,
10
+ "return_attention_mask": true,
11
+ "sampling_rate": 16000
12
+ },
13
+ "image_processor": {
14
+ "do_convert_rgb": true,
15
+ "do_normalize": false,
16
+ "do_rescale": true,
17
+ "do_resize": true,
18
+ "image_mean": [
19
+ 0.0,
20
+ 0.0,
21
+ 0.0
22
+ ],
23
+ "image_processor_type": "Gemma4UnifiedImageProcessor",
24
+ "image_std": [
25
+ 1.0,
26
+ 1.0,
27
+ 1.0
28
+ ],
29
+ "max_soft_tokens": 280,
30
+ "patch_size": 16,
31
+ "pooling_kernel_size": 3,
32
+ "resample": 3,
33
+ "rescale_factor": 0.00392156862745098
34
+ },
35
+ "image_seq_length": 280,
36
+ "processor_class": "Gemma4UnifiedProcessor",
37
+ "video_processor": {
38
+ "do_convert_rgb": true,
39
+ "do_normalize": true,
40
+ "do_rescale": true,
41
+ "do_resize": true,
42
+ "do_sample_frames": true,
43
+ "image_mean": [
44
+ 0.0,
45
+ 0.0,
46
+ 0.0
47
+ ],
48
+ "image_std": [
49
+ 1.0,
50
+ 1.0,
51
+ 1.0
52
+ ],
53
+ "max_soft_tokens": 70,
54
+ "num_frames": 32,
55
+ "patch_size": 16,
56
+ "pooling_kernel_size": 3,
57
+ "resample": 3,
58
+ "rescale_factor": 0.00392156862745098,
59
+ "return_metadata": false,
60
+ "video_processor_type": "Gemma4UnifiedVideoProcessor"
61
+ }
62
+ }
best-lora/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
3
+ size 32169626
best-lora/tokenizer_config.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<turn|>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "model_max_length": 262144,
24
+ "model_specific_special_tokens": {
25
+ "audio_token": "<|audio|>",
26
+ "boa_token": "<|audio>",
27
+ "boi_token": "<|image>",
28
+ "eoa_token": "<audio|>",
29
+ "eoc_token": "<channel|>",
30
+ "eoi_token": "<image|>",
31
+ "eot_token": "<turn|>",
32
+ "escape_token": "<|\"|>",
33
+ "etc_token": "<tool_call|>",
34
+ "etd_token": "<tool|>",
35
+ "etr_token": "<tool_response|>",
36
+ "image_token": "<|image|>",
37
+ "soc_token": "<|channel>",
38
+ "sot_token": "<|turn>",
39
+ "stc_token": "<|tool_call>",
40
+ "std_token": "<|tool>",
41
+ "str_token": "<|tool_response>",
42
+ "think_token": "<|think|>"
43
+ },
44
+ "pad_token": "<pad>",
45
+ "padding_side": "right",
46
+ "processor_class": "Gemma4UnifiedProcessor",
47
+ "response_schema": {
48
+ "properties": {
49
+ "content": {
50
+ "type": "string"
51
+ },
52
+ "role": {
53
+ "const": "assistant"
54
+ },
55
+ "thinking": {
56
+ "type": "string"
57
+ },
58
+ "tool_calls": {
59
+ "items": {
60
+ "properties": {
61
+ "function": {
62
+ "properties": {
63
+ "arguments": {
64
+ "additionalProperties": {},
65
+ "type": "object",
66
+ "x-parser": "gemma4-tool-call"
67
+ },
68
+ "name": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "type": "object",
73
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
74
+ },
75
+ "type": {
76
+ "const": "function"
77
+ }
78
+ },
79
+ "type": "object"
80
+ },
81
+ "type": "array",
82
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
83
+ }
84
+ },
85
+ "type": "object",
86
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
87
+ },
88
+ "soc_token": "<|channel>",
89
+ "sot_token": "<|turn>",
90
+ "stc_token": "<|tool_call>",
91
+ "std_token": "<|tool>",
92
+ "str_token": "<|tool_response>",
93
+ "think_token": "<|think|>",
94
+ "tokenizer_class": "GemmaTokenizer",
95
+ "unk_token": "<unk>",
96
+ "added_tokens_decoder": {
97
+ "0": {
98
+ "content": "<pad>",
99
+ "single_word": false,
100
+ "lstrip": false,
101
+ "rstrip": false,
102
+ "normalized": false,
103
+ "special": true
104
+ },
105
+ "1": {
106
+ "content": "<eos>",
107
+ "single_word": false,
108
+ "lstrip": false,
109
+ "rstrip": false,
110
+ "normalized": false,
111
+ "special": true
112
+ },
113
+ "2": {
114
+ "content": "<bos>",
115
+ "single_word": false,
116
+ "lstrip": false,
117
+ "rstrip": false,
118
+ "normalized": false,
119
+ "special": true
120
+ },
121
+ "3": {
122
+ "content": "<unk>",
123
+ "single_word": false,
124
+ "lstrip": false,
125
+ "rstrip": false,
126
+ "normalized": false,
127
+ "special": true
128
+ },
129
+ "4": {
130
+ "content": "<mask>",
131
+ "single_word": false,
132
+ "lstrip": false,
133
+ "rstrip": false,
134
+ "normalized": false,
135
+ "special": true
136
+ },
137
+ "46": {
138
+ "content": "<|tool>",
139
+ "single_word": false,
140
+ "lstrip": false,
141
+ "rstrip": false,
142
+ "normalized": false,
143
+ "special": true
144
+ },
145
+ "47": {
146
+ "content": "<tool|>",
147
+ "single_word": false,
148
+ "lstrip": false,
149
+ "rstrip": false,
150
+ "normalized": false,
151
+ "special": true
152
+ },
153
+ "48": {
154
+ "content": "<|tool_call>",
155
+ "single_word": false,
156
+ "lstrip": false,
157
+ "rstrip": false,
158
+ "normalized": false,
159
+ "special": true
160
+ },
161
+ "49": {
162
+ "content": "<tool_call|>",
163
+ "single_word": false,
164
+ "lstrip": false,
165
+ "rstrip": false,
166
+ "normalized": false,
167
+ "special": true
168
+ },
169
+ "50": {
170
+ "content": "<|tool_response>",
171
+ "single_word": false,
172
+ "lstrip": false,
173
+ "rstrip": false,
174
+ "normalized": false,
175
+ "special": true
176
+ },
177
+ "51": {
178
+ "content": "<tool_response|>",
179
+ "single_word": false,
180
+ "lstrip": false,
181
+ "rstrip": false,
182
+ "normalized": false,
183
+ "special": true
184
+ },
185
+ "52": {
186
+ "content": "<|\"|>",
187
+ "single_word": false,
188
+ "lstrip": false,
189
+ "rstrip": false,
190
+ "normalized": false,
191
+ "special": true
192
+ },
193
+ "98": {
194
+ "content": "<|think|>",
195
+ "single_word": false,
196
+ "lstrip": false,
197
+ "rstrip": false,
198
+ "normalized": false,
199
+ "special": true
200
+ },
201
+ "100": {
202
+ "content": "<|channel>",
203
+ "single_word": false,
204
+ "lstrip": false,
205
+ "rstrip": false,
206
+ "normalized": false,
207
+ "special": true
208
+ },
209
+ "101": {
210
+ "content": "<channel|>",
211
+ "single_word": false,
212
+ "lstrip": false,
213
+ "rstrip": false,
214
+ "normalized": false,
215
+ "special": true
216
+ },
217
+ "105": {
218
+ "content": "<|turn>",
219
+ "single_word": false,
220
+ "lstrip": false,
221
+ "rstrip": false,
222
+ "normalized": false,
223
+ "special": true
224
+ },
225
+ "106": {
226
+ "content": "<turn|>",
227
+ "single_word": false,
228
+ "lstrip": false,
229
+ "rstrip": false,
230
+ "normalized": false,
231
+ "special": true
232
+ },
233
+ "255999": {
234
+ "content": "<|image>",
235
+ "single_word": false,
236
+ "lstrip": false,
237
+ "rstrip": false,
238
+ "normalized": false,
239
+ "special": true
240
+ },
241
+ "256000": {
242
+ "content": "<|audio>",
243
+ "single_word": false,
244
+ "lstrip": false,
245
+ "rstrip": false,
246
+ "normalized": false,
247
+ "special": true
248
+ },
249
+ "258880": {
250
+ "content": "<|image|>",
251
+ "single_word": false,
252
+ "lstrip": false,
253
+ "rstrip": false,
254
+ "normalized": false,
255
+ "special": true
256
+ },
257
+ "258881": {
258
+ "content": "<|audio|>",
259
+ "single_word": false,
260
+ "lstrip": false,
261
+ "rstrip": false,
262
+ "normalized": false,
263
+ "special": true
264
+ },
265
+ "258882": {
266
+ "content": "<image|>",
267
+ "single_word": false,
268
+ "lstrip": false,
269
+ "rstrip": false,
270
+ "normalized": false,
271
+ "special": true
272
+ },
273
+ "258883": {
274
+ "content": "<audio|>",
275
+ "single_word": false,
276
+ "lstrip": false,
277
+ "rstrip": false,
278
+ "normalized": false,
279
+ "special": true
280
+ },
281
+ "258884": {
282
+ "content": "<|video|>",
283
+ "single_word": false,
284
+ "lstrip": false,
285
+ "rstrip": false,
286
+ "normalized": false,
287
+ "special": true
288
+ }
289
+ }
290
+ }
best-lora/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:757b7d78e07bd589f7cd9db1a1a3019f58127f01f91cba75e4a6cbb7ea4b4a6c
3
+ size 5713
best_checkpoint.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /output/checkpoint-950
2
+ eval_loss=0.5508978962898254
checkpoint-1400/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-12b-it
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/gemma-4-12b-it
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.20.0
checkpoint-1400/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Gemma4UnifiedForConditionalGeneration",
7
+ "parent_library": "transformers.models.gemma4_unified.modeling_gemma4_unified",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/gemma-4-12b-it",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "monteclora_config": null,
31
+ "peft_type": "LORA",
32
+ "peft_version": "0.20.0",
33
+ "qalora_group_size": 16,
34
+ "r": 16,
35
+ "rank_pattern": {},
36
+ "revision": null,
37
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer).*?(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection))|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer)\\.(?:(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection)))",
38
+ "target_parameters": null,
39
+ "task_type": "CAUSAL_LM",
40
+ "trainable_token_indices": null,
41
+ "use_bdlora": null,
42
+ "use_dora": false,
43
+ "use_qalora": false,
44
+ "use_rslora": false,
45
+ "velora_config": null
46
+ }
checkpoint-1400/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8367b932d2ccf89169b4104de5476941c459df42a6f25a98264614c3a2a7a7b2
3
+ size 262373216
checkpoint-1400/chat_template.jinja ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}{%- macro strip_thinking(text) -%}
2
+ {%- set ns = namespace(result='') -%}
3
+ {%- for part in text.split('<channel|>') -%}
4
+ {%- if '<|channel>' in part -%}
5
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
6
+ {%- else -%}
7
+ {%- set ns.result = ns.result + part -%}
8
+ {%- endif -%}
9
+ {%- endfor -%}
10
+ {{- ns.result | trim -}}
11
+ {%- endmacro -%}
12
+ {%- set thinking = enable_thinking is defined and enable_thinking -%}
13
+ {%- set loop_messages = messages -%}
14
+ {%- if messages[0]['role'] in ['system', 'developer'] or thinking -%}
15
+ {{ '<|turn>system
16
+ ' }}
17
+ {%- if thinking -%}
18
+ {{ '<|think|>
19
+ ' }}
20
+ {%- endif -%}
21
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
22
+ {{ messages[0]['content'] | trim }}
23
+ {%- set loop_messages = messages[1:] -%}
24
+ {%- endif -%}
25
+ {{ '<turn|>
26
+ ' }}
27
+ {%- endif -%}
28
+ {%- for message in loop_messages -%}
29
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
30
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
31
+ {%- endif -%}
32
+ {%- if (message['role'] == 'assistant') -%}
33
+ {%- set role = "model" -%}
34
+ {%- else -%}
35
+ {%- set role = message['role'] -%}
36
+ {%- endif -%}
37
+ {{ '<|turn>' + role + '
38
+ ' }}
39
+ {%- if message['content'] is string -%}
40
+ {%- if role == "model" -%}
41
+ {{ strip_thinking(message['content']) }}
42
+ {%- else -%}
43
+ {{ message['content'] | trim }}
44
+ {%- endif -%}
45
+ {%- elif message['content'] is iterable -%}
46
+ {%- for item in message['content'] -%}
47
+ {%- if item['type'] == 'audio' -%}
48
+ {{ '<|audio|>' }}
49
+ {%- elif item['type'] == 'image' -%}
50
+ {{ '<|image|>' }}
51
+ {%- elif item['type'] == 'video' -%}
52
+ {{ '<|video|>' }}
53
+ {%- elif item['type'] == 'text' -%}
54
+ {%- if role == "model" -%}
55
+ {{ strip_thinking(item['text']) }}
56
+ {%- else -%}
57
+ {{ item['text'] | trim }}
58
+ {%- endif -%}
59
+ {%- endif -%}
60
+ {%- endfor -%}
61
+ {%- else -%}
62
+ {{ raise_exception("Invalid content type") }}
63
+ {%- endif -%}
64
+ {{ '<turn|>
65
+ ' }}
66
+ {%- endfor -%}
67
+ {%- if add_generation_prompt -%}
68
+ {{'<|turn>model
69
+ '}}
70
+ {%- endif -%}
checkpoint-1400/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48f51510b2400a3bf83dcaaabddc310952c77edbd884b6cf45200ff58faa72f8
3
+ size 133962277
checkpoint-1400/processor_config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_ms_per_token": 40,
3
+ "audio_seq_length": 750,
4
+ "feature_extractor": {
5
+ "audio_samples_per_token": 640,
6
+ "feature_extractor_type": "Gemma4UnifiedAudioFeatureExtractor",
7
+ "feature_size": 640,
8
+ "padding_side": "right",
9
+ "padding_value": 0.0,
10
+ "return_attention_mask": true,
11
+ "sampling_rate": 16000
12
+ },
13
+ "image_processor": {
14
+ "do_convert_rgb": true,
15
+ "do_normalize": false,
16
+ "do_rescale": true,
17
+ "do_resize": true,
18
+ "image_mean": [
19
+ 0.0,
20
+ 0.0,
21
+ 0.0
22
+ ],
23
+ "image_processor_type": "Gemma4UnifiedImageProcessor",
24
+ "image_std": [
25
+ 1.0,
26
+ 1.0,
27
+ 1.0
28
+ ],
29
+ "max_soft_tokens": 280,
30
+ "patch_size": 16,
31
+ "pooling_kernel_size": 3,
32
+ "resample": 3,
33
+ "rescale_factor": 0.00392156862745098
34
+ },
35
+ "image_seq_length": 280,
36
+ "processor_class": "Gemma4UnifiedProcessor",
37
+ "video_processor": {
38
+ "do_convert_rgb": true,
39
+ "do_normalize": true,
40
+ "do_rescale": true,
41
+ "do_resize": true,
42
+ "do_sample_frames": true,
43
+ "image_mean": [
44
+ 0.0,
45
+ 0.0,
46
+ 0.0
47
+ ],
48
+ "image_std": [
49
+ 1.0,
50
+ 1.0,
51
+ 1.0
52
+ ],
53
+ "max_soft_tokens": 70,
54
+ "num_frames": 32,
55
+ "patch_size": 16,
56
+ "pooling_kernel_size": 3,
57
+ "resample": 3,
58
+ "rescale_factor": 0.00392156862745098,
59
+ "return_metadata": false,
60
+ "video_processor_type": "Gemma4UnifiedVideoProcessor"
61
+ }
62
+ }
checkpoint-1400/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:081b902a1cc1d7c04ce34bfbbb677ba64777c8e7d0d114a6cad2aaf4dff7c81d
3
+ size 14645
checkpoint-1400/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b86947f72fdf30d840c361f579ca6179be7e2263d649cc31b242e447e5611163
3
+ size 1465
checkpoint-1400/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
3
+ size 32169626
checkpoint-1400/tokenizer_config.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<turn|>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "model_max_length": 262144,
24
+ "model_specific_special_tokens": {
25
+ "audio_token": "<|audio|>",
26
+ "boa_token": "<|audio>",
27
+ "boi_token": "<|image>",
28
+ "eoa_token": "<audio|>",
29
+ "eoc_token": "<channel|>",
30
+ "eoi_token": "<image|>",
31
+ "eot_token": "<turn|>",
32
+ "escape_token": "<|\"|>",
33
+ "etc_token": "<tool_call|>",
34
+ "etd_token": "<tool|>",
35
+ "etr_token": "<tool_response|>",
36
+ "image_token": "<|image|>",
37
+ "soc_token": "<|channel>",
38
+ "sot_token": "<|turn>",
39
+ "stc_token": "<|tool_call>",
40
+ "std_token": "<|tool>",
41
+ "str_token": "<|tool_response>",
42
+ "think_token": "<|think|>"
43
+ },
44
+ "pad_token": "<pad>",
45
+ "padding_side": "right",
46
+ "processor_class": "Gemma4UnifiedProcessor",
47
+ "response_schema": {
48
+ "properties": {
49
+ "content": {
50
+ "type": "string"
51
+ },
52
+ "role": {
53
+ "const": "assistant"
54
+ },
55
+ "thinking": {
56
+ "type": "string"
57
+ },
58
+ "tool_calls": {
59
+ "items": {
60
+ "properties": {
61
+ "function": {
62
+ "properties": {
63
+ "arguments": {
64
+ "additionalProperties": {},
65
+ "type": "object",
66
+ "x-parser": "gemma4-tool-call"
67
+ },
68
+ "name": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "type": "object",
73
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
74
+ },
75
+ "type": {
76
+ "const": "function"
77
+ }
78
+ },
79
+ "type": "object"
80
+ },
81
+ "type": "array",
82
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
83
+ }
84
+ },
85
+ "type": "object",
86
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
87
+ },
88
+ "soc_token": "<|channel>",
89
+ "sot_token": "<|turn>",
90
+ "stc_token": "<|tool_call>",
91
+ "std_token": "<|tool>",
92
+ "str_token": "<|tool_response>",
93
+ "think_token": "<|think|>",
94
+ "tokenizer_class": "GemmaTokenizer",
95
+ "unk_token": "<unk>",
96
+ "added_tokens_decoder": {
97
+ "0": {
98
+ "content": "<pad>",
99
+ "single_word": false,
100
+ "lstrip": false,
101
+ "rstrip": false,
102
+ "normalized": false,
103
+ "special": true
104
+ },
105
+ "1": {
106
+ "content": "<eos>",
107
+ "single_word": false,
108
+ "lstrip": false,
109
+ "rstrip": false,
110
+ "normalized": false,
111
+ "special": true
112
+ },
113
+ "2": {
114
+ "content": "<bos>",
115
+ "single_word": false,
116
+ "lstrip": false,
117
+ "rstrip": false,
118
+ "normalized": false,
119
+ "special": true
120
+ },
121
+ "3": {
122
+ "content": "<unk>",
123
+ "single_word": false,
124
+ "lstrip": false,
125
+ "rstrip": false,
126
+ "normalized": false,
127
+ "special": true
128
+ },
129
+ "4": {
130
+ "content": "<mask>",
131
+ "single_word": false,
132
+ "lstrip": false,
133
+ "rstrip": false,
134
+ "normalized": false,
135
+ "special": true
136
+ },
137
+ "46": {
138
+ "content": "<|tool>",
139
+ "single_word": false,
140
+ "lstrip": false,
141
+ "rstrip": false,
142
+ "normalized": false,
143
+ "special": true
144
+ },
145
+ "47": {
146
+ "content": "<tool|>",
147
+ "single_word": false,
148
+ "lstrip": false,
149
+ "rstrip": false,
150
+ "normalized": false,
151
+ "special": true
152
+ },
153
+ "48": {
154
+ "content": "<|tool_call>",
155
+ "single_word": false,
156
+ "lstrip": false,
157
+ "rstrip": false,
158
+ "normalized": false,
159
+ "special": true
160
+ },
161
+ "49": {
162
+ "content": "<tool_call|>",
163
+ "single_word": false,
164
+ "lstrip": false,
165
+ "rstrip": false,
166
+ "normalized": false,
167
+ "special": true
168
+ },
169
+ "50": {
170
+ "content": "<|tool_response>",
171
+ "single_word": false,
172
+ "lstrip": false,
173
+ "rstrip": false,
174
+ "normalized": false,
175
+ "special": true
176
+ },
177
+ "51": {
178
+ "content": "<tool_response|>",
179
+ "single_word": false,
180
+ "lstrip": false,
181
+ "rstrip": false,
182
+ "normalized": false,
183
+ "special": true
184
+ },
185
+ "52": {
186
+ "content": "<|\"|>",
187
+ "single_word": false,
188
+ "lstrip": false,
189
+ "rstrip": false,
190
+ "normalized": false,
191
+ "special": true
192
+ },
193
+ "98": {
194
+ "content": "<|think|>",
195
+ "single_word": false,
196
+ "lstrip": false,
197
+ "rstrip": false,
198
+ "normalized": false,
199
+ "special": true
200
+ },
201
+ "100": {
202
+ "content": "<|channel>",
203
+ "single_word": false,
204
+ "lstrip": false,
205
+ "rstrip": false,
206
+ "normalized": false,
207
+ "special": true
208
+ },
209
+ "101": {
210
+ "content": "<channel|>",
211
+ "single_word": false,
212
+ "lstrip": false,
213
+ "rstrip": false,
214
+ "normalized": false,
215
+ "special": true
216
+ },
217
+ "105": {
218
+ "content": "<|turn>",
219
+ "single_word": false,
220
+ "lstrip": false,
221
+ "rstrip": false,
222
+ "normalized": false,
223
+ "special": true
224
+ },
225
+ "106": {
226
+ "content": "<turn|>",
227
+ "single_word": false,
228
+ "lstrip": false,
229
+ "rstrip": false,
230
+ "normalized": false,
231
+ "special": true
232
+ },
233
+ "255999": {
234
+ "content": "<|image>",
235
+ "single_word": false,
236
+ "lstrip": false,
237
+ "rstrip": false,
238
+ "normalized": false,
239
+ "special": true
240
+ },
241
+ "256000": {
242
+ "content": "<|audio>",
243
+ "single_word": false,
244
+ "lstrip": false,
245
+ "rstrip": false,
246
+ "normalized": false,
247
+ "special": true
248
+ },
249
+ "258880": {
250
+ "content": "<|image|>",
251
+ "single_word": false,
252
+ "lstrip": false,
253
+ "rstrip": false,
254
+ "normalized": false,
255
+ "special": true
256
+ },
257
+ "258881": {
258
+ "content": "<|audio|>",
259
+ "single_word": false,
260
+ "lstrip": false,
261
+ "rstrip": false,
262
+ "normalized": false,
263
+ "special": true
264
+ },
265
+ "258882": {
266
+ "content": "<image|>",
267
+ "single_word": false,
268
+ "lstrip": false,
269
+ "rstrip": false,
270
+ "normalized": false,
271
+ "special": true
272
+ },
273
+ "258883": {
274
+ "content": "<audio|>",
275
+ "single_word": false,
276
+ "lstrip": false,
277
+ "rstrip": false,
278
+ "normalized": false,
279
+ "special": true
280
+ },
281
+ "258884": {
282
+ "content": "<|video|>",
283
+ "single_word": false,
284
+ "lstrip": false,
285
+ "rstrip": false,
286
+ "normalized": false,
287
+ "special": true
288
+ }
289
+ }
290
+ }
checkpoint-1400/trainer_state.json ADDED
@@ -0,0 +1,2218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 950,
3
+ "best_metric": 0.5508978962898254,
4
+ "best_model_checkpoint": "/output/checkpoint-950",
5
+ "epoch": 2.9473684210526314,
6
+ "eval_steps": 50,
7
+ "global_step": 1400,
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.010526315789473684,
14
+ "grad_norm": 2.0839247703552246,
15
+ "learning_rate": 9.302325581395349e-06,
16
+ "loss": 2.646485137939453,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.021052631578947368,
21
+ "grad_norm": 3.253295660018921,
22
+ "learning_rate": 2.0930232558139536e-05,
23
+ "loss": 2.9888063430786134,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.031578947368421054,
28
+ "grad_norm": 2.4486842155456543,
29
+ "learning_rate": 3.2558139534883724e-05,
30
+ "loss": 2.2748624801635744,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.042105263157894736,
35
+ "grad_norm": 2.5299599170684814,
36
+ "learning_rate": 4.418604651162791e-05,
37
+ "loss": 1.9410686492919922,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.05263157894736842,
42
+ "grad_norm": 1.6780576705932617,
43
+ "learning_rate": 5.5813953488372095e-05,
44
+ "loss": 1.3348378181457519,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.06315789473684211,
49
+ "grad_norm": 0.7812225222587585,
50
+ "learning_rate": 6.744186046511628e-05,
51
+ "loss": 0.8430736541748047,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.07368421052631578,
56
+ "grad_norm": 0.8205987215042114,
57
+ "learning_rate": 7.906976744186047e-05,
58
+ "loss": 0.8522604942321778,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.08421052631578947,
63
+ "grad_norm": 0.6925882697105408,
64
+ "learning_rate": 9.069767441860465e-05,
65
+ "loss": 0.6957129955291748,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.09473684210526316,
70
+ "grad_norm": 0.7553223371505737,
71
+ "learning_rate": 9.999987081161148e-05,
72
+ "loss": 0.8302087783813477,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.10526315789473684,
77
+ "grad_norm": 0.6056613922119141,
78
+ "learning_rate": 9.999534928810904e-05,
79
+ "loss": 0.6982179641723633,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.10526315789473684,
84
+ "eval_loss": 0.7021176218986511,
85
+ "eval_runtime": 27.8753,
86
+ "eval_samples_per_second": 14.35,
87
+ "eval_steps_per_second": 14.35,
88
+ "step": 50
89
+ },
90
+ {
91
+ "epoch": 0.11578947368421053,
92
+ "grad_norm": 1.4581637382507324,
93
+ "learning_rate": 9.998436901275022e-05,
94
+ "loss": 0.7925346374511719,
95
+ "step": 55
96
+ },
97
+ {
98
+ "epoch": 0.12631578947368421,
99
+ "grad_norm": 0.6449484825134277,
100
+ "learning_rate": 9.99669314040444e-05,
101
+ "loss": 0.7095213413238526,
102
+ "step": 60
103
+ },
104
+ {
105
+ "epoch": 0.1368421052631579,
106
+ "grad_norm": 0.6936064958572388,
107
+ "learning_rate": 9.994303871470489e-05,
108
+ "loss": 0.6608465194702149,
109
+ "step": 65
110
+ },
111
+ {
112
+ "epoch": 0.14736842105263157,
113
+ "grad_norm": 0.5944413542747498,
114
+ "learning_rate": 9.991269403135783e-05,
115
+ "loss": 0.6789331436157227,
116
+ "step": 70
117
+ },
118
+ {
119
+ "epoch": 0.15789473684210525,
120
+ "grad_norm": 0.7518417835235596,
121
+ "learning_rate": 9.987590127414344e-05,
122
+ "loss": 0.669992208480835,
123
+ "step": 75
124
+ },
125
+ {
126
+ "epoch": 0.16842105263157894,
127
+ "grad_norm": 0.7772454619407654,
128
+ "learning_rate": 9.98326651962096e-05,
129
+ "loss": 0.6882061958312988,
130
+ "step": 80
131
+ },
132
+ {
133
+ "epoch": 0.17894736842105263,
134
+ "grad_norm": 0.7076404690742493,
135
+ "learning_rate": 9.978299138309781e-05,
136
+ "loss": 0.6435281276702881,
137
+ "step": 85
138
+ },
139
+ {
140
+ "epoch": 0.18947368421052632,
141
+ "grad_norm": 0.6353256702423096,
142
+ "learning_rate": 9.972688625202164e-05,
143
+ "loss": 0.6035995960235596,
144
+ "step": 90
145
+ },
146
+ {
147
+ "epoch": 0.2,
148
+ "grad_norm": 0.6928842663764954,
149
+ "learning_rate": 9.966435705103765e-05,
150
+ "loss": 0.6339406967163086,
151
+ "step": 95
152
+ },
153
+ {
154
+ "epoch": 0.21052631578947367,
155
+ "grad_norm": 1.1047526597976685,
156
+ "learning_rate": 9.959541185810906e-05,
157
+ "loss": 0.5951476097106934,
158
+ "step": 100
159
+ },
160
+ {
161
+ "epoch": 0.21052631578947367,
162
+ "eval_loss": 0.6416817307472229,
163
+ "eval_runtime": 27.0456,
164
+ "eval_samples_per_second": 14.79,
165
+ "eval_steps_per_second": 14.79,
166
+ "step": 100
167
+ },
168
+ {
169
+ "epoch": 0.22105263157894736,
170
+ "grad_norm": 0.6272938847541809,
171
+ "learning_rate": 9.952005958006217e-05,
172
+ "loss": 0.6947292804718017,
173
+ "step": 105
174
+ },
175
+ {
176
+ "epoch": 0.23157894736842105,
177
+ "grad_norm": 0.6077613234519958,
178
+ "learning_rate": 9.943830995143577e-05,
179
+ "loss": 0.7127768993377686,
180
+ "step": 110
181
+ },
182
+ {
183
+ "epoch": 0.24210526315789474,
184
+ "grad_norm": 0.6263899803161621,
185
+ "learning_rate": 9.935017353322347e-05,
186
+ "loss": 0.643881893157959,
187
+ "step": 115
188
+ },
189
+ {
190
+ "epoch": 0.25263157894736843,
191
+ "grad_norm": 0.6517646908760071,
192
+ "learning_rate": 9.925566171150945e-05,
193
+ "loss": 0.6408101081848144,
194
+ "step": 120
195
+ },
196
+ {
197
+ "epoch": 0.2631578947368421,
198
+ "grad_norm": 0.5079100728034973,
199
+ "learning_rate": 9.915478669599747e-05,
200
+ "loss": 0.5704734802246094,
201
+ "step": 125
202
+ },
203
+ {
204
+ "epoch": 0.2736842105263158,
205
+ "grad_norm": 0.6810751557350159,
206
+ "learning_rate": 9.904756151843353e-05,
207
+ "loss": 0.7103314876556397,
208
+ "step": 130
209
+ },
210
+ {
211
+ "epoch": 0.28421052631578947,
212
+ "grad_norm": 0.6985617876052856,
213
+ "learning_rate": 9.893400003092237e-05,
214
+ "loss": 0.7399785995483399,
215
+ "step": 135
216
+ },
217
+ {
218
+ "epoch": 0.29473684210526313,
219
+ "grad_norm": 0.611039936542511,
220
+ "learning_rate": 9.881411690413796e-05,
221
+ "loss": 0.6211562633514405,
222
+ "step": 140
223
+ },
224
+ {
225
+ "epoch": 0.30526315789473685,
226
+ "grad_norm": 0.6540597677230835,
227
+ "learning_rate": 9.868792762542814e-05,
228
+ "loss": 0.6841907501220703,
229
+ "step": 145
230
+ },
231
+ {
232
+ "epoch": 0.3157894736842105,
233
+ "grad_norm": 0.6657130122184753,
234
+ "learning_rate": 9.855544849681404e-05,
235
+ "loss": 0.6384834289550781,
236
+ "step": 150
237
+ },
238
+ {
239
+ "epoch": 0.3157894736842105,
240
+ "eval_loss": 0.6154849529266357,
241
+ "eval_runtime": 28.9994,
242
+ "eval_samples_per_second": 13.793,
243
+ "eval_steps_per_second": 13.793,
244
+ "step": 150
245
+ },
246
+ {
247
+ "epoch": 0.3263157894736842,
248
+ "grad_norm": 0.6323176622390747,
249
+ "learning_rate": 9.841669663288391e-05,
250
+ "loss": 0.6482361793518067,
251
+ "step": 155
252
+ },
253
+ {
254
+ "epoch": 0.3368421052631579,
255
+ "grad_norm": 0.6461365818977356,
256
+ "learning_rate": 9.82716899585822e-05,
257
+ "loss": 0.6088940620422363,
258
+ "step": 160
259
+ },
260
+ {
261
+ "epoch": 0.3473684210526316,
262
+ "grad_norm": 0.518051028251648,
263
+ "learning_rate": 9.812044720689387e-05,
264
+ "loss": 0.6474239826202393,
265
+ "step": 165
266
+ },
267
+ {
268
+ "epoch": 0.35789473684210527,
269
+ "grad_norm": 0.6599591374397278,
270
+ "learning_rate": 9.796298791642435e-05,
271
+ "loss": 0.639539098739624,
272
+ "step": 170
273
+ },
274
+ {
275
+ "epoch": 0.3684210526315789,
276
+ "grad_norm": 0.6555272340774536,
277
+ "learning_rate": 9.779933242887542e-05,
278
+ "loss": 0.6650691986083984,
279
+ "step": 175
280
+ },
281
+ {
282
+ "epoch": 0.37894736842105264,
283
+ "grad_norm": 0.5666244626045227,
284
+ "learning_rate": 9.762950188641728e-05,
285
+ "loss": 0.6851089000701904,
286
+ "step": 180
287
+ },
288
+ {
289
+ "epoch": 0.3894736842105263,
290
+ "grad_norm": 0.7169855833053589,
291
+ "learning_rate": 9.745351822895727e-05,
292
+ "loss": 0.5861614227294922,
293
+ "step": 185
294
+ },
295
+ {
296
+ "epoch": 0.4,
297
+ "grad_norm": 0.5155227184295654,
298
+ "learning_rate": 9.727140419130553e-05,
299
+ "loss": 0.6075415134429931,
300
+ "step": 190
301
+ },
302
+ {
303
+ "epoch": 0.4105263157894737,
304
+ "grad_norm": 0.8202889561653137,
305
+ "learning_rate": 9.708318330023798e-05,
306
+ "loss": 0.6071089267730713,
307
+ "step": 195
308
+ },
309
+ {
310
+ "epoch": 0.42105263157894735,
311
+ "grad_norm": 0.4622310996055603,
312
+ "learning_rate": 9.688887987145691e-05,
313
+ "loss": 0.5945972919464111,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.42105263157894735,
318
+ "eval_loss": 0.6035570502281189,
319
+ "eval_runtime": 27.8485,
320
+ "eval_samples_per_second": 14.363,
321
+ "eval_steps_per_second": 14.363,
322
+ "step": 200
323
+ },
324
+ {
325
+ "epoch": 0.43157894736842106,
326
+ "grad_norm": 0.6781761050224304,
327
+ "learning_rate": 9.668851900644975e-05,
328
+ "loss": 0.570584774017334,
329
+ "step": 205
330
+ },
331
+ {
332
+ "epoch": 0.4421052631578947,
333
+ "grad_norm": 0.5482363104820251,
334
+ "learning_rate": 9.648212658924625e-05,
335
+ "loss": 0.6329983234405517,
336
+ "step": 210
337
+ },
338
+ {
339
+ "epoch": 0.45263157894736844,
340
+ "grad_norm": 0.6346020698547363,
341
+ "learning_rate": 9.62697292830746e-05,
342
+ "loss": 0.6306288242340088,
343
+ "step": 215
344
+ },
345
+ {
346
+ "epoch": 0.4631578947368421,
347
+ "grad_norm": 0.7032224535942078,
348
+ "learning_rate": 9.6051354526917e-05,
349
+ "loss": 0.6967363357543945,
350
+ "step": 220
351
+ },
352
+ {
353
+ "epoch": 0.47368421052631576,
354
+ "grad_norm": 0.4979580044746399,
355
+ "learning_rate": 9.582703053196464e-05,
356
+ "loss": 0.5608481884002685,
357
+ "step": 225
358
+ },
359
+ {
360
+ "epoch": 0.4842105263157895,
361
+ "grad_norm": 0.7327916622161865,
362
+ "learning_rate": 9.55967862779735e-05,
363
+ "loss": 0.584914255142212,
364
+ "step": 230
365
+ },
366
+ {
367
+ "epoch": 0.49473684210526314,
368
+ "grad_norm": 0.7519303560256958,
369
+ "learning_rate": 9.536065150952025e-05,
370
+ "loss": 0.6214882850646972,
371
+ "step": 235
372
+ },
373
+ {
374
+ "epoch": 0.5052631578947369,
375
+ "grad_norm": 0.7328101396560669,
376
+ "learning_rate": 9.511865673215986e-05,
377
+ "loss": 0.6112482070922851,
378
+ "step": 240
379
+ },
380
+ {
381
+ "epoch": 0.5157894736842106,
382
+ "grad_norm": 0.5348976254463196,
383
+ "learning_rate": 9.487083320848454e-05,
384
+ "loss": 0.6417016983032227,
385
+ "step": 245
386
+ },
387
+ {
388
+ "epoch": 0.5263157894736842,
389
+ "grad_norm": 0.5690417885780334,
390
+ "learning_rate": 9.461721295408505e-05,
391
+ "loss": 0.5277723789215087,
392
+ "step": 250
393
+ },
394
+ {
395
+ "epoch": 0.5263157894736842,
396
+ "eval_loss": 0.5920669436454773,
397
+ "eval_runtime": 27.6132,
398
+ "eval_samples_per_second": 14.486,
399
+ "eval_steps_per_second": 14.486,
400
+ "step": 250
401
+ },
402
+ {
403
+ "epoch": 0.5368421052631579,
404
+ "grad_norm": 0.5612736344337463,
405
+ "learning_rate": 9.435782873341474e-05,
406
+ "loss": 0.5604990959167481,
407
+ "step": 255
408
+ },
409
+ {
410
+ "epoch": 0.5473684210526316,
411
+ "grad_norm": 0.6084933876991272,
412
+ "learning_rate": 9.409271405555677e-05,
413
+ "loss": 0.5558807373046875,
414
+ "step": 260
415
+ },
416
+ {
417
+ "epoch": 0.5578947368421052,
418
+ "grad_norm": 0.6289730668067932,
419
+ "learning_rate": 9.382190316989518e-05,
420
+ "loss": 0.5646376609802246,
421
+ "step": 265
422
+ },
423
+ {
424
+ "epoch": 0.5684210526315789,
425
+ "grad_norm": 0.6343289613723755,
426
+ "learning_rate": 9.354543106169029e-05,
427
+ "loss": 0.6692690372467041,
428
+ "step": 270
429
+ },
430
+ {
431
+ "epoch": 0.5789473684210527,
432
+ "grad_norm": 1.0037399530410767,
433
+ "learning_rate": 9.326333344755912e-05,
434
+ "loss": 0.6066013813018799,
435
+ "step": 275
436
+ },
437
+ {
438
+ "epoch": 0.5894736842105263,
439
+ "grad_norm": 0.8138774633407593,
440
+ "learning_rate": 9.297564677086118e-05,
441
+ "loss": 0.6074648857116699,
442
+ "step": 280
443
+ },
444
+ {
445
+ "epoch": 0.6,
446
+ "grad_norm": 1.0000449419021606,
447
+ "learning_rate": 9.268240819699054e-05,
448
+ "loss": 0.5891916275024414,
449
+ "step": 285
450
+ },
451
+ {
452
+ "epoch": 0.6105263157894737,
453
+ "grad_norm": 0.7454043030738831,
454
+ "learning_rate": 9.238365560857447e-05,
455
+ "loss": 0.6280234336853028,
456
+ "step": 290
457
+ },
458
+ {
459
+ "epoch": 0.6210526315789474,
460
+ "grad_norm": 0.756981611251831,
461
+ "learning_rate": 9.207942760057958e-05,
462
+ "loss": 0.6314973831176758,
463
+ "step": 295
464
+ },
465
+ {
466
+ "epoch": 0.631578947368421,
467
+ "grad_norm": 0.7583857178688049,
468
+ "learning_rate": 9.176976347532575e-05,
469
+ "loss": 0.6410815715789795,
470
+ "step": 300
471
+ },
472
+ {
473
+ "epoch": 0.631578947368421,
474
+ "eval_loss": 0.5863876342773438,
475
+ "eval_runtime": 27.6386,
476
+ "eval_samples_per_second": 14.472,
477
+ "eval_steps_per_second": 14.472,
478
+ "step": 300
479
+ },
480
+ {
481
+ "epoch": 0.6421052631578947,
482
+ "grad_norm": 0.791587769985199,
483
+ "learning_rate": 9.145470323740885e-05,
484
+ "loss": 0.5841981410980225,
485
+ "step": 305
486
+ },
487
+ {
488
+ "epoch": 0.6526315789473685,
489
+ "grad_norm": 1.1765379905700684,
490
+ "learning_rate": 9.113428758853268e-05,
491
+ "loss": 0.5464617729187011,
492
+ "step": 310
493
+ },
494
+ {
495
+ "epoch": 0.6631578947368421,
496
+ "grad_norm": 3.7840137481689453,
497
+ "learning_rate": 9.080855792225076e-05,
498
+ "loss": 0.6217821121215821,
499
+ "step": 315
500
+ },
501
+ {
502
+ "epoch": 0.6736842105263158,
503
+ "grad_norm": 1.2177997827529907,
504
+ "learning_rate": 9.047755631861884e-05,
505
+ "loss": 0.6125752449035644,
506
+ "step": 320
507
+ },
508
+ {
509
+ "epoch": 0.6842105263157895,
510
+ "grad_norm": 0.6323914527893066,
511
+ "learning_rate": 9.014132553875878e-05,
512
+ "loss": 0.5617509365081788,
513
+ "step": 325
514
+ },
515
+ {
516
+ "epoch": 0.6947368421052632,
517
+ "grad_norm": 0.9683524370193481,
518
+ "learning_rate": 8.979990901933428e-05,
519
+ "loss": 0.6395817756652832,
520
+ "step": 330
521
+ },
522
+ {
523
+ "epoch": 0.7052631578947368,
524
+ "grad_norm": 0.6486535668373108,
525
+ "learning_rate": 8.945335086693942e-05,
526
+ "loss": 0.6556002616882324,
527
+ "step": 335
528
+ },
529
+ {
530
+ "epoch": 0.7157894736842105,
531
+ "grad_norm": 1.642112374305725,
532
+ "learning_rate": 8.910169585240078e-05,
533
+ "loss": 0.588761568069458,
534
+ "step": 340
535
+ },
536
+ {
537
+ "epoch": 0.7263157894736842,
538
+ "grad_norm": 1.007238507270813,
539
+ "learning_rate": 8.874498940499346e-05,
540
+ "loss": 0.5744077682495117,
541
+ "step": 345
542
+ },
543
+ {
544
+ "epoch": 0.7368421052631579,
545
+ "grad_norm": 0.4945877194404602,
546
+ "learning_rate": 8.83832776065723e-05,
547
+ "loss": 0.5382843494415284,
548
+ "step": 350
549
+ },
550
+ {
551
+ "epoch": 0.7368421052631579,
552
+ "eval_loss": 0.5782474279403687,
553
+ "eval_runtime": 27.574,
554
+ "eval_samples_per_second": 14.506,
555
+ "eval_steps_per_second": 14.506,
556
+ "step": 350
557
+ },
558
+ {
559
+ "epoch": 0.7473684210526316,
560
+ "grad_norm": 0.7869954109191895,
561
+ "learning_rate": 8.801660718561875e-05,
562
+ "loss": 0.5697366237640381,
563
+ "step": 355
564
+ },
565
+ {
566
+ "epoch": 0.7578947368421053,
567
+ "grad_norm": 0.48311182856559753,
568
+ "learning_rate": 8.7645025511204e-05,
569
+ "loss": 0.6168550491333008,
570
+ "step": 360
571
+ },
572
+ {
573
+ "epoch": 0.7684210526315789,
574
+ "grad_norm": 0.5001690983772278,
575
+ "learning_rate": 8.726858058686968e-05,
576
+ "loss": 0.5362951278686523,
577
+ "step": 365
578
+ },
579
+ {
580
+ "epoch": 0.7789473684210526,
581
+ "grad_norm": 0.5915603041648865,
582
+ "learning_rate": 8.688732104442632e-05,
583
+ "loss": 0.6041481018066406,
584
+ "step": 370
585
+ },
586
+ {
587
+ "epoch": 0.7894736842105263,
588
+ "grad_norm": 0.5077712535858154,
589
+ "learning_rate": 8.650129613767075e-05,
590
+ "loss": 0.5257850646972656,
591
+ "step": 375
592
+ },
593
+ {
594
+ "epoch": 0.8,
595
+ "grad_norm": 0.7458930015563965,
596
+ "learning_rate": 8.611055573602323e-05,
597
+ "loss": 0.6048945903778076,
598
+ "step": 380
599
+ },
600
+ {
601
+ "epoch": 0.8105263157894737,
602
+ "grad_norm": 0.6072155237197876,
603
+ "learning_rate": 8.571515031808484e-05,
604
+ "loss": 0.5505197048187256,
605
+ "step": 385
606
+ },
607
+ {
608
+ "epoch": 0.8210526315789474,
609
+ "grad_norm": 0.5989276170730591,
610
+ "learning_rate": 8.531513096511646e-05,
611
+ "loss": 0.528736162185669,
612
+ "step": 390
613
+ },
614
+ {
615
+ "epoch": 0.8315789473684211,
616
+ "grad_norm": 0.47586777806282043,
617
+ "learning_rate": 8.491054935443954e-05,
618
+ "loss": 0.5494171142578125,
619
+ "step": 395
620
+ },
621
+ {
622
+ "epoch": 0.8421052631578947,
623
+ "grad_norm": 0.6332405209541321,
624
+ "learning_rate": 8.450145775276024e-05,
625
+ "loss": 0.605548906326294,
626
+ "step": 400
627
+ },
628
+ {
629
+ "epoch": 0.8421052631578947,
630
+ "eval_loss": 0.5717179775238037,
631
+ "eval_runtime": 27.9225,
632
+ "eval_samples_per_second": 14.325,
633
+ "eval_steps_per_second": 14.325,
634
+ "step": 400
635
+ },
636
+ {
637
+ "epoch": 0.8526315789473684,
638
+ "grad_norm": 0.873306155204773,
639
+ "learning_rate": 8.40879090094171e-05,
640
+ "loss": 0.6015737056732178,
641
+ "step": 405
642
+ },
643
+ {
644
+ "epoch": 0.8631578947368421,
645
+ "grad_norm": 0.6360308527946472,
646
+ "learning_rate": 8.366995654955375e-05,
647
+ "loss": 0.5689235687255859,
648
+ "step": 410
649
+ },
650
+ {
651
+ "epoch": 0.8736842105263158,
652
+ "grad_norm": 0.7359456419944763,
653
+ "learning_rate": 8.324765436721688e-05,
654
+ "loss": 0.6225551128387451,
655
+ "step": 415
656
+ },
657
+ {
658
+ "epoch": 0.8842105263157894,
659
+ "grad_norm": 0.6135861873626709,
660
+ "learning_rate": 8.282105701838106e-05,
661
+ "loss": 0.567096471786499,
662
+ "step": 420
663
+ },
664
+ {
665
+ "epoch": 0.8947368421052632,
666
+ "grad_norm": 0.5699036717414856,
667
+ "learning_rate": 8.239021961390078e-05,
668
+ "loss": 0.5435199737548828,
669
+ "step": 425
670
+ },
671
+ {
672
+ "epoch": 0.9052631578947369,
673
+ "grad_norm": 0.6312369704246521,
674
+ "learning_rate": 8.195519781239079e-05,
675
+ "loss": 0.6320878028869629,
676
+ "step": 430
677
+ },
678
+ {
679
+ "epoch": 0.9157894736842105,
680
+ "grad_norm": 0.7718231678009033,
681
+ "learning_rate": 8.151604781303577e-05,
682
+ "loss": 0.5115500450134277,
683
+ "step": 435
684
+ },
685
+ {
686
+ "epoch": 0.9263157894736842,
687
+ "grad_norm": 0.7022733688354492,
688
+ "learning_rate": 8.107282634833015e-05,
689
+ "loss": 0.5616052627563477,
690
+ "step": 440
691
+ },
692
+ {
693
+ "epoch": 0.9368421052631579,
694
+ "grad_norm": 0.6376118659973145,
695
+ "learning_rate": 8.06255906767489e-05,
696
+ "loss": 0.6315895080566406,
697
+ "step": 445
698
+ },
699
+ {
700
+ "epoch": 0.9473684210526315,
701
+ "grad_norm": 0.5550912618637085,
702
+ "learning_rate": 8.01743985753506e-05,
703
+ "loss": 0.597140884399414,
704
+ "step": 450
705
+ },
706
+ {
707
+ "epoch": 0.9473684210526315,
708
+ "eval_loss": 0.5748050212860107,
709
+ "eval_runtime": 27.2437,
710
+ "eval_samples_per_second": 14.682,
711
+ "eval_steps_per_second": 14.682,
712
+ "step": 450
713
+ },
714
+ {
715
+ "epoch": 0.9578947368421052,
716
+ "grad_norm": 0.5438539385795593,
717
+ "learning_rate": 7.971930833231338e-05,
718
+ "loss": 0.5860416889190674,
719
+ "step": 455
720
+ },
721
+ {
722
+ "epoch": 0.968421052631579,
723
+ "grad_norm": 0.7530905604362488,
724
+ "learning_rate": 7.926037873940469e-05,
725
+ "loss": 0.5889331340789795,
726
+ "step": 460
727
+ },
728
+ {
729
+ "epoch": 0.9789473684210527,
730
+ "grad_norm": 0.6347785592079163,
731
+ "learning_rate": 7.879766908438638e-05,
732
+ "loss": 0.5784619808197021,
733
+ "step": 465
734
+ },
735
+ {
736
+ "epoch": 0.9894736842105263,
737
+ "grad_norm": 0.6019025444984436,
738
+ "learning_rate": 7.83312391433553e-05,
739
+ "loss": 0.5674707412719726,
740
+ "step": 470
741
+ },
742
+ {
743
+ "epoch": 1.0,
744
+ "grad_norm": 0.5169152617454529,
745
+ "learning_rate": 7.786114917302118e-05,
746
+ "loss": 0.6072670936584472,
747
+ "step": 475
748
+ },
749
+ {
750
+ "epoch": 1.0105263157894737,
751
+ "grad_norm": 0.5598861575126648,
752
+ "learning_rate": 7.738745990292208e-05,
753
+ "loss": 0.5027533531188965,
754
+ "step": 480
755
+ },
756
+ {
757
+ "epoch": 1.0210526315789474,
758
+ "grad_norm": 0.5044442415237427,
759
+ "learning_rate": 7.691023252757901e-05,
760
+ "loss": 0.50599045753479,
761
+ "step": 485
762
+ },
763
+ {
764
+ "epoch": 1.0315789473684212,
765
+ "grad_norm": 0.5246402025222778,
766
+ "learning_rate": 7.64295286985904e-05,
767
+ "loss": 0.4706981658935547,
768
+ "step": 490
769
+ },
770
+ {
771
+ "epoch": 1.0421052631578946,
772
+ "grad_norm": 0.6998376846313477,
773
+ "learning_rate": 7.594541051666742e-05,
774
+ "loss": 0.48616642951965333,
775
+ "step": 495
776
+ },
777
+ {
778
+ "epoch": 1.0526315789473684,
779
+ "grad_norm": 0.5945510864257812,
780
+ "learning_rate": 7.545794052361149e-05,
781
+ "loss": 0.46446027755737307,
782
+ "step": 500
783
+ },
784
+ {
785
+ "epoch": 1.0526315789473684,
786
+ "eval_loss": 0.5771171450614929,
787
+ "eval_runtime": 27.1019,
788
+ "eval_samples_per_second": 14.759,
789
+ "eval_steps_per_second": 14.759,
790
+ "step": 500
791
+ },
792
+ {
793
+ "epoch": 1.063157894736842,
794
+ "grad_norm": 12.692610740661621,
795
+ "learning_rate": 7.496718169423462e-05,
796
+ "loss": 0.4399024486541748,
797
+ "step": 505
798
+ },
799
+ {
800
+ "epoch": 1.0736842105263158,
801
+ "grad_norm": 0.6038990020751953,
802
+ "learning_rate": 7.447319742822392e-05,
803
+ "loss": 0.48290238380432127,
804
+ "step": 510
805
+ },
806
+ {
807
+ "epoch": 1.0842105263157895,
808
+ "grad_norm": 0.6743545532226562,
809
+ "learning_rate": 7.397605154195106e-05,
810
+ "loss": 0.4822847366333008,
811
+ "step": 515
812
+ },
813
+ {
814
+ "epoch": 1.0947368421052632,
815
+ "grad_norm": 0.6746461391448975,
816
+ "learning_rate": 7.347580826022821e-05,
817
+ "loss": 0.47967071533203126,
818
+ "step": 520
819
+ },
820
+ {
821
+ "epoch": 1.1052631578947367,
822
+ "grad_norm": 0.7964761853218079,
823
+ "learning_rate": 7.29725322080109e-05,
824
+ "loss": 0.5180202484130859,
825
+ "step": 525
826
+ },
827
+ {
828
+ "epoch": 1.1157894736842104,
829
+ "grad_norm": 0.6772136688232422,
830
+ "learning_rate": 7.246628840204935e-05,
831
+ "loss": 0.46326284408569335,
832
+ "step": 530
833
+ },
834
+ {
835
+ "epoch": 1.1263157894736842,
836
+ "grad_norm": 0.7225517630577087,
837
+ "learning_rate": 7.195714224248912e-05,
838
+ "loss": 0.5262459278106689,
839
+ "step": 535
840
+ },
841
+ {
842
+ "epoch": 1.1368421052631579,
843
+ "grad_norm": 0.8155159950256348,
844
+ "learning_rate": 7.144515950442232e-05,
845
+ "loss": 0.5381614685058593,
846
+ "step": 540
847
+ },
848
+ {
849
+ "epoch": 1.1473684210526316,
850
+ "grad_norm": 0.7686448097229004,
851
+ "learning_rate": 7.093040632939023e-05,
852
+ "loss": 0.48169612884521484,
853
+ "step": 545
854
+ },
855
+ {
856
+ "epoch": 1.1578947368421053,
857
+ "grad_norm": 0.798007071018219,
858
+ "learning_rate": 7.041294921683876e-05,
859
+ "loss": 0.571818494796753,
860
+ "step": 550
861
+ },
862
+ {
863
+ "epoch": 1.1578947368421053,
864
+ "eval_loss": 0.5729017853736877,
865
+ "eval_runtime": 27.3923,
866
+ "eval_samples_per_second": 14.603,
867
+ "eval_steps_per_second": 14.603,
868
+ "step": 550
869
+ },
870
+ {
871
+ "epoch": 1.168421052631579,
872
+ "grad_norm": 0.9871010184288025,
873
+ "learning_rate": 6.989285501552751e-05,
874
+ "loss": 0.5277251243591309,
875
+ "step": 555
876
+ },
877
+ {
878
+ "epoch": 1.1789473684210527,
879
+ "grad_norm": 0.6931464076042175,
880
+ "learning_rate": 6.93701909148938e-05,
881
+ "loss": 0.4839730739593506,
882
+ "step": 560
883
+ },
884
+ {
885
+ "epoch": 1.1894736842105262,
886
+ "grad_norm": 0.6945406198501587,
887
+ "learning_rate": 6.884502443637273e-05,
888
+ "loss": 0.4632833480834961,
889
+ "step": 565
890
+ },
891
+ {
892
+ "epoch": 1.2,
893
+ "grad_norm": 0.8374159336090088,
894
+ "learning_rate": 6.831742342467418e-05,
895
+ "loss": 0.46635966300964354,
896
+ "step": 570
897
+ },
898
+ {
899
+ "epoch": 1.2105263157894737,
900
+ "grad_norm": 0.8007093667984009,
901
+ "learning_rate": 6.778745603901817e-05,
902
+ "loss": 0.4775552272796631,
903
+ "step": 575
904
+ },
905
+ {
906
+ "epoch": 1.2210526315789474,
907
+ "grad_norm": 0.922927975654602,
908
+ "learning_rate": 6.725519074432965e-05,
909
+ "loss": 0.41661796569824217,
910
+ "step": 580
911
+ },
912
+ {
913
+ "epoch": 1.231578947368421,
914
+ "grad_norm": 0.8915149569511414,
915
+ "learning_rate": 6.672069630239366e-05,
916
+ "loss": 0.46227364540100097,
917
+ "step": 585
918
+ },
919
+ {
920
+ "epoch": 1.2421052631578948,
921
+ "grad_norm": 0.7948114275932312,
922
+ "learning_rate": 6.618404176297217e-05,
923
+ "loss": 0.5104813575744629,
924
+ "step": 590
925
+ },
926
+ {
927
+ "epoch": 1.2526315789473683,
928
+ "grad_norm": 0.9380368590354919,
929
+ "learning_rate": 6.564529645488383e-05,
930
+ "loss": 0.4952188014984131,
931
+ "step": 595
932
+ },
933
+ {
934
+ "epoch": 1.263157894736842,
935
+ "grad_norm": 0.8004136085510254,
936
+ "learning_rate": 6.510452997704748e-05,
937
+ "loss": 0.4533547878265381,
938
+ "step": 600
939
+ },
940
+ {
941
+ "epoch": 1.263157894736842,
942
+ "eval_loss": 0.5720676779747009,
943
+ "eval_runtime": 27.2065,
944
+ "eval_samples_per_second": 14.702,
945
+ "eval_steps_per_second": 14.702,
946
+ "step": 600
947
+ },
948
+ {
949
+ "epoch": 1.2736842105263158,
950
+ "grad_norm": 0.8849948644638062,
951
+ "learning_rate": 6.456181218949096e-05,
952
+ "loss": 0.5185356140136719,
953
+ "step": 605
954
+ },
955
+ {
956
+ "epoch": 1.2842105263157895,
957
+ "grad_norm": 0.8258388638496399,
958
+ "learning_rate": 6.401721320432604e-05,
959
+ "loss": 0.45459442138671874,
960
+ "step": 610
961
+ },
962
+ {
963
+ "epoch": 1.2947368421052632,
964
+ "grad_norm": 0.7006433606147766,
965
+ "learning_rate": 6.34708033766909e-05,
966
+ "loss": 0.42599120140075686,
967
+ "step": 615
968
+ },
969
+ {
970
+ "epoch": 1.305263157894737,
971
+ "grad_norm": 0.8149921298027039,
972
+ "learning_rate": 6.292265329566108e-05,
973
+ "loss": 0.47135143280029296,
974
+ "step": 620
975
+ },
976
+ {
977
+ "epoch": 1.3157894736842106,
978
+ "grad_norm": 0.8304453492164612,
979
+ "learning_rate": 6.237283377513036e-05,
980
+ "loss": 0.543507719039917,
981
+ "step": 625
982
+ },
983
+ {
984
+ "epoch": 1.3263157894736843,
985
+ "grad_norm": 2.146064281463623,
986
+ "learning_rate": 6.182141584466247e-05,
987
+ "loss": 0.525644063949585,
988
+ "step": 630
989
+ },
990
+ {
991
+ "epoch": 1.3368421052631578,
992
+ "grad_norm": 0.8405390381813049,
993
+ "learning_rate": 6.126847074031507e-05,
994
+ "loss": 0.4994760513305664,
995
+ "step": 635
996
+ },
997
+ {
998
+ "epoch": 1.3473684210526315,
999
+ "grad_norm": 0.7558398842811584,
1000
+ "learning_rate": 6.071406989543678e-05,
1001
+ "loss": 0.45131878852844237,
1002
+ "step": 640
1003
+ },
1004
+ {
1005
+ "epoch": 1.3578947368421053,
1006
+ "grad_norm": 1.3861230611801147,
1007
+ "learning_rate": 6.0158284931439177e-05,
1008
+ "loss": 0.45543656349182127,
1009
+ "step": 645
1010
+ },
1011
+ {
1012
+ "epoch": 1.368421052631579,
1013
+ "grad_norm": 0.7160976529121399,
1014
+ "learning_rate": 5.9601187648544056e-05,
1015
+ "loss": 0.4914837837219238,
1016
+ "step": 650
1017
+ },
1018
+ {
1019
+ "epoch": 1.368421052631579,
1020
+ "eval_loss": 0.566149890422821,
1021
+ "eval_runtime": 27.1418,
1022
+ "eval_samples_per_second": 14.737,
1023
+ "eval_steps_per_second": 14.737,
1024
+ "step": 650
1025
+ },
1026
+ {
1027
+ "epoch": 1.3789473684210527,
1028
+ "grad_norm": 0.7861437201499939,
1029
+ "learning_rate": 5.904285001650783e-05,
1030
+ "loss": 0.497259521484375,
1031
+ "step": 655
1032
+ },
1033
+ {
1034
+ "epoch": 1.3894736842105262,
1035
+ "grad_norm": 0.7229910492897034,
1036
+ "learning_rate": 5.8483344165323975e-05,
1037
+ "loss": 0.5121944904327392,
1038
+ "step": 660
1039
+ },
1040
+ {
1041
+ "epoch": 1.4,
1042
+ "grad_norm": 0.8752608299255371,
1043
+ "learning_rate": 5.792274237590471e-05,
1044
+ "loss": 0.5024206161499023,
1045
+ "step": 665
1046
+ },
1047
+ {
1048
+ "epoch": 1.4105263157894736,
1049
+ "grad_norm": 0.8390534520149231,
1050
+ "learning_rate": 5.7361117070743374e-05,
1051
+ "loss": 0.48681044578552246,
1052
+ "step": 670
1053
+ },
1054
+ {
1055
+ "epoch": 1.4210526315789473,
1056
+ "grad_norm": 0.8038208484649658,
1057
+ "learning_rate": 5.679854080455821e-05,
1058
+ "loss": 0.4971346378326416,
1059
+ "step": 675
1060
+ },
1061
+ {
1062
+ "epoch": 1.431578947368421,
1063
+ "grad_norm": 0.7638700008392334,
1064
+ "learning_rate": 5.6235086254919324e-05,
1065
+ "loss": 0.42120847702026365,
1066
+ "step": 680
1067
+ },
1068
+ {
1069
+ "epoch": 1.4421052631578948,
1070
+ "grad_norm": 0.7635045051574707,
1071
+ "learning_rate": 5.567082621285969e-05,
1072
+ "loss": 0.47087574005126953,
1073
+ "step": 685
1074
+ },
1075
+ {
1076
+ "epoch": 1.4526315789473685,
1077
+ "grad_norm": 0.77474045753479,
1078
+ "learning_rate": 5.510583357347149e-05,
1079
+ "loss": 0.48073482513427734,
1080
+ "step": 690
1081
+ },
1082
+ {
1083
+ "epoch": 1.4631578947368422,
1084
+ "grad_norm": 0.8228810429573059,
1085
+ "learning_rate": 5.454018132648897e-05,
1086
+ "loss": 0.46302366256713867,
1087
+ "step": 695
1088
+ },
1089
+ {
1090
+ "epoch": 1.4736842105263157,
1091
+ "grad_norm": 0.8553083539009094,
1092
+ "learning_rate": 5.3973942546859145e-05,
1093
+ "loss": 0.47696647644042967,
1094
+ "step": 700
1095
+ },
1096
+ {
1097
+ "epoch": 1.4736842105263157,
1098
+ "eval_loss": 0.5677127242088318,
1099
+ "eval_runtime": 27.2564,
1100
+ "eval_samples_per_second": 14.675,
1101
+ "eval_steps_per_second": 14.675,
1102
+ "step": 700
1103
+ },
1104
+ {
1105
+ "epoch": 1.4842105263157894,
1106
+ "grad_norm": 0.885428249835968,
1107
+ "learning_rate": 5.3407190385301456e-05,
1108
+ "loss": 0.426132345199585,
1109
+ "step": 705
1110
+ },
1111
+ {
1112
+ "epoch": 1.4947368421052631,
1113
+ "grad_norm": 0.7517284154891968,
1114
+ "learning_rate": 5.283999805885764e-05,
1115
+ "loss": 0.5038762092590332,
1116
+ "step": 710
1117
+ },
1118
+ {
1119
+ "epoch": 1.5052631578947369,
1120
+ "grad_norm": 0.6059720516204834,
1121
+ "learning_rate": 5.227243884143306e-05,
1122
+ "loss": 0.40855984687805175,
1123
+ "step": 715
1124
+ },
1125
+ {
1126
+ "epoch": 1.5157894736842106,
1127
+ "grad_norm": 0.883471667766571,
1128
+ "learning_rate": 5.170458605433059e-05,
1129
+ "loss": 0.48758525848388673,
1130
+ "step": 720
1131
+ },
1132
+ {
1133
+ "epoch": 1.526315789473684,
1134
+ "grad_norm": 0.8542289733886719,
1135
+ "learning_rate": 5.113651305677856e-05,
1136
+ "loss": 0.4801379680633545,
1137
+ "step": 725
1138
+ },
1139
+ {
1140
+ "epoch": 1.5368421052631578,
1141
+ "grad_norm": 0.7095292210578918,
1142
+ "learning_rate": 5.0568293236453614e-05,
1143
+ "loss": 0.4451273441314697,
1144
+ "step": 730
1145
+ },
1146
+ {
1147
+ "epoch": 1.5473684210526315,
1148
+ "grad_norm": 0.7466174960136414,
1149
+ "learning_rate": 5e-05,
1150
+ "loss": 0.4858893871307373,
1151
+ "step": 735
1152
+ },
1153
+ {
1154
+ "epoch": 1.5578947368421052,
1155
+ "grad_norm": 0.8140954971313477,
1156
+ "learning_rate": 4.94317067635464e-05,
1157
+ "loss": 0.5117893695831299,
1158
+ "step": 740
1159
+ },
1160
+ {
1161
+ "epoch": 1.568421052631579,
1162
+ "grad_norm": 0.8628697991371155,
1163
+ "learning_rate": 4.886348694322145e-05,
1164
+ "loss": 0.48410491943359374,
1165
+ "step": 745
1166
+ },
1167
+ {
1168
+ "epoch": 1.5789473684210527,
1169
+ "grad_norm": 0.7672389149665833,
1170
+ "learning_rate": 4.829541394566942e-05,
1171
+ "loss": 0.4889042854309082,
1172
+ "step": 750
1173
+ },
1174
+ {
1175
+ "epoch": 1.5789473684210527,
1176
+ "eval_loss": 0.5602394938468933,
1177
+ "eval_runtime": 27.2938,
1178
+ "eval_samples_per_second": 14.655,
1179
+ "eval_steps_per_second": 14.655,
1180
+ "step": 750
1181
+ },
1182
+ {
1183
+ "epoch": 1.5894736842105264,
1184
+ "grad_norm": 0.8665842413902283,
1185
+ "learning_rate": 4.772756115856695e-05,
1186
+ "loss": 0.4589890480041504,
1187
+ "step": 755
1188
+ },
1189
+ {
1190
+ "epoch": 1.6,
1191
+ "grad_norm": 0.948796808719635,
1192
+ "learning_rate": 4.7160001941142365e-05,
1193
+ "loss": 0.4775981426239014,
1194
+ "step": 760
1195
+ },
1196
+ {
1197
+ "epoch": 1.6105263157894738,
1198
+ "grad_norm": 0.8106200695037842,
1199
+ "learning_rate": 4.6592809614698556e-05,
1200
+ "loss": 0.5602635860443115,
1201
+ "step": 765
1202
+ },
1203
+ {
1204
+ "epoch": 1.6210526315789475,
1205
+ "grad_norm": 1.2499663829803467,
1206
+ "learning_rate": 4.602605745314087e-05,
1207
+ "loss": 0.5022463321685791,
1208
+ "step": 770
1209
+ },
1210
+ {
1211
+ "epoch": 1.631578947368421,
1212
+ "grad_norm": 0.8327662944793701,
1213
+ "learning_rate": 4.545981867351104e-05,
1214
+ "loss": 0.4951312065124512,
1215
+ "step": 775
1216
+ },
1217
+ {
1218
+ "epoch": 1.6421052631578947,
1219
+ "grad_norm": 0.7749590277671814,
1220
+ "learning_rate": 4.4894166426528524e-05,
1221
+ "loss": 0.4875455379486084,
1222
+ "step": 780
1223
+ },
1224
+ {
1225
+ "epoch": 1.6526315789473685,
1226
+ "grad_norm": 0.764395534992218,
1227
+ "learning_rate": 4.432917378714032e-05,
1228
+ "loss": 0.47612872123718264,
1229
+ "step": 785
1230
+ },
1231
+ {
1232
+ "epoch": 1.663157894736842,
1233
+ "grad_norm": 0.8650004863739014,
1234
+ "learning_rate": 4.3764913745080695e-05,
1235
+ "loss": 0.4810147285461426,
1236
+ "step": 790
1237
+ },
1238
+ {
1239
+ "epoch": 1.6736842105263157,
1240
+ "grad_norm": 0.852967381477356,
1241
+ "learning_rate": 4.32014591954418e-05,
1242
+ "loss": 0.46249094009399416,
1243
+ "step": 795
1244
+ },
1245
+ {
1246
+ "epoch": 1.6842105263157894,
1247
+ "grad_norm": 0.752549946308136,
1248
+ "learning_rate": 4.263888292925664e-05,
1249
+ "loss": 0.463092565536499,
1250
+ "step": 800
1251
+ },
1252
+ {
1253
+ "epoch": 1.6842105263157894,
1254
+ "eval_loss": 0.557573139667511,
1255
+ "eval_runtime": 27.1956,
1256
+ "eval_samples_per_second": 14.708,
1257
+ "eval_steps_per_second": 14.708,
1258
+ "step": 800
1259
+ },
1260
+ {
1261
+ "epoch": 1.694736842105263,
1262
+ "grad_norm": 0.7666327953338623,
1263
+ "learning_rate": 4.207725762409529e-05,
1264
+ "loss": 0.549990177154541,
1265
+ "step": 805
1266
+ },
1267
+ {
1268
+ "epoch": 1.7052631578947368,
1269
+ "grad_norm": 1.2041642665863037,
1270
+ "learning_rate": 4.151665583467604e-05,
1271
+ "loss": 0.473134708404541,
1272
+ "step": 810
1273
+ },
1274
+ {
1275
+ "epoch": 1.7157894736842105,
1276
+ "grad_norm": 0.9291930794715881,
1277
+ "learning_rate": 4.095714998349218e-05,
1278
+ "loss": 0.43207721710205077,
1279
+ "step": 815
1280
+ },
1281
+ {
1282
+ "epoch": 1.7263157894736842,
1283
+ "grad_norm": 0.8421230316162109,
1284
+ "learning_rate": 4.0398812351455955e-05,
1285
+ "loss": 0.42284450531005857,
1286
+ "step": 820
1287
+ },
1288
+ {
1289
+ "epoch": 1.736842105263158,
1290
+ "grad_norm": 0.7550533413887024,
1291
+ "learning_rate": 3.9841715068560835e-05,
1292
+ "loss": 0.4533982276916504,
1293
+ "step": 825
1294
+ },
1295
+ {
1296
+ "epoch": 1.7473684210526317,
1297
+ "grad_norm": 0.7380033731460571,
1298
+ "learning_rate": 3.9285930104563234e-05,
1299
+ "loss": 0.47853550910949705,
1300
+ "step": 830
1301
+ },
1302
+ {
1303
+ "epoch": 1.7578947368421054,
1304
+ "grad_norm": 1.0466768741607666,
1305
+ "learning_rate": 3.873152925968495e-05,
1306
+ "loss": 0.5334872245788574,
1307
+ "step": 835
1308
+ },
1309
+ {
1310
+ "epoch": 1.768421052631579,
1311
+ "grad_norm": 0.8049618601799011,
1312
+ "learning_rate": 3.8178584155337525e-05,
1313
+ "loss": 0.4399109363555908,
1314
+ "step": 840
1315
+ },
1316
+ {
1317
+ "epoch": 1.7789473684210526,
1318
+ "grad_norm": 0.7510071992874146,
1319
+ "learning_rate": 3.762716622486965e-05,
1320
+ "loss": 0.521062707901001,
1321
+ "step": 845
1322
+ },
1323
+ {
1324
+ "epoch": 1.7894736842105263,
1325
+ "grad_norm": 1.6552070379257202,
1326
+ "learning_rate": 3.7077346704338935e-05,
1327
+ "loss": 0.45749530792236326,
1328
+ "step": 850
1329
+ },
1330
+ {
1331
+ "epoch": 1.7894736842105263,
1332
+ "eval_loss": 0.552564799785614,
1333
+ "eval_runtime": 27.3375,
1334
+ "eval_samples_per_second": 14.632,
1335
+ "eval_steps_per_second": 14.632,
1336
+ "step": 850
1337
+ },
1338
+ {
1339
+ "epoch": 1.8,
1340
+ "grad_norm": 0.7396476864814758,
1341
+ "learning_rate": 3.6529196623309115e-05,
1342
+ "loss": 0.38660905361175535,
1343
+ "step": 855
1344
+ },
1345
+ {
1346
+ "epoch": 1.8105263157894735,
1347
+ "grad_norm": 0.8277924656867981,
1348
+ "learning_rate": 3.598278679567397e-05,
1349
+ "loss": 0.5064235210418702,
1350
+ "step": 860
1351
+ },
1352
+ {
1353
+ "epoch": 1.8210526315789473,
1354
+ "grad_norm": 0.9554834365844727,
1355
+ "learning_rate": 3.543818781050906e-05,
1356
+ "loss": 0.4140141010284424,
1357
+ "step": 865
1358
+ },
1359
+ {
1360
+ "epoch": 1.831578947368421,
1361
+ "grad_norm": 0.7180286049842834,
1362
+ "learning_rate": 3.4895470022952536e-05,
1363
+ "loss": 0.5401397705078125,
1364
+ "step": 870
1365
+ },
1366
+ {
1367
+ "epoch": 1.8421052631578947,
1368
+ "grad_norm": 0.972764790058136,
1369
+ "learning_rate": 3.4354703545116185e-05,
1370
+ "loss": 0.504509973526001,
1371
+ "step": 875
1372
+ },
1373
+ {
1374
+ "epoch": 1.8526315789473684,
1375
+ "grad_norm": 0.7626535892486572,
1376
+ "learning_rate": 3.381595823702784e-05,
1377
+ "loss": 0.46036224365234374,
1378
+ "step": 880
1379
+ },
1380
+ {
1381
+ "epoch": 1.8631578947368421,
1382
+ "grad_norm": 0.9077037572860718,
1383
+ "learning_rate": 3.3279303697606354e-05,
1384
+ "loss": 0.4127952098846436,
1385
+ "step": 885
1386
+ },
1387
+ {
1388
+ "epoch": 1.8736842105263158,
1389
+ "grad_norm": 0.764255702495575,
1390
+ "learning_rate": 3.274480925567036e-05,
1391
+ "loss": 0.4129067897796631,
1392
+ "step": 890
1393
+ },
1394
+ {
1395
+ "epoch": 1.8842105263157896,
1396
+ "grad_norm": 0.9645035266876221,
1397
+ "learning_rate": 3.2212543960981845e-05,
1398
+ "loss": 0.486614990234375,
1399
+ "step": 895
1400
+ },
1401
+ {
1402
+ "epoch": 1.8947368421052633,
1403
+ "grad_norm": 0.7822158932685852,
1404
+ "learning_rate": 3.168257657532584e-05,
1405
+ "loss": 0.43874049186706543,
1406
+ "step": 900
1407
+ },
1408
+ {
1409
+ "epoch": 1.8947368421052633,
1410
+ "eval_loss": 0.5511002540588379,
1411
+ "eval_runtime": 27.8563,
1412
+ "eval_samples_per_second": 14.359,
1413
+ "eval_steps_per_second": 14.359,
1414
+ "step": 900
1415
+ },
1416
+ {
1417
+ "epoch": 1.905263157894737,
1418
+ "grad_norm": 0.823441207408905,
1419
+ "learning_rate": 3.115497556362727e-05,
1420
+ "loss": 0.4594260692596436,
1421
+ "step": 905
1422
+ },
1423
+ {
1424
+ "epoch": 1.9157894736842105,
1425
+ "grad_norm": 0.821818470954895,
1426
+ "learning_rate": 3.06298090851062e-05,
1427
+ "loss": 0.4467416763305664,
1428
+ "step": 910
1429
+ },
1430
+ {
1431
+ "epoch": 1.9263157894736842,
1432
+ "grad_norm": 0.8790761232376099,
1433
+ "learning_rate": 3.0107144984472502e-05,
1434
+ "loss": 0.4823316097259521,
1435
+ "step": 915
1436
+ },
1437
+ {
1438
+ "epoch": 1.936842105263158,
1439
+ "grad_norm": 0.7914945483207703,
1440
+ "learning_rate": 2.9587050783161252e-05,
1441
+ "loss": 0.4314936637878418,
1442
+ "step": 920
1443
+ },
1444
+ {
1445
+ "epoch": 1.9473684210526314,
1446
+ "grad_norm": 0.805029571056366,
1447
+ "learning_rate": 2.9069593670609775e-05,
1448
+ "loss": 0.4740307331085205,
1449
+ "step": 925
1450
+ },
1451
+ {
1452
+ "epoch": 1.9578947368421051,
1453
+ "grad_norm": 0.7928342223167419,
1454
+ "learning_rate": 2.8554840495577682e-05,
1455
+ "loss": 0.4155329704284668,
1456
+ "step": 930
1457
+ },
1458
+ {
1459
+ "epoch": 1.9684210526315788,
1460
+ "grad_norm": 0.8041934370994568,
1461
+ "learning_rate": 2.8042857757510877e-05,
1462
+ "loss": 0.5049230098724365,
1463
+ "step": 935
1464
+ },
1465
+ {
1466
+ "epoch": 1.9789473684210526,
1467
+ "grad_norm": 0.8169903755187988,
1468
+ "learning_rate": 2.753371159795065e-05,
1469
+ "loss": 0.3966445684432983,
1470
+ "step": 940
1471
+ },
1472
+ {
1473
+ "epoch": 1.9894736842105263,
1474
+ "grad_norm": 0.86372309923172,
1475
+ "learning_rate": 2.702746779198912e-05,
1476
+ "loss": 0.5153264999389648,
1477
+ "step": 945
1478
+ },
1479
+ {
1480
+ "epoch": 2.0,
1481
+ "grad_norm": 0.97676020860672,
1482
+ "learning_rate": 2.6524191739771815e-05,
1483
+ "loss": 0.4318437099456787,
1484
+ "step": 950
1485
+ },
1486
+ {
1487
+ "epoch": 2.0,
1488
+ "eval_loss": 0.5508978962898254,
1489
+ "eval_runtime": 27.8163,
1490
+ "eval_samples_per_second": 14.38,
1491
+ "eval_steps_per_second": 14.38,
1492
+ "step": 950
1493
+ },
1494
+ {
1495
+ "epoch": 2.0105263157894737,
1496
+ "grad_norm": 0.7161779999732971,
1497
+ "learning_rate": 2.6023948458048965e-05,
1498
+ "loss": 0.3977535247802734,
1499
+ "step": 955
1500
+ },
1501
+ {
1502
+ "epoch": 2.0210526315789474,
1503
+ "grad_norm": 0.8996826410293579,
1504
+ "learning_rate": 2.552680257177611e-05,
1505
+ "loss": 0.38445310592651366,
1506
+ "step": 960
1507
+ },
1508
+ {
1509
+ "epoch": 2.031578947368421,
1510
+ "grad_norm": 0.7812126278877258,
1511
+ "learning_rate": 2.5032818305765383e-05,
1512
+ "loss": 0.37283446788787844,
1513
+ "step": 965
1514
+ },
1515
+ {
1516
+ "epoch": 2.042105263157895,
1517
+ "grad_norm": 0.7872561812400818,
1518
+ "learning_rate": 2.454205947638852e-05,
1519
+ "loss": 0.3594684600830078,
1520
+ "step": 970
1521
+ },
1522
+ {
1523
+ "epoch": 2.0526315789473686,
1524
+ "grad_norm": 0.8357042670249939,
1525
+ "learning_rate": 2.4054589483332597e-05,
1526
+ "loss": 0.30683672428131104,
1527
+ "step": 975
1528
+ },
1529
+ {
1530
+ "epoch": 2.0631578947368423,
1531
+ "grad_norm": 0.7905634045600891,
1532
+ "learning_rate": 2.3570471301409618e-05,
1533
+ "loss": 0.32751510143280027,
1534
+ "step": 980
1535
+ },
1536
+ {
1537
+ "epoch": 2.0736842105263156,
1538
+ "grad_norm": 1.3322068452835083,
1539
+ "learning_rate": 2.3089767472421e-05,
1540
+ "loss": 0.3961126089096069,
1541
+ "step": 985
1542
+ },
1543
+ {
1544
+ "epoch": 2.0842105263157893,
1545
+ "grad_norm": 0.9144253730773926,
1546
+ "learning_rate": 2.2612540097077935e-05,
1547
+ "loss": 0.3600940704345703,
1548
+ "step": 990
1549
+ },
1550
+ {
1551
+ "epoch": 2.094736842105263,
1552
+ "grad_norm": 0.8574570417404175,
1553
+ "learning_rate": 2.213885082697883e-05,
1554
+ "loss": 0.3191706895828247,
1555
+ "step": 995
1556
+ },
1557
+ {
1558
+ "epoch": 2.1052631578947367,
1559
+ "grad_norm": 0.9719475507736206,
1560
+ "learning_rate": 2.1668760856644703e-05,
1561
+ "loss": 0.39908566474914553,
1562
+ "step": 1000
1563
+ },
1564
+ {
1565
+ "epoch": 2.1052631578947367,
1566
+ "eval_loss": 0.5967375040054321,
1567
+ "eval_runtime": 28.5798,
1568
+ "eval_samples_per_second": 13.996,
1569
+ "eval_steps_per_second": 13.996,
1570
+ "step": 1000
1571
+ },
1572
+ {
1573
+ "epoch": 2.1157894736842104,
1574
+ "grad_norm": 1.0026988983154297,
1575
+ "learning_rate": 2.1202330915613638e-05,
1576
+ "loss": 0.324949836730957,
1577
+ "step": 1005
1578
+ },
1579
+ {
1580
+ "epoch": 2.126315789473684,
1581
+ "grad_norm": 0.9327012896537781,
1582
+ "learning_rate": 2.0739621260595315e-05,
1583
+ "loss": 0.31343927383422854,
1584
+ "step": 1010
1585
+ },
1586
+ {
1587
+ "epoch": 2.136842105263158,
1588
+ "grad_norm": 0.8879086375236511,
1589
+ "learning_rate": 2.028069166768663e-05,
1590
+ "loss": 0.35412182807922366,
1591
+ "step": 1015
1592
+ },
1593
+ {
1594
+ "epoch": 2.1473684210526316,
1595
+ "grad_norm": 1.014451265335083,
1596
+ "learning_rate": 1.982560142464939e-05,
1597
+ "loss": 0.3389745235443115,
1598
+ "step": 1020
1599
+ },
1600
+ {
1601
+ "epoch": 2.1578947368421053,
1602
+ "grad_norm": 1.067197561264038,
1603
+ "learning_rate": 1.937440932325112e-05,
1604
+ "loss": 0.30197973251342775,
1605
+ "step": 1025
1606
+ },
1607
+ {
1608
+ "epoch": 2.168421052631579,
1609
+ "grad_norm": 0.9498446583747864,
1610
+ "learning_rate": 1.8927173651669877e-05,
1611
+ "loss": 0.3828472375869751,
1612
+ "step": 1030
1613
+ },
1614
+ {
1615
+ "epoch": 2.1789473684210527,
1616
+ "grad_norm": 1.0303031206130981,
1617
+ "learning_rate": 1.8483952186964237e-05,
1618
+ "loss": 0.4124176025390625,
1619
+ "step": 1035
1620
+ },
1621
+ {
1622
+ "epoch": 2.1894736842105265,
1623
+ "grad_norm": 0.958342969417572,
1624
+ "learning_rate": 1.804480218760922e-05,
1625
+ "loss": 0.3103924751281738,
1626
+ "step": 1040
1627
+ },
1628
+ {
1629
+ "epoch": 2.2,
1630
+ "grad_norm": 1.0009726285934448,
1631
+ "learning_rate": 1.7609780386099234e-05,
1632
+ "loss": 0.33572826385498045,
1633
+ "step": 1045
1634
+ },
1635
+ {
1636
+ "epoch": 2.2105263157894735,
1637
+ "grad_norm": 1.0434421300888062,
1638
+ "learning_rate": 1.7178942981618945e-05,
1639
+ "loss": 0.3350696086883545,
1640
+ "step": 1050
1641
+ },
1642
+ {
1643
+ "epoch": 2.2105263157894735,
1644
+ "eval_loss": 0.6022932529449463,
1645
+ "eval_runtime": 27.6209,
1646
+ "eval_samples_per_second": 14.482,
1647
+ "eval_steps_per_second": 14.482,
1648
+ "step": 1050
1649
+ },
1650
+ {
1651
+ "epoch": 2.221052631578947,
1652
+ "grad_norm": 1.1546400785446167,
1653
+ "learning_rate": 1.6752345632783135e-05,
1654
+ "loss": 0.34174375534057616,
1655
+ "step": 1055
1656
+ },
1657
+ {
1658
+ "epoch": 2.231578947368421,
1659
+ "grad_norm": 1.0252087116241455,
1660
+ "learning_rate": 1.6330043450446265e-05,
1661
+ "loss": 0.3031753063201904,
1662
+ "step": 1060
1663
+ },
1664
+ {
1665
+ "epoch": 2.2421052631578946,
1666
+ "grad_norm": 1.0577940940856934,
1667
+ "learning_rate": 1.59120909905829e-05,
1668
+ "loss": 0.35698933601379396,
1669
+ "step": 1065
1670
+ },
1671
+ {
1672
+ "epoch": 2.2526315789473683,
1673
+ "grad_norm": 1.175123929977417,
1674
+ "learning_rate": 1.549854224723978e-05,
1675
+ "loss": 0.2965430736541748,
1676
+ "step": 1070
1677
+ },
1678
+ {
1679
+ "epoch": 2.263157894736842,
1680
+ "grad_norm": 0.9692304730415344,
1681
+ "learning_rate": 1.508945064556047e-05,
1682
+ "loss": 0.3899634122848511,
1683
+ "step": 1075
1684
+ },
1685
+ {
1686
+ "epoch": 2.2736842105263158,
1687
+ "grad_norm": 1.0569312572479248,
1688
+ "learning_rate": 1.4684869034883554e-05,
1689
+ "loss": 0.34727933406829836,
1690
+ "step": 1080
1691
+ },
1692
+ {
1693
+ "epoch": 2.2842105263157895,
1694
+ "grad_norm": 0.8666245937347412,
1695
+ "learning_rate": 1.4284849681915158e-05,
1696
+ "loss": 0.3896636009216309,
1697
+ "step": 1085
1698
+ },
1699
+ {
1700
+ "epoch": 2.294736842105263,
1701
+ "grad_norm": 1.0360913276672363,
1702
+ "learning_rate": 1.3889444263976786e-05,
1703
+ "loss": 0.31699607372283933,
1704
+ "step": 1090
1705
+ },
1706
+ {
1707
+ "epoch": 2.305263157894737,
1708
+ "grad_norm": 1.2606230974197388,
1709
+ "learning_rate": 1.3498703862329254e-05,
1710
+ "loss": 0.33367414474487306,
1711
+ "step": 1095
1712
+ },
1713
+ {
1714
+ "epoch": 2.3157894736842106,
1715
+ "grad_norm": 1.2789041996002197,
1716
+ "learning_rate": 1.3112678955573693e-05,
1717
+ "loss": 0.3069949150085449,
1718
+ "step": 1100
1719
+ },
1720
+ {
1721
+ "epoch": 2.3157894736842106,
1722
+ "eval_loss": 0.6039758324623108,
1723
+ "eval_runtime": 27.6614,
1724
+ "eval_samples_per_second": 14.461,
1725
+ "eval_steps_per_second": 14.461,
1726
+ "step": 1100
1727
+ },
1728
+ {
1729
+ "epoch": 2.3263157894736843,
1730
+ "grad_norm": 1.1908059120178223,
1731
+ "learning_rate": 1.2731419413130325e-05,
1732
+ "loss": 0.38684911727905275,
1733
+ "step": 1105
1734
+ },
1735
+ {
1736
+ "epoch": 2.336842105263158,
1737
+ "grad_norm": 1.262253999710083,
1738
+ "learning_rate": 1.2354974488796017e-05,
1739
+ "loss": 0.36271347999572756,
1740
+ "step": 1110
1741
+ },
1742
+ {
1743
+ "epoch": 2.3473684210526318,
1744
+ "grad_norm": 0.9189227819442749,
1745
+ "learning_rate": 1.1983392814381273e-05,
1746
+ "loss": 0.3401113271713257,
1747
+ "step": 1115
1748
+ },
1749
+ {
1750
+ "epoch": 2.3578947368421055,
1751
+ "grad_norm": 1.0726381540298462,
1752
+ "learning_rate": 1.1616722393427704e-05,
1753
+ "loss": 0.33876895904541016,
1754
+ "step": 1120
1755
+ },
1756
+ {
1757
+ "epoch": 2.3684210526315788,
1758
+ "grad_norm": 0.9959712028503418,
1759
+ "learning_rate": 1.125501059500656e-05,
1760
+ "loss": 0.3982860803604126,
1761
+ "step": 1125
1762
+ },
1763
+ {
1764
+ "epoch": 2.3789473684210525,
1765
+ "grad_norm": 0.9985882043838501,
1766
+ "learning_rate": 1.0898304147599231e-05,
1767
+ "loss": 0.3682390213012695,
1768
+ "step": 1130
1769
+ },
1770
+ {
1771
+ "epoch": 2.389473684210526,
1772
+ "grad_norm": 0.9115525484085083,
1773
+ "learning_rate": 1.0546649133060583e-05,
1774
+ "loss": 0.3579556465148926,
1775
+ "step": 1135
1776
+ },
1777
+ {
1778
+ "epoch": 2.4,
1779
+ "grad_norm": 1.1207247972488403,
1780
+ "learning_rate": 1.0200090980665739e-05,
1781
+ "loss": 0.42283267974853517,
1782
+ "step": 1140
1783
+ },
1784
+ {
1785
+ "epoch": 2.4105263157894736,
1786
+ "grad_norm": 1.0433000326156616,
1787
+ "learning_rate": 9.858674461241229e-06,
1788
+ "loss": 0.362597393989563,
1789
+ "step": 1145
1790
+ },
1791
+ {
1792
+ "epoch": 2.4210526315789473,
1793
+ "grad_norm": 0.9558874368667603,
1794
+ "learning_rate": 9.522443681381172e-06,
1795
+ "loss": 0.40636916160583497,
1796
+ "step": 1150
1797
+ },
1798
+ {
1799
+ "epoch": 2.4210526315789473,
1800
+ "eval_loss": 0.6012060642242432,
1801
+ "eval_runtime": 27.6853,
1802
+ "eval_samples_per_second": 14.448,
1803
+ "eval_steps_per_second": 14.448,
1804
+ "step": 1150
1805
+ },
1806
+ {
1807
+ "epoch": 2.431578947368421,
1808
+ "grad_norm": 0.9411963224411011,
1809
+ "learning_rate": 9.191442077749257e-06,
1810
+ "loss": 0.32624173164367676,
1811
+ "step": 1155
1812
+ },
1813
+ {
1814
+ "epoch": 2.442105263157895,
1815
+ "grad_norm": 1.1000866889953613,
1816
+ "learning_rate": 8.86571241146732e-06,
1817
+ "loss": 0.36433489322662355,
1818
+ "step": 1160
1819
+ },
1820
+ {
1821
+ "epoch": 2.4526315789473685,
1822
+ "grad_norm": 0.8302079439163208,
1823
+ "learning_rate": 8.545296762591144e-06,
1824
+ "loss": 0.34126312732696534,
1825
+ "step": 1165
1826
+ },
1827
+ {
1828
+ "epoch": 2.463157894736842,
1829
+ "grad_norm": 1.1295444965362549,
1830
+ "learning_rate": 8.230236524674256e-06,
1831
+ "loss": 0.34795560836791994,
1832
+ "step": 1170
1833
+ },
1834
+ {
1835
+ "epoch": 2.473684210526316,
1836
+ "grad_norm": 1.0424487590789795,
1837
+ "learning_rate": 7.920572399420428e-06,
1838
+ "loss": 0.34096055030822753,
1839
+ "step": 1175
1840
+ },
1841
+ {
1842
+ "epoch": 2.4842105263157896,
1843
+ "grad_norm": 1.1002000570297241,
1844
+ "learning_rate": 7.616344391425534e-06,
1845
+ "loss": 0.3707140922546387,
1846
+ "step": 1180
1847
+ },
1848
+ {
1849
+ "epoch": 2.4947368421052634,
1850
+ "grad_norm": 0.946130096912384,
1851
+ "learning_rate": 7.317591803009472e-06,
1852
+ "loss": 0.3825195074081421,
1853
+ "step": 1185
1854
+ },
1855
+ {
1856
+ "epoch": 2.5052631578947366,
1857
+ "grad_norm": 1.1903181076049805,
1858
+ "learning_rate": 7.024353229138836e-06,
1859
+ "loss": 0.3591669797897339,
1860
+ "step": 1190
1861
+ },
1862
+ {
1863
+ "epoch": 2.515789473684211,
1864
+ "grad_norm": 0.9660072326660156,
1865
+ "learning_rate": 6.736666552440896e-06,
1866
+ "loss": 0.31880993843078614,
1867
+ "step": 1195
1868
+ },
1869
+ {
1870
+ "epoch": 2.526315789473684,
1871
+ "grad_norm": 1.1138476133346558,
1872
+ "learning_rate": 6.454568938309724e-06,
1873
+ "loss": 0.33600804805755613,
1874
+ "step": 1200
1875
+ },
1876
+ {
1877
+ "epoch": 2.526315789473684,
1878
+ "eval_loss": 0.6024701595306396,
1879
+ "eval_runtime": 28.6271,
1880
+ "eval_samples_per_second": 13.973,
1881
+ "eval_steps_per_second": 13.973,
1882
+ "step": 1200
1883
+ },
1884
+ {
1885
+ "epoch": 2.536842105263158,
1886
+ "grad_norm": 1.0256083011627197,
1887
+ "learning_rate": 6.1780968301048406e-06,
1888
+ "loss": 0.30231916904449463,
1889
+ "step": 1205
1890
+ },
1891
+ {
1892
+ "epoch": 2.5473684210526315,
1893
+ "grad_norm": 1.3465616703033447,
1894
+ "learning_rate": 5.907285944443241e-06,
1895
+ "loss": 0.37215938568115237,
1896
+ "step": 1210
1897
+ },
1898
+ {
1899
+ "epoch": 2.557894736842105,
1900
+ "grad_norm": 1.0157089233398438,
1901
+ "learning_rate": 5.642171266585272e-06,
1902
+ "loss": 0.38835783004760743,
1903
+ "step": 1215
1904
+ },
1905
+ {
1906
+ "epoch": 2.568421052631579,
1907
+ "grad_norm": 1.0423297882080078,
1908
+ "learning_rate": 5.3827870459149665e-06,
1909
+ "loss": 0.3684116840362549,
1910
+ "step": 1220
1911
+ },
1912
+ {
1913
+ "epoch": 2.5789473684210527,
1914
+ "grad_norm": 1.2063053846359253,
1915
+ "learning_rate": 5.1291667915154774e-06,
1916
+ "loss": 0.39838123321533203,
1917
+ "step": 1225
1918
+ },
1919
+ {
1920
+ "epoch": 2.5894736842105264,
1921
+ "grad_norm": 1.045510172843933,
1922
+ "learning_rate": 4.88134326784015e-06,
1923
+ "loss": 0.3727046728134155,
1924
+ "step": 1230
1925
+ },
1926
+ {
1927
+ "epoch": 2.6,
1928
+ "grad_norm": 1.079955816268921,
1929
+ "learning_rate": 4.639348490479755e-06,
1930
+ "loss": 0.3064917802810669,
1931
+ "step": 1235
1932
+ },
1933
+ {
1934
+ "epoch": 2.610526315789474,
1935
+ "grad_norm": 1.029150128364563,
1936
+ "learning_rate": 4.403213722026516e-06,
1937
+ "loss": 0.3460820436477661,
1938
+ "step": 1240
1939
+ },
1940
+ {
1941
+ "epoch": 2.6210526315789475,
1942
+ "grad_norm": 1.2160367965698242,
1943
+ "learning_rate": 4.172969468035359e-06,
1944
+ "loss": 0.3394759178161621,
1945
+ "step": 1245
1946
+ },
1947
+ {
1948
+ "epoch": 2.6315789473684212,
1949
+ "grad_norm": 1.292370319366455,
1950
+ "learning_rate": 3.948645473083018e-06,
1951
+ "loss": 0.4295994281768799,
1952
+ "step": 1250
1953
+ },
1954
+ {
1955
+ "epoch": 2.6315789473684212,
1956
+ "eval_loss": 0.6037428975105286,
1957
+ "eval_runtime": 28.4938,
1958
+ "eval_samples_per_second": 14.038,
1959
+ "eval_steps_per_second": 14.038,
1960
+ "step": 1250
1961
+ },
1962
+ {
1963
+ "epoch": 2.6421052631578945,
1964
+ "grad_norm": 0.9467762112617493,
1965
+ "learning_rate": 3.730270716925394e-06,
1966
+ "loss": 0.3685704946517944,
1967
+ "step": 1255
1968
+ },
1969
+ {
1970
+ "epoch": 2.6526315789473687,
1971
+ "grad_norm": 0.9402472376823425,
1972
+ "learning_rate": 3.5178734107537637e-06,
1973
+ "loss": 0.38207206726074217,
1974
+ "step": 1260
1975
+ },
1976
+ {
1977
+ "epoch": 2.663157894736842,
1978
+ "grad_norm": 0.9341251254081726,
1979
+ "learning_rate": 3.311480993550259e-06,
1980
+ "loss": 0.3355901002883911,
1981
+ "step": 1265
1982
+ },
1983
+ {
1984
+ "epoch": 2.6736842105263157,
1985
+ "grad_norm": 1.3845702409744263,
1986
+ "learning_rate": 3.111120128543088e-06,
1987
+ "loss": 0.3235702276229858,
1988
+ "step": 1270
1989
+ },
1990
+ {
1991
+ "epoch": 2.6842105263157894,
1992
+ "grad_norm": 0.9406099319458008,
1993
+ "learning_rate": 2.9168166997620263e-06,
1994
+ "loss": 0.33657886981964114,
1995
+ "step": 1275
1996
+ },
1997
+ {
1998
+ "epoch": 2.694736842105263,
1999
+ "grad_norm": 1.0643633604049683,
2000
+ "learning_rate": 2.7285958086944786e-06,
2001
+ "loss": 0.35396461486816405,
2002
+ "step": 1280
2003
+ },
2004
+ {
2005
+ "epoch": 2.705263157894737,
2006
+ "grad_norm": 0.8600782155990601,
2007
+ "learning_rate": 2.5464817710427414e-06,
2008
+ "loss": 0.3184598445892334,
2009
+ "step": 1285
2010
+ },
2011
+ {
2012
+ "epoch": 2.7157894736842105,
2013
+ "grad_norm": 1.0098100900650024,
2014
+ "learning_rate": 2.370498113582731e-06,
2015
+ "loss": 0.3798511981964111,
2016
+ "step": 1290
2017
+ },
2018
+ {
2019
+ "epoch": 2.7263157894736842,
2020
+ "grad_norm": 1.2423481941223145,
2021
+ "learning_rate": 2.2006675711245818e-06,
2022
+ "loss": 0.36703929901123045,
2023
+ "step": 1295
2024
+ },
2025
+ {
2026
+ "epoch": 2.736842105263158,
2027
+ "grad_norm": 1.097049593925476,
2028
+ "learning_rate": 2.0370120835756513e-06,
2029
+ "loss": 0.2991799354553223,
2030
+ "step": 1300
2031
+ },
2032
+ {
2033
+ "epoch": 2.736842105263158,
2034
+ "eval_loss": 0.6043052077293396,
2035
+ "eval_runtime": 27.8515,
2036
+ "eval_samples_per_second": 14.362,
2037
+ "eval_steps_per_second": 14.362,
2038
+ "step": 1300
2039
+ },
2040
+ {
2041
+ "epoch": 2.7473684210526317,
2042
+ "grad_norm": 1.128627061843872,
2043
+ "learning_rate": 1.8795527931061374e-06,
2044
+ "loss": 0.34659562110900877,
2045
+ "step": 1305
2046
+ },
2047
+ {
2048
+ "epoch": 2.7578947368421054,
2049
+ "grad_norm": 0.958167314529419,
2050
+ "learning_rate": 1.7283100414178078e-06,
2051
+ "loss": 0.3479694128036499,
2052
+ "step": 1310
2053
+ },
2054
+ {
2055
+ "epoch": 2.768421052631579,
2056
+ "grad_norm": 1.2653661966323853,
2057
+ "learning_rate": 1.58330336711609e-06,
2058
+ "loss": 0.3173972606658936,
2059
+ "step": 1315
2060
+ },
2061
+ {
2062
+ "epoch": 2.7789473684210524,
2063
+ "grad_norm": 1.3858840465545654,
2064
+ "learning_rate": 1.4445515031859591e-06,
2065
+ "loss": 0.42389545440673826,
2066
+ "step": 1320
2067
+ },
2068
+ {
2069
+ "epoch": 2.7894736842105265,
2070
+ "grad_norm": 1.142336368560791,
2071
+ "learning_rate": 1.31207237457186e-06,
2072
+ "loss": 0.3316075563430786,
2073
+ "step": 1325
2074
+ },
2075
+ {
2076
+ "epoch": 2.8,
2077
+ "grad_norm": 1.341241478919983,
2078
+ "learning_rate": 1.1858830958620559e-06,
2079
+ "loss": 0.370093846321106,
2080
+ "step": 1330
2081
+ },
2082
+ {
2083
+ "epoch": 2.8105263157894735,
2084
+ "grad_norm": 1.2752244472503662,
2085
+ "learning_rate": 1.0659999690776302e-06,
2086
+ "loss": 0.37927913665771484,
2087
+ "step": 1335
2088
+ },
2089
+ {
2090
+ "epoch": 2.8210526315789473,
2091
+ "grad_norm": 1.2686620950698853,
2092
+ "learning_rate": 9.524384815664699e-07,
2093
+ "loss": 0.31010196208953855,
2094
+ "step": 1340
2095
+ },
2096
+ {
2097
+ "epoch": 2.831578947368421,
2098
+ "grad_norm": 0.9856387376785278,
2099
+ "learning_rate": 8.452133040025345e-07,
2100
+ "loss": 0.37815587520599364,
2101
+ "step": 1345
2102
+ },
2103
+ {
2104
+ "epoch": 2.8421052631578947,
2105
+ "grad_norm": 1.1066813468933105,
2106
+ "learning_rate": 7.443382884905536e-07,
2107
+ "loss": 0.3322570562362671,
2108
+ "step": 1350
2109
+ },
2110
+ {
2111
+ "epoch": 2.8421052631578947,
2112
+ "eval_loss": 0.6025745272636414,
2113
+ "eval_runtime": 27.5996,
2114
+ "eval_samples_per_second": 14.493,
2115
+ "eval_steps_per_second": 14.493,
2116
+ "step": 1350
2117
+ },
2118
+ {
2119
+ "epoch": 2.8526315789473684,
2120
+ "grad_norm": 1.8500337600708008,
2121
+ "learning_rate": 6.498264667765374e-07,
2122
+ "loss": 0.362324595451355,
2123
+ "step": 1355
2124
+ },
2125
+ {
2126
+ "epoch": 2.863157894736842,
2127
+ "grad_norm": 1.127455711364746,
2128
+ "learning_rate": 5.616900485642506e-07,
2129
+ "loss": 0.2964962005615234,
2130
+ "step": 1360
2131
+ },
2132
+ {
2133
+ "epoch": 2.873684210526316,
2134
+ "grad_norm": 0.9335603713989258,
2135
+ "learning_rate": 4.79940419937841e-07,
2136
+ "loss": 0.33919923305511473,
2137
+ "step": 1365
2138
+ },
2139
+ {
2140
+ "epoch": 2.8842105263157896,
2141
+ "grad_norm": 1.0695230960845947,
2142
+ "learning_rate": 4.045881418909547e-07,
2143
+ "loss": 0.33406035900115966,
2144
+ "step": 1370
2145
+ },
2146
+ {
2147
+ "epoch": 2.8947368421052633,
2148
+ "grad_norm": 1.2964420318603516,
2149
+ "learning_rate": 3.356429489623558e-07,
2150
+ "loss": 0.3467694282531738,
2151
+ "step": 1375
2152
+ },
2153
+ {
2154
+ "epoch": 2.905263157894737,
2155
+ "grad_norm": 0.9756618738174438,
2156
+ "learning_rate": 2.7311374797835966e-07,
2157
+ "loss": 0.27626986503601075,
2158
+ "step": 1380
2159
+ },
2160
+ {
2161
+ "epoch": 2.9157894736842103,
2162
+ "grad_norm": 1.125270962715149,
2163
+ "learning_rate": 2.170086169021923e-07,
2164
+ "loss": 0.350561261177063,
2165
+ "step": 1385
2166
+ },
2167
+ {
2168
+ "epoch": 2.9263157894736844,
2169
+ "grad_norm": 1.0733071565628052,
2170
+ "learning_rate": 1.6733480379041434e-07,
2171
+ "loss": 0.3240832328796387,
2172
+ "step": 1390
2173
+ },
2174
+ {
2175
+ "epoch": 2.9368421052631577,
2176
+ "grad_norm": 1.8108630180358887,
2177
+ "learning_rate": 1.240987258565751e-07,
2178
+ "loss": 0.3057235240936279,
2179
+ "step": 1395
2180
+ },
2181
+ {
2182
+ "epoch": 2.9473684210526314,
2183
+ "grad_norm": 1.3284285068511963,
2184
+ "learning_rate": 8.730596864218177e-08,
2185
+ "loss": 0.34192938804626466,
2186
+ "step": 1400
2187
+ },
2188
+ {
2189
+ "epoch": 2.9473684210526314,
2190
+ "eval_loss": 0.6027438640594482,
2191
+ "eval_runtime": 27.589,
2192
+ "eval_samples_per_second": 14.499,
2193
+ "eval_steps_per_second": 14.499,
2194
+ "step": 1400
2195
+ }
2196
+ ],
2197
+ "logging_steps": 5,
2198
+ "max_steps": 1425,
2199
+ "num_input_tokens_seen": 0,
2200
+ "num_train_epochs": 3,
2201
+ "save_steps": 50,
2202
+ "stateful_callbacks": {
2203
+ "TrainerControl": {
2204
+ "args": {
2205
+ "should_epoch_stop": false,
2206
+ "should_evaluate": false,
2207
+ "should_log": false,
2208
+ "should_save": true,
2209
+ "should_training_stop": false
2210
+ },
2211
+ "attributes": {}
2212
+ }
2213
+ },
2214
+ "total_flos": 2.3629504961622835e+17,
2215
+ "train_batch_size": 1,
2216
+ "trial_name": null,
2217
+ "trial_params": null
2218
+ }
checkpoint-1400/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:757b7d78e07bd589f7cd9db1a1a3019f58127f01f91cba75e4a6cbb7ea4b4a6c
3
+ size 5713
checkpoint-1425/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-12b-it
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/gemma-4-12b-it
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.20.0
checkpoint-1425/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Gemma4UnifiedForConditionalGeneration",
7
+ "parent_library": "transformers.models.gemma4_unified.modeling_gemma4_unified",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/gemma-4-12b-it",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "monteclora_config": null,
31
+ "peft_type": "LORA",
32
+ "peft_version": "0.20.0",
33
+ "qalora_group_size": 16,
34
+ "r": 16,
35
+ "rank_pattern": {},
36
+ "revision": null,
37
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer).*?(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection))|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer)\\.(?:(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection)))",
38
+ "target_parameters": null,
39
+ "task_type": "CAUSAL_LM",
40
+ "trainable_token_indices": null,
41
+ "use_bdlora": null,
42
+ "use_dora": false,
43
+ "use_qalora": false,
44
+ "use_rslora": false,
45
+ "velora_config": null
46
+ }
checkpoint-1425/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4611adeed740ccdb4edf6676e3e71fc4a38013ed53f11c89d0419ce2950584f1
3
+ size 262373216
checkpoint-1425/chat_template.jinja ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}{%- macro strip_thinking(text) -%}
2
+ {%- set ns = namespace(result='') -%}
3
+ {%- for part in text.split('<channel|>') -%}
4
+ {%- if '<|channel>' in part -%}
5
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
6
+ {%- else -%}
7
+ {%- set ns.result = ns.result + part -%}
8
+ {%- endif -%}
9
+ {%- endfor -%}
10
+ {{- ns.result | trim -}}
11
+ {%- endmacro -%}
12
+ {%- set thinking = enable_thinking is defined and enable_thinking -%}
13
+ {%- set loop_messages = messages -%}
14
+ {%- if messages[0]['role'] in ['system', 'developer'] or thinking -%}
15
+ {{ '<|turn>system
16
+ ' }}
17
+ {%- if thinking -%}
18
+ {{ '<|think|>
19
+ ' }}
20
+ {%- endif -%}
21
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
22
+ {{ messages[0]['content'] | trim }}
23
+ {%- set loop_messages = messages[1:] -%}
24
+ {%- endif -%}
25
+ {{ '<turn|>
26
+ ' }}
27
+ {%- endif -%}
28
+ {%- for message in loop_messages -%}
29
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
30
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
31
+ {%- endif -%}
32
+ {%- if (message['role'] == 'assistant') -%}
33
+ {%- set role = "model" -%}
34
+ {%- else -%}
35
+ {%- set role = message['role'] -%}
36
+ {%- endif -%}
37
+ {{ '<|turn>' + role + '
38
+ ' }}
39
+ {%- if message['content'] is string -%}
40
+ {%- if role == "model" -%}
41
+ {{ strip_thinking(message['content']) }}
42
+ {%- else -%}
43
+ {{ message['content'] | trim }}
44
+ {%- endif -%}
45
+ {%- elif message['content'] is iterable -%}
46
+ {%- for item in message['content'] -%}
47
+ {%- if item['type'] == 'audio' -%}
48
+ {{ '<|audio|>' }}
49
+ {%- elif item['type'] == 'image' -%}
50
+ {{ '<|image|>' }}
51
+ {%- elif item['type'] == 'video' -%}
52
+ {{ '<|video|>' }}
53
+ {%- elif item['type'] == 'text' -%}
54
+ {%- if role == "model" -%}
55
+ {{ strip_thinking(item['text']) }}
56
+ {%- else -%}
57
+ {{ item['text'] | trim }}
58
+ {%- endif -%}
59
+ {%- endif -%}
60
+ {%- endfor -%}
61
+ {%- else -%}
62
+ {{ raise_exception("Invalid content type") }}
63
+ {%- endif -%}
64
+ {{ '<turn|>
65
+ ' }}
66
+ {%- endfor -%}
67
+ {%- if add_generation_prompt -%}
68
+ {{'<|turn>model
69
+ '}}
70
+ {%- endif -%}
checkpoint-1425/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b4731990d49a99f765469cd819af2eb409a4d999213888f5ff8934b62ec3dca
3
+ size 133962277
checkpoint-1425/processor_config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_ms_per_token": 40,
3
+ "audio_seq_length": 750,
4
+ "feature_extractor": {
5
+ "audio_samples_per_token": 640,
6
+ "feature_extractor_type": "Gemma4UnifiedAudioFeatureExtractor",
7
+ "feature_size": 640,
8
+ "padding_side": "right",
9
+ "padding_value": 0.0,
10
+ "return_attention_mask": true,
11
+ "sampling_rate": 16000
12
+ },
13
+ "image_processor": {
14
+ "do_convert_rgb": true,
15
+ "do_normalize": false,
16
+ "do_rescale": true,
17
+ "do_resize": true,
18
+ "image_mean": [
19
+ 0.0,
20
+ 0.0,
21
+ 0.0
22
+ ],
23
+ "image_processor_type": "Gemma4UnifiedImageProcessor",
24
+ "image_std": [
25
+ 1.0,
26
+ 1.0,
27
+ 1.0
28
+ ],
29
+ "max_soft_tokens": 280,
30
+ "patch_size": 16,
31
+ "pooling_kernel_size": 3,
32
+ "resample": 3,
33
+ "rescale_factor": 0.00392156862745098
34
+ },
35
+ "image_seq_length": 280,
36
+ "processor_class": "Gemma4UnifiedProcessor",
37
+ "video_processor": {
38
+ "do_convert_rgb": true,
39
+ "do_normalize": true,
40
+ "do_rescale": true,
41
+ "do_resize": true,
42
+ "do_sample_frames": true,
43
+ "image_mean": [
44
+ 0.0,
45
+ 0.0,
46
+ 0.0
47
+ ],
48
+ "image_std": [
49
+ 1.0,
50
+ 1.0,
51
+ 1.0
52
+ ],
53
+ "max_soft_tokens": 70,
54
+ "num_frames": 32,
55
+ "patch_size": 16,
56
+ "pooling_kernel_size": 3,
57
+ "resample": 3,
58
+ "rescale_factor": 0.00392156862745098,
59
+ "return_metadata": false,
60
+ "video_processor_type": "Gemma4UnifiedVideoProcessor"
61
+ }
62
+ }
checkpoint-1425/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e79e6176793184a411bc49e872d78de6d894c1cb767ab56d61843c1a459e3493
3
+ size 14645
checkpoint-1425/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:423ee3b87236ef862966fb5d2c5f0c4b6f2667cca9d2185c683c9dcb3becb6f2
3
+ size 1465
checkpoint-1425/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
3
+ size 32169626
checkpoint-1425/tokenizer_config.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<turn|>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "model_max_length": 262144,
24
+ "model_specific_special_tokens": {
25
+ "audio_token": "<|audio|>",
26
+ "boa_token": "<|audio>",
27
+ "boi_token": "<|image>",
28
+ "eoa_token": "<audio|>",
29
+ "eoc_token": "<channel|>",
30
+ "eoi_token": "<image|>",
31
+ "eot_token": "<turn|>",
32
+ "escape_token": "<|\"|>",
33
+ "etc_token": "<tool_call|>",
34
+ "etd_token": "<tool|>",
35
+ "etr_token": "<tool_response|>",
36
+ "image_token": "<|image|>",
37
+ "soc_token": "<|channel>",
38
+ "sot_token": "<|turn>",
39
+ "stc_token": "<|tool_call>",
40
+ "std_token": "<|tool>",
41
+ "str_token": "<|tool_response>",
42
+ "think_token": "<|think|>"
43
+ },
44
+ "pad_token": "<pad>",
45
+ "padding_side": "right",
46
+ "processor_class": "Gemma4UnifiedProcessor",
47
+ "response_schema": {
48
+ "properties": {
49
+ "content": {
50
+ "type": "string"
51
+ },
52
+ "role": {
53
+ "const": "assistant"
54
+ },
55
+ "thinking": {
56
+ "type": "string"
57
+ },
58
+ "tool_calls": {
59
+ "items": {
60
+ "properties": {
61
+ "function": {
62
+ "properties": {
63
+ "arguments": {
64
+ "additionalProperties": {},
65
+ "type": "object",
66
+ "x-parser": "gemma4-tool-call"
67
+ },
68
+ "name": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "type": "object",
73
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
74
+ },
75
+ "type": {
76
+ "const": "function"
77
+ }
78
+ },
79
+ "type": "object"
80
+ },
81
+ "type": "array",
82
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
83
+ }
84
+ },
85
+ "type": "object",
86
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
87
+ },
88
+ "soc_token": "<|channel>",
89
+ "sot_token": "<|turn>",
90
+ "stc_token": "<|tool_call>",
91
+ "std_token": "<|tool>",
92
+ "str_token": "<|tool_response>",
93
+ "think_token": "<|think|>",
94
+ "tokenizer_class": "GemmaTokenizer",
95
+ "unk_token": "<unk>",
96
+ "added_tokens_decoder": {
97
+ "0": {
98
+ "content": "<pad>",
99
+ "single_word": false,
100
+ "lstrip": false,
101
+ "rstrip": false,
102
+ "normalized": false,
103
+ "special": true
104
+ },
105
+ "1": {
106
+ "content": "<eos>",
107
+ "single_word": false,
108
+ "lstrip": false,
109
+ "rstrip": false,
110
+ "normalized": false,
111
+ "special": true
112
+ },
113
+ "2": {
114
+ "content": "<bos>",
115
+ "single_word": false,
116
+ "lstrip": false,
117
+ "rstrip": false,
118
+ "normalized": false,
119
+ "special": true
120
+ },
121
+ "3": {
122
+ "content": "<unk>",
123
+ "single_word": false,
124
+ "lstrip": false,
125
+ "rstrip": false,
126
+ "normalized": false,
127
+ "special": true
128
+ },
129
+ "4": {
130
+ "content": "<mask>",
131
+ "single_word": false,
132
+ "lstrip": false,
133
+ "rstrip": false,
134
+ "normalized": false,
135
+ "special": true
136
+ },
137
+ "46": {
138
+ "content": "<|tool>",
139
+ "single_word": false,
140
+ "lstrip": false,
141
+ "rstrip": false,
142
+ "normalized": false,
143
+ "special": true
144
+ },
145
+ "47": {
146
+ "content": "<tool|>",
147
+ "single_word": false,
148
+ "lstrip": false,
149
+ "rstrip": false,
150
+ "normalized": false,
151
+ "special": true
152
+ },
153
+ "48": {
154
+ "content": "<|tool_call>",
155
+ "single_word": false,
156
+ "lstrip": false,
157
+ "rstrip": false,
158
+ "normalized": false,
159
+ "special": true
160
+ },
161
+ "49": {
162
+ "content": "<tool_call|>",
163
+ "single_word": false,
164
+ "lstrip": false,
165
+ "rstrip": false,
166
+ "normalized": false,
167
+ "special": true
168
+ },
169
+ "50": {
170
+ "content": "<|tool_response>",
171
+ "single_word": false,
172
+ "lstrip": false,
173
+ "rstrip": false,
174
+ "normalized": false,
175
+ "special": true
176
+ },
177
+ "51": {
178
+ "content": "<tool_response|>",
179
+ "single_word": false,
180
+ "lstrip": false,
181
+ "rstrip": false,
182
+ "normalized": false,
183
+ "special": true
184
+ },
185
+ "52": {
186
+ "content": "<|\"|>",
187
+ "single_word": false,
188
+ "lstrip": false,
189
+ "rstrip": false,
190
+ "normalized": false,
191
+ "special": true
192
+ },
193
+ "98": {
194
+ "content": "<|think|>",
195
+ "single_word": false,
196
+ "lstrip": false,
197
+ "rstrip": false,
198
+ "normalized": false,
199
+ "special": true
200
+ },
201
+ "100": {
202
+ "content": "<|channel>",
203
+ "single_word": false,
204
+ "lstrip": false,
205
+ "rstrip": false,
206
+ "normalized": false,
207
+ "special": true
208
+ },
209
+ "101": {
210
+ "content": "<channel|>",
211
+ "single_word": false,
212
+ "lstrip": false,
213
+ "rstrip": false,
214
+ "normalized": false,
215
+ "special": true
216
+ },
217
+ "105": {
218
+ "content": "<|turn>",
219
+ "single_word": false,
220
+ "lstrip": false,
221
+ "rstrip": false,
222
+ "normalized": false,
223
+ "special": true
224
+ },
225
+ "106": {
226
+ "content": "<turn|>",
227
+ "single_word": false,
228
+ "lstrip": false,
229
+ "rstrip": false,
230
+ "normalized": false,
231
+ "special": true
232
+ },
233
+ "255999": {
234
+ "content": "<|image>",
235
+ "single_word": false,
236
+ "lstrip": false,
237
+ "rstrip": false,
238
+ "normalized": false,
239
+ "special": true
240
+ },
241
+ "256000": {
242
+ "content": "<|audio>",
243
+ "single_word": false,
244
+ "lstrip": false,
245
+ "rstrip": false,
246
+ "normalized": false,
247
+ "special": true
248
+ },
249
+ "258880": {
250
+ "content": "<|image|>",
251
+ "single_word": false,
252
+ "lstrip": false,
253
+ "rstrip": false,
254
+ "normalized": false,
255
+ "special": true
256
+ },
257
+ "258881": {
258
+ "content": "<|audio|>",
259
+ "single_word": false,
260
+ "lstrip": false,
261
+ "rstrip": false,
262
+ "normalized": false,
263
+ "special": true
264
+ },
265
+ "258882": {
266
+ "content": "<image|>",
267
+ "single_word": false,
268
+ "lstrip": false,
269
+ "rstrip": false,
270
+ "normalized": false,
271
+ "special": true
272
+ },
273
+ "258883": {
274
+ "content": "<audio|>",
275
+ "single_word": false,
276
+ "lstrip": false,
277
+ "rstrip": false,
278
+ "normalized": false,
279
+ "special": true
280
+ },
281
+ "258884": {
282
+ "content": "<|video|>",
283
+ "single_word": false,
284
+ "lstrip": false,
285
+ "rstrip": false,
286
+ "normalized": false,
287
+ "special": true
288
+ }
289
+ }
290
+ }
checkpoint-1425/trainer_state.json ADDED
@@ -0,0 +1,2261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 950,
3
+ "best_metric": 0.5508978962898254,
4
+ "best_model_checkpoint": "/output/checkpoint-950",
5
+ "epoch": 3.0,
6
+ "eval_steps": 50,
7
+ "global_step": 1425,
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.010526315789473684,
14
+ "grad_norm": 2.0839247703552246,
15
+ "learning_rate": 9.302325581395349e-06,
16
+ "loss": 2.646485137939453,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.021052631578947368,
21
+ "grad_norm": 3.253295660018921,
22
+ "learning_rate": 2.0930232558139536e-05,
23
+ "loss": 2.9888063430786134,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.031578947368421054,
28
+ "grad_norm": 2.4486842155456543,
29
+ "learning_rate": 3.2558139534883724e-05,
30
+ "loss": 2.2748624801635744,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.042105263157894736,
35
+ "grad_norm": 2.5299599170684814,
36
+ "learning_rate": 4.418604651162791e-05,
37
+ "loss": 1.9410686492919922,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.05263157894736842,
42
+ "grad_norm": 1.6780576705932617,
43
+ "learning_rate": 5.5813953488372095e-05,
44
+ "loss": 1.3348378181457519,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.06315789473684211,
49
+ "grad_norm": 0.7812225222587585,
50
+ "learning_rate": 6.744186046511628e-05,
51
+ "loss": 0.8430736541748047,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.07368421052631578,
56
+ "grad_norm": 0.8205987215042114,
57
+ "learning_rate": 7.906976744186047e-05,
58
+ "loss": 0.8522604942321778,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.08421052631578947,
63
+ "grad_norm": 0.6925882697105408,
64
+ "learning_rate": 9.069767441860465e-05,
65
+ "loss": 0.6957129955291748,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.09473684210526316,
70
+ "grad_norm": 0.7553223371505737,
71
+ "learning_rate": 9.999987081161148e-05,
72
+ "loss": 0.8302087783813477,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.10526315789473684,
77
+ "grad_norm": 0.6056613922119141,
78
+ "learning_rate": 9.999534928810904e-05,
79
+ "loss": 0.6982179641723633,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.10526315789473684,
84
+ "eval_loss": 0.7021176218986511,
85
+ "eval_runtime": 27.8753,
86
+ "eval_samples_per_second": 14.35,
87
+ "eval_steps_per_second": 14.35,
88
+ "step": 50
89
+ },
90
+ {
91
+ "epoch": 0.11578947368421053,
92
+ "grad_norm": 1.4581637382507324,
93
+ "learning_rate": 9.998436901275022e-05,
94
+ "loss": 0.7925346374511719,
95
+ "step": 55
96
+ },
97
+ {
98
+ "epoch": 0.12631578947368421,
99
+ "grad_norm": 0.6449484825134277,
100
+ "learning_rate": 9.99669314040444e-05,
101
+ "loss": 0.7095213413238526,
102
+ "step": 60
103
+ },
104
+ {
105
+ "epoch": 0.1368421052631579,
106
+ "grad_norm": 0.6936064958572388,
107
+ "learning_rate": 9.994303871470489e-05,
108
+ "loss": 0.6608465194702149,
109
+ "step": 65
110
+ },
111
+ {
112
+ "epoch": 0.14736842105263157,
113
+ "grad_norm": 0.5944413542747498,
114
+ "learning_rate": 9.991269403135783e-05,
115
+ "loss": 0.6789331436157227,
116
+ "step": 70
117
+ },
118
+ {
119
+ "epoch": 0.15789473684210525,
120
+ "grad_norm": 0.7518417835235596,
121
+ "learning_rate": 9.987590127414344e-05,
122
+ "loss": 0.669992208480835,
123
+ "step": 75
124
+ },
125
+ {
126
+ "epoch": 0.16842105263157894,
127
+ "grad_norm": 0.7772454619407654,
128
+ "learning_rate": 9.98326651962096e-05,
129
+ "loss": 0.6882061958312988,
130
+ "step": 80
131
+ },
132
+ {
133
+ "epoch": 0.17894736842105263,
134
+ "grad_norm": 0.7076404690742493,
135
+ "learning_rate": 9.978299138309781e-05,
136
+ "loss": 0.6435281276702881,
137
+ "step": 85
138
+ },
139
+ {
140
+ "epoch": 0.18947368421052632,
141
+ "grad_norm": 0.6353256702423096,
142
+ "learning_rate": 9.972688625202164e-05,
143
+ "loss": 0.6035995960235596,
144
+ "step": 90
145
+ },
146
+ {
147
+ "epoch": 0.2,
148
+ "grad_norm": 0.6928842663764954,
149
+ "learning_rate": 9.966435705103765e-05,
150
+ "loss": 0.6339406967163086,
151
+ "step": 95
152
+ },
153
+ {
154
+ "epoch": 0.21052631578947367,
155
+ "grad_norm": 1.1047526597976685,
156
+ "learning_rate": 9.959541185810906e-05,
157
+ "loss": 0.5951476097106934,
158
+ "step": 100
159
+ },
160
+ {
161
+ "epoch": 0.21052631578947367,
162
+ "eval_loss": 0.6416817307472229,
163
+ "eval_runtime": 27.0456,
164
+ "eval_samples_per_second": 14.79,
165
+ "eval_steps_per_second": 14.79,
166
+ "step": 100
167
+ },
168
+ {
169
+ "epoch": 0.22105263157894736,
170
+ "grad_norm": 0.6272938847541809,
171
+ "learning_rate": 9.952005958006217e-05,
172
+ "loss": 0.6947292804718017,
173
+ "step": 105
174
+ },
175
+ {
176
+ "epoch": 0.23157894736842105,
177
+ "grad_norm": 0.6077613234519958,
178
+ "learning_rate": 9.943830995143577e-05,
179
+ "loss": 0.7127768993377686,
180
+ "step": 110
181
+ },
182
+ {
183
+ "epoch": 0.24210526315789474,
184
+ "grad_norm": 0.6263899803161621,
185
+ "learning_rate": 9.935017353322347e-05,
186
+ "loss": 0.643881893157959,
187
+ "step": 115
188
+ },
189
+ {
190
+ "epoch": 0.25263157894736843,
191
+ "grad_norm": 0.6517646908760071,
192
+ "learning_rate": 9.925566171150945e-05,
193
+ "loss": 0.6408101081848144,
194
+ "step": 120
195
+ },
196
+ {
197
+ "epoch": 0.2631578947368421,
198
+ "grad_norm": 0.5079100728034973,
199
+ "learning_rate": 9.915478669599747e-05,
200
+ "loss": 0.5704734802246094,
201
+ "step": 125
202
+ },
203
+ {
204
+ "epoch": 0.2736842105263158,
205
+ "grad_norm": 0.6810751557350159,
206
+ "learning_rate": 9.904756151843353e-05,
207
+ "loss": 0.7103314876556397,
208
+ "step": 130
209
+ },
210
+ {
211
+ "epoch": 0.28421052631578947,
212
+ "grad_norm": 0.6985617876052856,
213
+ "learning_rate": 9.893400003092237e-05,
214
+ "loss": 0.7399785995483399,
215
+ "step": 135
216
+ },
217
+ {
218
+ "epoch": 0.29473684210526313,
219
+ "grad_norm": 0.611039936542511,
220
+ "learning_rate": 9.881411690413796e-05,
221
+ "loss": 0.6211562633514405,
222
+ "step": 140
223
+ },
224
+ {
225
+ "epoch": 0.30526315789473685,
226
+ "grad_norm": 0.6540597677230835,
227
+ "learning_rate": 9.868792762542814e-05,
228
+ "loss": 0.6841907501220703,
229
+ "step": 145
230
+ },
231
+ {
232
+ "epoch": 0.3157894736842105,
233
+ "grad_norm": 0.6657130122184753,
234
+ "learning_rate": 9.855544849681404e-05,
235
+ "loss": 0.6384834289550781,
236
+ "step": 150
237
+ },
238
+ {
239
+ "epoch": 0.3157894736842105,
240
+ "eval_loss": 0.6154849529266357,
241
+ "eval_runtime": 28.9994,
242
+ "eval_samples_per_second": 13.793,
243
+ "eval_steps_per_second": 13.793,
244
+ "step": 150
245
+ },
246
+ {
247
+ "epoch": 0.3263157894736842,
248
+ "grad_norm": 0.6323176622390747,
249
+ "learning_rate": 9.841669663288391e-05,
250
+ "loss": 0.6482361793518067,
251
+ "step": 155
252
+ },
253
+ {
254
+ "epoch": 0.3368421052631579,
255
+ "grad_norm": 0.6461365818977356,
256
+ "learning_rate": 9.82716899585822e-05,
257
+ "loss": 0.6088940620422363,
258
+ "step": 160
259
+ },
260
+ {
261
+ "epoch": 0.3473684210526316,
262
+ "grad_norm": 0.518051028251648,
263
+ "learning_rate": 9.812044720689387e-05,
264
+ "loss": 0.6474239826202393,
265
+ "step": 165
266
+ },
267
+ {
268
+ "epoch": 0.35789473684210527,
269
+ "grad_norm": 0.6599591374397278,
270
+ "learning_rate": 9.796298791642435e-05,
271
+ "loss": 0.639539098739624,
272
+ "step": 170
273
+ },
274
+ {
275
+ "epoch": 0.3684210526315789,
276
+ "grad_norm": 0.6555272340774536,
277
+ "learning_rate": 9.779933242887542e-05,
278
+ "loss": 0.6650691986083984,
279
+ "step": 175
280
+ },
281
+ {
282
+ "epoch": 0.37894736842105264,
283
+ "grad_norm": 0.5666244626045227,
284
+ "learning_rate": 9.762950188641728e-05,
285
+ "loss": 0.6851089000701904,
286
+ "step": 180
287
+ },
288
+ {
289
+ "epoch": 0.3894736842105263,
290
+ "grad_norm": 0.7169855833053589,
291
+ "learning_rate": 9.745351822895727e-05,
292
+ "loss": 0.5861614227294922,
293
+ "step": 185
294
+ },
295
+ {
296
+ "epoch": 0.4,
297
+ "grad_norm": 0.5155227184295654,
298
+ "learning_rate": 9.727140419130553e-05,
299
+ "loss": 0.6075415134429931,
300
+ "step": 190
301
+ },
302
+ {
303
+ "epoch": 0.4105263157894737,
304
+ "grad_norm": 0.8202889561653137,
305
+ "learning_rate": 9.708318330023798e-05,
306
+ "loss": 0.6071089267730713,
307
+ "step": 195
308
+ },
309
+ {
310
+ "epoch": 0.42105263157894735,
311
+ "grad_norm": 0.4622310996055603,
312
+ "learning_rate": 9.688887987145691e-05,
313
+ "loss": 0.5945972919464111,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.42105263157894735,
318
+ "eval_loss": 0.6035570502281189,
319
+ "eval_runtime": 27.8485,
320
+ "eval_samples_per_second": 14.363,
321
+ "eval_steps_per_second": 14.363,
322
+ "step": 200
323
+ },
324
+ {
325
+ "epoch": 0.43157894736842106,
326
+ "grad_norm": 0.6781761050224304,
327
+ "learning_rate": 9.668851900644975e-05,
328
+ "loss": 0.570584774017334,
329
+ "step": 205
330
+ },
331
+ {
332
+ "epoch": 0.4421052631578947,
333
+ "grad_norm": 0.5482363104820251,
334
+ "learning_rate": 9.648212658924625e-05,
335
+ "loss": 0.6329983234405517,
336
+ "step": 210
337
+ },
338
+ {
339
+ "epoch": 0.45263157894736844,
340
+ "grad_norm": 0.6346020698547363,
341
+ "learning_rate": 9.62697292830746e-05,
342
+ "loss": 0.6306288242340088,
343
+ "step": 215
344
+ },
345
+ {
346
+ "epoch": 0.4631578947368421,
347
+ "grad_norm": 0.7032224535942078,
348
+ "learning_rate": 9.6051354526917e-05,
349
+ "loss": 0.6967363357543945,
350
+ "step": 220
351
+ },
352
+ {
353
+ "epoch": 0.47368421052631576,
354
+ "grad_norm": 0.4979580044746399,
355
+ "learning_rate": 9.582703053196464e-05,
356
+ "loss": 0.5608481884002685,
357
+ "step": 225
358
+ },
359
+ {
360
+ "epoch": 0.4842105263157895,
361
+ "grad_norm": 0.7327916622161865,
362
+ "learning_rate": 9.55967862779735e-05,
363
+ "loss": 0.584914255142212,
364
+ "step": 230
365
+ },
366
+ {
367
+ "epoch": 0.49473684210526314,
368
+ "grad_norm": 0.7519303560256958,
369
+ "learning_rate": 9.536065150952025e-05,
370
+ "loss": 0.6214882850646972,
371
+ "step": 235
372
+ },
373
+ {
374
+ "epoch": 0.5052631578947369,
375
+ "grad_norm": 0.7328101396560669,
376
+ "learning_rate": 9.511865673215986e-05,
377
+ "loss": 0.6112482070922851,
378
+ "step": 240
379
+ },
380
+ {
381
+ "epoch": 0.5157894736842106,
382
+ "grad_norm": 0.5348976254463196,
383
+ "learning_rate": 9.487083320848454e-05,
384
+ "loss": 0.6417016983032227,
385
+ "step": 245
386
+ },
387
+ {
388
+ "epoch": 0.5263157894736842,
389
+ "grad_norm": 0.5690417885780334,
390
+ "learning_rate": 9.461721295408505e-05,
391
+ "loss": 0.5277723789215087,
392
+ "step": 250
393
+ },
394
+ {
395
+ "epoch": 0.5263157894736842,
396
+ "eval_loss": 0.5920669436454773,
397
+ "eval_runtime": 27.6132,
398
+ "eval_samples_per_second": 14.486,
399
+ "eval_steps_per_second": 14.486,
400
+ "step": 250
401
+ },
402
+ {
403
+ "epoch": 0.5368421052631579,
404
+ "grad_norm": 0.5612736344337463,
405
+ "learning_rate": 9.435782873341474e-05,
406
+ "loss": 0.5604990959167481,
407
+ "step": 255
408
+ },
409
+ {
410
+ "epoch": 0.5473684210526316,
411
+ "grad_norm": 0.6084933876991272,
412
+ "learning_rate": 9.409271405555677e-05,
413
+ "loss": 0.5558807373046875,
414
+ "step": 260
415
+ },
416
+ {
417
+ "epoch": 0.5578947368421052,
418
+ "grad_norm": 0.6289730668067932,
419
+ "learning_rate": 9.382190316989518e-05,
420
+ "loss": 0.5646376609802246,
421
+ "step": 265
422
+ },
423
+ {
424
+ "epoch": 0.5684210526315789,
425
+ "grad_norm": 0.6343289613723755,
426
+ "learning_rate": 9.354543106169029e-05,
427
+ "loss": 0.6692690372467041,
428
+ "step": 270
429
+ },
430
+ {
431
+ "epoch": 0.5789473684210527,
432
+ "grad_norm": 1.0037399530410767,
433
+ "learning_rate": 9.326333344755912e-05,
434
+ "loss": 0.6066013813018799,
435
+ "step": 275
436
+ },
437
+ {
438
+ "epoch": 0.5894736842105263,
439
+ "grad_norm": 0.8138774633407593,
440
+ "learning_rate": 9.297564677086118e-05,
441
+ "loss": 0.6074648857116699,
442
+ "step": 280
443
+ },
444
+ {
445
+ "epoch": 0.6,
446
+ "grad_norm": 1.0000449419021606,
447
+ "learning_rate": 9.268240819699054e-05,
448
+ "loss": 0.5891916275024414,
449
+ "step": 285
450
+ },
451
+ {
452
+ "epoch": 0.6105263157894737,
453
+ "grad_norm": 0.7454043030738831,
454
+ "learning_rate": 9.238365560857447e-05,
455
+ "loss": 0.6280234336853028,
456
+ "step": 290
457
+ },
458
+ {
459
+ "epoch": 0.6210526315789474,
460
+ "grad_norm": 0.756981611251831,
461
+ "learning_rate": 9.207942760057958e-05,
462
+ "loss": 0.6314973831176758,
463
+ "step": 295
464
+ },
465
+ {
466
+ "epoch": 0.631578947368421,
467
+ "grad_norm": 0.7583857178688049,
468
+ "learning_rate": 9.176976347532575e-05,
469
+ "loss": 0.6410815715789795,
470
+ "step": 300
471
+ },
472
+ {
473
+ "epoch": 0.631578947368421,
474
+ "eval_loss": 0.5863876342773438,
475
+ "eval_runtime": 27.6386,
476
+ "eval_samples_per_second": 14.472,
477
+ "eval_steps_per_second": 14.472,
478
+ "step": 300
479
+ },
480
+ {
481
+ "epoch": 0.6421052631578947,
482
+ "grad_norm": 0.791587769985199,
483
+ "learning_rate": 9.145470323740885e-05,
484
+ "loss": 0.5841981410980225,
485
+ "step": 305
486
+ },
487
+ {
488
+ "epoch": 0.6526315789473685,
489
+ "grad_norm": 1.1765379905700684,
490
+ "learning_rate": 9.113428758853268e-05,
491
+ "loss": 0.5464617729187011,
492
+ "step": 310
493
+ },
494
+ {
495
+ "epoch": 0.6631578947368421,
496
+ "grad_norm": 3.7840137481689453,
497
+ "learning_rate": 9.080855792225076e-05,
498
+ "loss": 0.6217821121215821,
499
+ "step": 315
500
+ },
501
+ {
502
+ "epoch": 0.6736842105263158,
503
+ "grad_norm": 1.2177997827529907,
504
+ "learning_rate": 9.047755631861884e-05,
505
+ "loss": 0.6125752449035644,
506
+ "step": 320
507
+ },
508
+ {
509
+ "epoch": 0.6842105263157895,
510
+ "grad_norm": 0.6323914527893066,
511
+ "learning_rate": 9.014132553875878e-05,
512
+ "loss": 0.5617509365081788,
513
+ "step": 325
514
+ },
515
+ {
516
+ "epoch": 0.6947368421052632,
517
+ "grad_norm": 0.9683524370193481,
518
+ "learning_rate": 8.979990901933428e-05,
519
+ "loss": 0.6395817756652832,
520
+ "step": 330
521
+ },
522
+ {
523
+ "epoch": 0.7052631578947368,
524
+ "grad_norm": 0.6486535668373108,
525
+ "learning_rate": 8.945335086693942e-05,
526
+ "loss": 0.6556002616882324,
527
+ "step": 335
528
+ },
529
+ {
530
+ "epoch": 0.7157894736842105,
531
+ "grad_norm": 1.642112374305725,
532
+ "learning_rate": 8.910169585240078e-05,
533
+ "loss": 0.588761568069458,
534
+ "step": 340
535
+ },
536
+ {
537
+ "epoch": 0.7263157894736842,
538
+ "grad_norm": 1.007238507270813,
539
+ "learning_rate": 8.874498940499346e-05,
540
+ "loss": 0.5744077682495117,
541
+ "step": 345
542
+ },
543
+ {
544
+ "epoch": 0.7368421052631579,
545
+ "grad_norm": 0.4945877194404602,
546
+ "learning_rate": 8.83832776065723e-05,
547
+ "loss": 0.5382843494415284,
548
+ "step": 350
549
+ },
550
+ {
551
+ "epoch": 0.7368421052631579,
552
+ "eval_loss": 0.5782474279403687,
553
+ "eval_runtime": 27.574,
554
+ "eval_samples_per_second": 14.506,
555
+ "eval_steps_per_second": 14.506,
556
+ "step": 350
557
+ },
558
+ {
559
+ "epoch": 0.7473684210526316,
560
+ "grad_norm": 0.7869954109191895,
561
+ "learning_rate": 8.801660718561875e-05,
562
+ "loss": 0.5697366237640381,
563
+ "step": 355
564
+ },
565
+ {
566
+ "epoch": 0.7578947368421053,
567
+ "grad_norm": 0.48311182856559753,
568
+ "learning_rate": 8.7645025511204e-05,
569
+ "loss": 0.6168550491333008,
570
+ "step": 360
571
+ },
572
+ {
573
+ "epoch": 0.7684210526315789,
574
+ "grad_norm": 0.5001690983772278,
575
+ "learning_rate": 8.726858058686968e-05,
576
+ "loss": 0.5362951278686523,
577
+ "step": 365
578
+ },
579
+ {
580
+ "epoch": 0.7789473684210526,
581
+ "grad_norm": 0.5915603041648865,
582
+ "learning_rate": 8.688732104442632e-05,
583
+ "loss": 0.6041481018066406,
584
+ "step": 370
585
+ },
586
+ {
587
+ "epoch": 0.7894736842105263,
588
+ "grad_norm": 0.5077712535858154,
589
+ "learning_rate": 8.650129613767075e-05,
590
+ "loss": 0.5257850646972656,
591
+ "step": 375
592
+ },
593
+ {
594
+ "epoch": 0.8,
595
+ "grad_norm": 0.7458930015563965,
596
+ "learning_rate": 8.611055573602323e-05,
597
+ "loss": 0.6048945903778076,
598
+ "step": 380
599
+ },
600
+ {
601
+ "epoch": 0.8105263157894737,
602
+ "grad_norm": 0.6072155237197876,
603
+ "learning_rate": 8.571515031808484e-05,
604
+ "loss": 0.5505197048187256,
605
+ "step": 385
606
+ },
607
+ {
608
+ "epoch": 0.8210526315789474,
609
+ "grad_norm": 0.5989276170730591,
610
+ "learning_rate": 8.531513096511646e-05,
611
+ "loss": 0.528736162185669,
612
+ "step": 390
613
+ },
614
+ {
615
+ "epoch": 0.8315789473684211,
616
+ "grad_norm": 0.47586777806282043,
617
+ "learning_rate": 8.491054935443954e-05,
618
+ "loss": 0.5494171142578125,
619
+ "step": 395
620
+ },
621
+ {
622
+ "epoch": 0.8421052631578947,
623
+ "grad_norm": 0.6332405209541321,
624
+ "learning_rate": 8.450145775276024e-05,
625
+ "loss": 0.605548906326294,
626
+ "step": 400
627
+ },
628
+ {
629
+ "epoch": 0.8421052631578947,
630
+ "eval_loss": 0.5717179775238037,
631
+ "eval_runtime": 27.9225,
632
+ "eval_samples_per_second": 14.325,
633
+ "eval_steps_per_second": 14.325,
634
+ "step": 400
635
+ },
636
+ {
637
+ "epoch": 0.8526315789473684,
638
+ "grad_norm": 0.873306155204773,
639
+ "learning_rate": 8.40879090094171e-05,
640
+ "loss": 0.6015737056732178,
641
+ "step": 405
642
+ },
643
+ {
644
+ "epoch": 0.8631578947368421,
645
+ "grad_norm": 0.6360308527946472,
646
+ "learning_rate": 8.366995654955375e-05,
647
+ "loss": 0.5689235687255859,
648
+ "step": 410
649
+ },
650
+ {
651
+ "epoch": 0.8736842105263158,
652
+ "grad_norm": 0.7359456419944763,
653
+ "learning_rate": 8.324765436721688e-05,
654
+ "loss": 0.6225551128387451,
655
+ "step": 415
656
+ },
657
+ {
658
+ "epoch": 0.8842105263157894,
659
+ "grad_norm": 0.6135861873626709,
660
+ "learning_rate": 8.282105701838106e-05,
661
+ "loss": 0.567096471786499,
662
+ "step": 420
663
+ },
664
+ {
665
+ "epoch": 0.8947368421052632,
666
+ "grad_norm": 0.5699036717414856,
667
+ "learning_rate": 8.239021961390078e-05,
668
+ "loss": 0.5435199737548828,
669
+ "step": 425
670
+ },
671
+ {
672
+ "epoch": 0.9052631578947369,
673
+ "grad_norm": 0.6312369704246521,
674
+ "learning_rate": 8.195519781239079e-05,
675
+ "loss": 0.6320878028869629,
676
+ "step": 430
677
+ },
678
+ {
679
+ "epoch": 0.9157894736842105,
680
+ "grad_norm": 0.7718231678009033,
681
+ "learning_rate": 8.151604781303577e-05,
682
+ "loss": 0.5115500450134277,
683
+ "step": 435
684
+ },
685
+ {
686
+ "epoch": 0.9263157894736842,
687
+ "grad_norm": 0.7022733688354492,
688
+ "learning_rate": 8.107282634833015e-05,
689
+ "loss": 0.5616052627563477,
690
+ "step": 440
691
+ },
692
+ {
693
+ "epoch": 0.9368421052631579,
694
+ "grad_norm": 0.6376118659973145,
695
+ "learning_rate": 8.06255906767489e-05,
696
+ "loss": 0.6315895080566406,
697
+ "step": 445
698
+ },
699
+ {
700
+ "epoch": 0.9473684210526315,
701
+ "grad_norm": 0.5550912618637085,
702
+ "learning_rate": 8.01743985753506e-05,
703
+ "loss": 0.597140884399414,
704
+ "step": 450
705
+ },
706
+ {
707
+ "epoch": 0.9473684210526315,
708
+ "eval_loss": 0.5748050212860107,
709
+ "eval_runtime": 27.2437,
710
+ "eval_samples_per_second": 14.682,
711
+ "eval_steps_per_second": 14.682,
712
+ "step": 450
713
+ },
714
+ {
715
+ "epoch": 0.9578947368421052,
716
+ "grad_norm": 0.5438539385795593,
717
+ "learning_rate": 7.971930833231338e-05,
718
+ "loss": 0.5860416889190674,
719
+ "step": 455
720
+ },
721
+ {
722
+ "epoch": 0.968421052631579,
723
+ "grad_norm": 0.7530905604362488,
724
+ "learning_rate": 7.926037873940469e-05,
725
+ "loss": 0.5889331340789795,
726
+ "step": 460
727
+ },
728
+ {
729
+ "epoch": 0.9789473684210527,
730
+ "grad_norm": 0.6347785592079163,
731
+ "learning_rate": 7.879766908438638e-05,
732
+ "loss": 0.5784619808197021,
733
+ "step": 465
734
+ },
735
+ {
736
+ "epoch": 0.9894736842105263,
737
+ "grad_norm": 0.6019025444984436,
738
+ "learning_rate": 7.83312391433553e-05,
739
+ "loss": 0.5674707412719726,
740
+ "step": 470
741
+ },
742
+ {
743
+ "epoch": 1.0,
744
+ "grad_norm": 0.5169152617454529,
745
+ "learning_rate": 7.786114917302118e-05,
746
+ "loss": 0.6072670936584472,
747
+ "step": 475
748
+ },
749
+ {
750
+ "epoch": 1.0105263157894737,
751
+ "grad_norm": 0.5598861575126648,
752
+ "learning_rate": 7.738745990292208e-05,
753
+ "loss": 0.5027533531188965,
754
+ "step": 480
755
+ },
756
+ {
757
+ "epoch": 1.0210526315789474,
758
+ "grad_norm": 0.5044442415237427,
759
+ "learning_rate": 7.691023252757901e-05,
760
+ "loss": 0.50599045753479,
761
+ "step": 485
762
+ },
763
+ {
764
+ "epoch": 1.0315789473684212,
765
+ "grad_norm": 0.5246402025222778,
766
+ "learning_rate": 7.64295286985904e-05,
767
+ "loss": 0.4706981658935547,
768
+ "step": 490
769
+ },
770
+ {
771
+ "epoch": 1.0421052631578946,
772
+ "grad_norm": 0.6998376846313477,
773
+ "learning_rate": 7.594541051666742e-05,
774
+ "loss": 0.48616642951965333,
775
+ "step": 495
776
+ },
777
+ {
778
+ "epoch": 1.0526315789473684,
779
+ "grad_norm": 0.5945510864257812,
780
+ "learning_rate": 7.545794052361149e-05,
781
+ "loss": 0.46446027755737307,
782
+ "step": 500
783
+ },
784
+ {
785
+ "epoch": 1.0526315789473684,
786
+ "eval_loss": 0.5771171450614929,
787
+ "eval_runtime": 27.1019,
788
+ "eval_samples_per_second": 14.759,
789
+ "eval_steps_per_second": 14.759,
790
+ "step": 500
791
+ },
792
+ {
793
+ "epoch": 1.063157894736842,
794
+ "grad_norm": 12.692610740661621,
795
+ "learning_rate": 7.496718169423462e-05,
796
+ "loss": 0.4399024486541748,
797
+ "step": 505
798
+ },
799
+ {
800
+ "epoch": 1.0736842105263158,
801
+ "grad_norm": 0.6038990020751953,
802
+ "learning_rate": 7.447319742822392e-05,
803
+ "loss": 0.48290238380432127,
804
+ "step": 510
805
+ },
806
+ {
807
+ "epoch": 1.0842105263157895,
808
+ "grad_norm": 0.6743545532226562,
809
+ "learning_rate": 7.397605154195106e-05,
810
+ "loss": 0.4822847366333008,
811
+ "step": 515
812
+ },
813
+ {
814
+ "epoch": 1.0947368421052632,
815
+ "grad_norm": 0.6746461391448975,
816
+ "learning_rate": 7.347580826022821e-05,
817
+ "loss": 0.47967071533203126,
818
+ "step": 520
819
+ },
820
+ {
821
+ "epoch": 1.1052631578947367,
822
+ "grad_norm": 0.7964761853218079,
823
+ "learning_rate": 7.29725322080109e-05,
824
+ "loss": 0.5180202484130859,
825
+ "step": 525
826
+ },
827
+ {
828
+ "epoch": 1.1157894736842104,
829
+ "grad_norm": 0.6772136688232422,
830
+ "learning_rate": 7.246628840204935e-05,
831
+ "loss": 0.46326284408569335,
832
+ "step": 530
833
+ },
834
+ {
835
+ "epoch": 1.1263157894736842,
836
+ "grad_norm": 0.7225517630577087,
837
+ "learning_rate": 7.195714224248912e-05,
838
+ "loss": 0.5262459278106689,
839
+ "step": 535
840
+ },
841
+ {
842
+ "epoch": 1.1368421052631579,
843
+ "grad_norm": 0.8155159950256348,
844
+ "learning_rate": 7.144515950442232e-05,
845
+ "loss": 0.5381614685058593,
846
+ "step": 540
847
+ },
848
+ {
849
+ "epoch": 1.1473684210526316,
850
+ "grad_norm": 0.7686448097229004,
851
+ "learning_rate": 7.093040632939023e-05,
852
+ "loss": 0.48169612884521484,
853
+ "step": 545
854
+ },
855
+ {
856
+ "epoch": 1.1578947368421053,
857
+ "grad_norm": 0.798007071018219,
858
+ "learning_rate": 7.041294921683876e-05,
859
+ "loss": 0.571818494796753,
860
+ "step": 550
861
+ },
862
+ {
863
+ "epoch": 1.1578947368421053,
864
+ "eval_loss": 0.5729017853736877,
865
+ "eval_runtime": 27.3923,
866
+ "eval_samples_per_second": 14.603,
867
+ "eval_steps_per_second": 14.603,
868
+ "step": 550
869
+ },
870
+ {
871
+ "epoch": 1.168421052631579,
872
+ "grad_norm": 0.9871010184288025,
873
+ "learning_rate": 6.989285501552751e-05,
874
+ "loss": 0.5277251243591309,
875
+ "step": 555
876
+ },
877
+ {
878
+ "epoch": 1.1789473684210527,
879
+ "grad_norm": 0.6931464076042175,
880
+ "learning_rate": 6.93701909148938e-05,
881
+ "loss": 0.4839730739593506,
882
+ "step": 560
883
+ },
884
+ {
885
+ "epoch": 1.1894736842105262,
886
+ "grad_norm": 0.6945406198501587,
887
+ "learning_rate": 6.884502443637273e-05,
888
+ "loss": 0.4632833480834961,
889
+ "step": 565
890
+ },
891
+ {
892
+ "epoch": 1.2,
893
+ "grad_norm": 0.8374159336090088,
894
+ "learning_rate": 6.831742342467418e-05,
895
+ "loss": 0.46635966300964354,
896
+ "step": 570
897
+ },
898
+ {
899
+ "epoch": 1.2105263157894737,
900
+ "grad_norm": 0.8007093667984009,
901
+ "learning_rate": 6.778745603901817e-05,
902
+ "loss": 0.4775552272796631,
903
+ "step": 575
904
+ },
905
+ {
906
+ "epoch": 1.2210526315789474,
907
+ "grad_norm": 0.922927975654602,
908
+ "learning_rate": 6.725519074432965e-05,
909
+ "loss": 0.41661796569824217,
910
+ "step": 580
911
+ },
912
+ {
913
+ "epoch": 1.231578947368421,
914
+ "grad_norm": 0.8915149569511414,
915
+ "learning_rate": 6.672069630239366e-05,
916
+ "loss": 0.46227364540100097,
917
+ "step": 585
918
+ },
919
+ {
920
+ "epoch": 1.2421052631578948,
921
+ "grad_norm": 0.7948114275932312,
922
+ "learning_rate": 6.618404176297217e-05,
923
+ "loss": 0.5104813575744629,
924
+ "step": 590
925
+ },
926
+ {
927
+ "epoch": 1.2526315789473683,
928
+ "grad_norm": 0.9380368590354919,
929
+ "learning_rate": 6.564529645488383e-05,
930
+ "loss": 0.4952188014984131,
931
+ "step": 595
932
+ },
933
+ {
934
+ "epoch": 1.263157894736842,
935
+ "grad_norm": 0.8004136085510254,
936
+ "learning_rate": 6.510452997704748e-05,
937
+ "loss": 0.4533547878265381,
938
+ "step": 600
939
+ },
940
+ {
941
+ "epoch": 1.263157894736842,
942
+ "eval_loss": 0.5720676779747009,
943
+ "eval_runtime": 27.2065,
944
+ "eval_samples_per_second": 14.702,
945
+ "eval_steps_per_second": 14.702,
946
+ "step": 600
947
+ },
948
+ {
949
+ "epoch": 1.2736842105263158,
950
+ "grad_norm": 0.8849948644638062,
951
+ "learning_rate": 6.456181218949096e-05,
952
+ "loss": 0.5185356140136719,
953
+ "step": 605
954
+ },
955
+ {
956
+ "epoch": 1.2842105263157895,
957
+ "grad_norm": 0.8258388638496399,
958
+ "learning_rate": 6.401721320432604e-05,
959
+ "loss": 0.45459442138671874,
960
+ "step": 610
961
+ },
962
+ {
963
+ "epoch": 1.2947368421052632,
964
+ "grad_norm": 0.7006433606147766,
965
+ "learning_rate": 6.34708033766909e-05,
966
+ "loss": 0.42599120140075686,
967
+ "step": 615
968
+ },
969
+ {
970
+ "epoch": 1.305263157894737,
971
+ "grad_norm": 0.8149921298027039,
972
+ "learning_rate": 6.292265329566108e-05,
973
+ "loss": 0.47135143280029296,
974
+ "step": 620
975
+ },
976
+ {
977
+ "epoch": 1.3157894736842106,
978
+ "grad_norm": 0.8304453492164612,
979
+ "learning_rate": 6.237283377513036e-05,
980
+ "loss": 0.543507719039917,
981
+ "step": 625
982
+ },
983
+ {
984
+ "epoch": 1.3263157894736843,
985
+ "grad_norm": 2.146064281463623,
986
+ "learning_rate": 6.182141584466247e-05,
987
+ "loss": 0.525644063949585,
988
+ "step": 630
989
+ },
990
+ {
991
+ "epoch": 1.3368421052631578,
992
+ "grad_norm": 0.8405390381813049,
993
+ "learning_rate": 6.126847074031507e-05,
994
+ "loss": 0.4994760513305664,
995
+ "step": 635
996
+ },
997
+ {
998
+ "epoch": 1.3473684210526315,
999
+ "grad_norm": 0.7558398842811584,
1000
+ "learning_rate": 6.071406989543678e-05,
1001
+ "loss": 0.45131878852844237,
1002
+ "step": 640
1003
+ },
1004
+ {
1005
+ "epoch": 1.3578947368421053,
1006
+ "grad_norm": 1.3861230611801147,
1007
+ "learning_rate": 6.0158284931439177e-05,
1008
+ "loss": 0.45543656349182127,
1009
+ "step": 645
1010
+ },
1011
+ {
1012
+ "epoch": 1.368421052631579,
1013
+ "grad_norm": 0.7160976529121399,
1014
+ "learning_rate": 5.9601187648544056e-05,
1015
+ "loss": 0.4914837837219238,
1016
+ "step": 650
1017
+ },
1018
+ {
1019
+ "epoch": 1.368421052631579,
1020
+ "eval_loss": 0.566149890422821,
1021
+ "eval_runtime": 27.1418,
1022
+ "eval_samples_per_second": 14.737,
1023
+ "eval_steps_per_second": 14.737,
1024
+ "step": 650
1025
+ },
1026
+ {
1027
+ "epoch": 1.3789473684210527,
1028
+ "grad_norm": 0.7861437201499939,
1029
+ "learning_rate": 5.904285001650783e-05,
1030
+ "loss": 0.497259521484375,
1031
+ "step": 655
1032
+ },
1033
+ {
1034
+ "epoch": 1.3894736842105262,
1035
+ "grad_norm": 0.7229910492897034,
1036
+ "learning_rate": 5.8483344165323975e-05,
1037
+ "loss": 0.5121944904327392,
1038
+ "step": 660
1039
+ },
1040
+ {
1041
+ "epoch": 1.4,
1042
+ "grad_norm": 0.8752608299255371,
1043
+ "learning_rate": 5.792274237590471e-05,
1044
+ "loss": 0.5024206161499023,
1045
+ "step": 665
1046
+ },
1047
+ {
1048
+ "epoch": 1.4105263157894736,
1049
+ "grad_norm": 0.8390534520149231,
1050
+ "learning_rate": 5.7361117070743374e-05,
1051
+ "loss": 0.48681044578552246,
1052
+ "step": 670
1053
+ },
1054
+ {
1055
+ "epoch": 1.4210526315789473,
1056
+ "grad_norm": 0.8038208484649658,
1057
+ "learning_rate": 5.679854080455821e-05,
1058
+ "loss": 0.4971346378326416,
1059
+ "step": 675
1060
+ },
1061
+ {
1062
+ "epoch": 1.431578947368421,
1063
+ "grad_norm": 0.7638700008392334,
1064
+ "learning_rate": 5.6235086254919324e-05,
1065
+ "loss": 0.42120847702026365,
1066
+ "step": 680
1067
+ },
1068
+ {
1069
+ "epoch": 1.4421052631578948,
1070
+ "grad_norm": 0.7635045051574707,
1071
+ "learning_rate": 5.567082621285969e-05,
1072
+ "loss": 0.47087574005126953,
1073
+ "step": 685
1074
+ },
1075
+ {
1076
+ "epoch": 1.4526315789473685,
1077
+ "grad_norm": 0.77474045753479,
1078
+ "learning_rate": 5.510583357347149e-05,
1079
+ "loss": 0.48073482513427734,
1080
+ "step": 690
1081
+ },
1082
+ {
1083
+ "epoch": 1.4631578947368422,
1084
+ "grad_norm": 0.8228810429573059,
1085
+ "learning_rate": 5.454018132648897e-05,
1086
+ "loss": 0.46302366256713867,
1087
+ "step": 695
1088
+ },
1089
+ {
1090
+ "epoch": 1.4736842105263157,
1091
+ "grad_norm": 0.8553083539009094,
1092
+ "learning_rate": 5.3973942546859145e-05,
1093
+ "loss": 0.47696647644042967,
1094
+ "step": 700
1095
+ },
1096
+ {
1097
+ "epoch": 1.4736842105263157,
1098
+ "eval_loss": 0.5677127242088318,
1099
+ "eval_runtime": 27.2564,
1100
+ "eval_samples_per_second": 14.675,
1101
+ "eval_steps_per_second": 14.675,
1102
+ "step": 700
1103
+ },
1104
+ {
1105
+ "epoch": 1.4842105263157894,
1106
+ "grad_norm": 0.885428249835968,
1107
+ "learning_rate": 5.3407190385301456e-05,
1108
+ "loss": 0.426132345199585,
1109
+ "step": 705
1110
+ },
1111
+ {
1112
+ "epoch": 1.4947368421052631,
1113
+ "grad_norm": 0.7517284154891968,
1114
+ "learning_rate": 5.283999805885764e-05,
1115
+ "loss": 0.5038762092590332,
1116
+ "step": 710
1117
+ },
1118
+ {
1119
+ "epoch": 1.5052631578947369,
1120
+ "grad_norm": 0.6059720516204834,
1121
+ "learning_rate": 5.227243884143306e-05,
1122
+ "loss": 0.40855984687805175,
1123
+ "step": 715
1124
+ },
1125
+ {
1126
+ "epoch": 1.5157894736842106,
1127
+ "grad_norm": 0.883471667766571,
1128
+ "learning_rate": 5.170458605433059e-05,
1129
+ "loss": 0.48758525848388673,
1130
+ "step": 720
1131
+ },
1132
+ {
1133
+ "epoch": 1.526315789473684,
1134
+ "grad_norm": 0.8542289733886719,
1135
+ "learning_rate": 5.113651305677856e-05,
1136
+ "loss": 0.4801379680633545,
1137
+ "step": 725
1138
+ },
1139
+ {
1140
+ "epoch": 1.5368421052631578,
1141
+ "grad_norm": 0.7095292210578918,
1142
+ "learning_rate": 5.0568293236453614e-05,
1143
+ "loss": 0.4451273441314697,
1144
+ "step": 730
1145
+ },
1146
+ {
1147
+ "epoch": 1.5473684210526315,
1148
+ "grad_norm": 0.7466174960136414,
1149
+ "learning_rate": 5e-05,
1150
+ "loss": 0.4858893871307373,
1151
+ "step": 735
1152
+ },
1153
+ {
1154
+ "epoch": 1.5578947368421052,
1155
+ "grad_norm": 0.8140954971313477,
1156
+ "learning_rate": 4.94317067635464e-05,
1157
+ "loss": 0.5117893695831299,
1158
+ "step": 740
1159
+ },
1160
+ {
1161
+ "epoch": 1.568421052631579,
1162
+ "grad_norm": 0.8628697991371155,
1163
+ "learning_rate": 4.886348694322145e-05,
1164
+ "loss": 0.48410491943359374,
1165
+ "step": 745
1166
+ },
1167
+ {
1168
+ "epoch": 1.5789473684210527,
1169
+ "grad_norm": 0.7672389149665833,
1170
+ "learning_rate": 4.829541394566942e-05,
1171
+ "loss": 0.4889042854309082,
1172
+ "step": 750
1173
+ },
1174
+ {
1175
+ "epoch": 1.5789473684210527,
1176
+ "eval_loss": 0.5602394938468933,
1177
+ "eval_runtime": 27.2938,
1178
+ "eval_samples_per_second": 14.655,
1179
+ "eval_steps_per_second": 14.655,
1180
+ "step": 750
1181
+ },
1182
+ {
1183
+ "epoch": 1.5894736842105264,
1184
+ "grad_norm": 0.8665842413902283,
1185
+ "learning_rate": 4.772756115856695e-05,
1186
+ "loss": 0.4589890480041504,
1187
+ "step": 755
1188
+ },
1189
+ {
1190
+ "epoch": 1.6,
1191
+ "grad_norm": 0.948796808719635,
1192
+ "learning_rate": 4.7160001941142365e-05,
1193
+ "loss": 0.4775981426239014,
1194
+ "step": 760
1195
+ },
1196
+ {
1197
+ "epoch": 1.6105263157894738,
1198
+ "grad_norm": 0.8106200695037842,
1199
+ "learning_rate": 4.6592809614698556e-05,
1200
+ "loss": 0.5602635860443115,
1201
+ "step": 765
1202
+ },
1203
+ {
1204
+ "epoch": 1.6210526315789475,
1205
+ "grad_norm": 1.2499663829803467,
1206
+ "learning_rate": 4.602605745314087e-05,
1207
+ "loss": 0.5022463321685791,
1208
+ "step": 770
1209
+ },
1210
+ {
1211
+ "epoch": 1.631578947368421,
1212
+ "grad_norm": 0.8327662944793701,
1213
+ "learning_rate": 4.545981867351104e-05,
1214
+ "loss": 0.4951312065124512,
1215
+ "step": 775
1216
+ },
1217
+ {
1218
+ "epoch": 1.6421052631578947,
1219
+ "grad_norm": 0.7749590277671814,
1220
+ "learning_rate": 4.4894166426528524e-05,
1221
+ "loss": 0.4875455379486084,
1222
+ "step": 780
1223
+ },
1224
+ {
1225
+ "epoch": 1.6526315789473685,
1226
+ "grad_norm": 0.764395534992218,
1227
+ "learning_rate": 4.432917378714032e-05,
1228
+ "loss": 0.47612872123718264,
1229
+ "step": 785
1230
+ },
1231
+ {
1232
+ "epoch": 1.663157894736842,
1233
+ "grad_norm": 0.8650004863739014,
1234
+ "learning_rate": 4.3764913745080695e-05,
1235
+ "loss": 0.4810147285461426,
1236
+ "step": 790
1237
+ },
1238
+ {
1239
+ "epoch": 1.6736842105263157,
1240
+ "grad_norm": 0.852967381477356,
1241
+ "learning_rate": 4.32014591954418e-05,
1242
+ "loss": 0.46249094009399416,
1243
+ "step": 795
1244
+ },
1245
+ {
1246
+ "epoch": 1.6842105263157894,
1247
+ "grad_norm": 0.752549946308136,
1248
+ "learning_rate": 4.263888292925664e-05,
1249
+ "loss": 0.463092565536499,
1250
+ "step": 800
1251
+ },
1252
+ {
1253
+ "epoch": 1.6842105263157894,
1254
+ "eval_loss": 0.557573139667511,
1255
+ "eval_runtime": 27.1956,
1256
+ "eval_samples_per_second": 14.708,
1257
+ "eval_steps_per_second": 14.708,
1258
+ "step": 800
1259
+ },
1260
+ {
1261
+ "epoch": 1.694736842105263,
1262
+ "grad_norm": 0.7666327953338623,
1263
+ "learning_rate": 4.207725762409529e-05,
1264
+ "loss": 0.549990177154541,
1265
+ "step": 805
1266
+ },
1267
+ {
1268
+ "epoch": 1.7052631578947368,
1269
+ "grad_norm": 1.2041642665863037,
1270
+ "learning_rate": 4.151665583467604e-05,
1271
+ "loss": 0.473134708404541,
1272
+ "step": 810
1273
+ },
1274
+ {
1275
+ "epoch": 1.7157894736842105,
1276
+ "grad_norm": 0.9291930794715881,
1277
+ "learning_rate": 4.095714998349218e-05,
1278
+ "loss": 0.43207721710205077,
1279
+ "step": 815
1280
+ },
1281
+ {
1282
+ "epoch": 1.7263157894736842,
1283
+ "grad_norm": 0.8421230316162109,
1284
+ "learning_rate": 4.0398812351455955e-05,
1285
+ "loss": 0.42284450531005857,
1286
+ "step": 820
1287
+ },
1288
+ {
1289
+ "epoch": 1.736842105263158,
1290
+ "grad_norm": 0.7550533413887024,
1291
+ "learning_rate": 3.9841715068560835e-05,
1292
+ "loss": 0.4533982276916504,
1293
+ "step": 825
1294
+ },
1295
+ {
1296
+ "epoch": 1.7473684210526317,
1297
+ "grad_norm": 0.7380033731460571,
1298
+ "learning_rate": 3.9285930104563234e-05,
1299
+ "loss": 0.47853550910949705,
1300
+ "step": 830
1301
+ },
1302
+ {
1303
+ "epoch": 1.7578947368421054,
1304
+ "grad_norm": 1.0466768741607666,
1305
+ "learning_rate": 3.873152925968495e-05,
1306
+ "loss": 0.5334872245788574,
1307
+ "step": 835
1308
+ },
1309
+ {
1310
+ "epoch": 1.768421052631579,
1311
+ "grad_norm": 0.8049618601799011,
1312
+ "learning_rate": 3.8178584155337525e-05,
1313
+ "loss": 0.4399109363555908,
1314
+ "step": 840
1315
+ },
1316
+ {
1317
+ "epoch": 1.7789473684210526,
1318
+ "grad_norm": 0.7510071992874146,
1319
+ "learning_rate": 3.762716622486965e-05,
1320
+ "loss": 0.521062707901001,
1321
+ "step": 845
1322
+ },
1323
+ {
1324
+ "epoch": 1.7894736842105263,
1325
+ "grad_norm": 1.6552070379257202,
1326
+ "learning_rate": 3.7077346704338935e-05,
1327
+ "loss": 0.45749530792236326,
1328
+ "step": 850
1329
+ },
1330
+ {
1331
+ "epoch": 1.7894736842105263,
1332
+ "eval_loss": 0.552564799785614,
1333
+ "eval_runtime": 27.3375,
1334
+ "eval_samples_per_second": 14.632,
1335
+ "eval_steps_per_second": 14.632,
1336
+ "step": 850
1337
+ },
1338
+ {
1339
+ "epoch": 1.8,
1340
+ "grad_norm": 0.7396476864814758,
1341
+ "learning_rate": 3.6529196623309115e-05,
1342
+ "loss": 0.38660905361175535,
1343
+ "step": 855
1344
+ },
1345
+ {
1346
+ "epoch": 1.8105263157894735,
1347
+ "grad_norm": 0.8277924656867981,
1348
+ "learning_rate": 3.598278679567397e-05,
1349
+ "loss": 0.5064235210418702,
1350
+ "step": 860
1351
+ },
1352
+ {
1353
+ "epoch": 1.8210526315789473,
1354
+ "grad_norm": 0.9554834365844727,
1355
+ "learning_rate": 3.543818781050906e-05,
1356
+ "loss": 0.4140141010284424,
1357
+ "step": 865
1358
+ },
1359
+ {
1360
+ "epoch": 1.831578947368421,
1361
+ "grad_norm": 0.7180286049842834,
1362
+ "learning_rate": 3.4895470022952536e-05,
1363
+ "loss": 0.5401397705078125,
1364
+ "step": 870
1365
+ },
1366
+ {
1367
+ "epoch": 1.8421052631578947,
1368
+ "grad_norm": 0.972764790058136,
1369
+ "learning_rate": 3.4354703545116185e-05,
1370
+ "loss": 0.504509973526001,
1371
+ "step": 875
1372
+ },
1373
+ {
1374
+ "epoch": 1.8526315789473684,
1375
+ "grad_norm": 0.7626535892486572,
1376
+ "learning_rate": 3.381595823702784e-05,
1377
+ "loss": 0.46036224365234374,
1378
+ "step": 880
1379
+ },
1380
+ {
1381
+ "epoch": 1.8631578947368421,
1382
+ "grad_norm": 0.9077037572860718,
1383
+ "learning_rate": 3.3279303697606354e-05,
1384
+ "loss": 0.4127952098846436,
1385
+ "step": 885
1386
+ },
1387
+ {
1388
+ "epoch": 1.8736842105263158,
1389
+ "grad_norm": 0.764255702495575,
1390
+ "learning_rate": 3.274480925567036e-05,
1391
+ "loss": 0.4129067897796631,
1392
+ "step": 890
1393
+ },
1394
+ {
1395
+ "epoch": 1.8842105263157896,
1396
+ "grad_norm": 0.9645035266876221,
1397
+ "learning_rate": 3.2212543960981845e-05,
1398
+ "loss": 0.486614990234375,
1399
+ "step": 895
1400
+ },
1401
+ {
1402
+ "epoch": 1.8947368421052633,
1403
+ "grad_norm": 0.7822158932685852,
1404
+ "learning_rate": 3.168257657532584e-05,
1405
+ "loss": 0.43874049186706543,
1406
+ "step": 900
1407
+ },
1408
+ {
1409
+ "epoch": 1.8947368421052633,
1410
+ "eval_loss": 0.5511002540588379,
1411
+ "eval_runtime": 27.8563,
1412
+ "eval_samples_per_second": 14.359,
1413
+ "eval_steps_per_second": 14.359,
1414
+ "step": 900
1415
+ },
1416
+ {
1417
+ "epoch": 1.905263157894737,
1418
+ "grad_norm": 0.823441207408905,
1419
+ "learning_rate": 3.115497556362727e-05,
1420
+ "loss": 0.4594260692596436,
1421
+ "step": 905
1422
+ },
1423
+ {
1424
+ "epoch": 1.9157894736842105,
1425
+ "grad_norm": 0.821818470954895,
1426
+ "learning_rate": 3.06298090851062e-05,
1427
+ "loss": 0.4467416763305664,
1428
+ "step": 910
1429
+ },
1430
+ {
1431
+ "epoch": 1.9263157894736842,
1432
+ "grad_norm": 0.8790761232376099,
1433
+ "learning_rate": 3.0107144984472502e-05,
1434
+ "loss": 0.4823316097259521,
1435
+ "step": 915
1436
+ },
1437
+ {
1438
+ "epoch": 1.936842105263158,
1439
+ "grad_norm": 0.7914945483207703,
1440
+ "learning_rate": 2.9587050783161252e-05,
1441
+ "loss": 0.4314936637878418,
1442
+ "step": 920
1443
+ },
1444
+ {
1445
+ "epoch": 1.9473684210526314,
1446
+ "grad_norm": 0.805029571056366,
1447
+ "learning_rate": 2.9069593670609775e-05,
1448
+ "loss": 0.4740307331085205,
1449
+ "step": 925
1450
+ },
1451
+ {
1452
+ "epoch": 1.9578947368421051,
1453
+ "grad_norm": 0.7928342223167419,
1454
+ "learning_rate": 2.8554840495577682e-05,
1455
+ "loss": 0.4155329704284668,
1456
+ "step": 930
1457
+ },
1458
+ {
1459
+ "epoch": 1.9684210526315788,
1460
+ "grad_norm": 0.8041934370994568,
1461
+ "learning_rate": 2.8042857757510877e-05,
1462
+ "loss": 0.5049230098724365,
1463
+ "step": 935
1464
+ },
1465
+ {
1466
+ "epoch": 1.9789473684210526,
1467
+ "grad_norm": 0.8169903755187988,
1468
+ "learning_rate": 2.753371159795065e-05,
1469
+ "loss": 0.3966445684432983,
1470
+ "step": 940
1471
+ },
1472
+ {
1473
+ "epoch": 1.9894736842105263,
1474
+ "grad_norm": 0.86372309923172,
1475
+ "learning_rate": 2.702746779198912e-05,
1476
+ "loss": 0.5153264999389648,
1477
+ "step": 945
1478
+ },
1479
+ {
1480
+ "epoch": 2.0,
1481
+ "grad_norm": 0.97676020860672,
1482
+ "learning_rate": 2.6524191739771815e-05,
1483
+ "loss": 0.4318437099456787,
1484
+ "step": 950
1485
+ },
1486
+ {
1487
+ "epoch": 2.0,
1488
+ "eval_loss": 0.5508978962898254,
1489
+ "eval_runtime": 27.8163,
1490
+ "eval_samples_per_second": 14.38,
1491
+ "eval_steps_per_second": 14.38,
1492
+ "step": 950
1493
+ },
1494
+ {
1495
+ "epoch": 2.0105263157894737,
1496
+ "grad_norm": 0.7161779999732971,
1497
+ "learning_rate": 2.6023948458048965e-05,
1498
+ "loss": 0.3977535247802734,
1499
+ "step": 955
1500
+ },
1501
+ {
1502
+ "epoch": 2.0210526315789474,
1503
+ "grad_norm": 0.8996826410293579,
1504
+ "learning_rate": 2.552680257177611e-05,
1505
+ "loss": 0.38445310592651366,
1506
+ "step": 960
1507
+ },
1508
+ {
1509
+ "epoch": 2.031578947368421,
1510
+ "grad_norm": 0.7812126278877258,
1511
+ "learning_rate": 2.5032818305765383e-05,
1512
+ "loss": 0.37283446788787844,
1513
+ "step": 965
1514
+ },
1515
+ {
1516
+ "epoch": 2.042105263157895,
1517
+ "grad_norm": 0.7872561812400818,
1518
+ "learning_rate": 2.454205947638852e-05,
1519
+ "loss": 0.3594684600830078,
1520
+ "step": 970
1521
+ },
1522
+ {
1523
+ "epoch": 2.0526315789473686,
1524
+ "grad_norm": 0.8357042670249939,
1525
+ "learning_rate": 2.4054589483332597e-05,
1526
+ "loss": 0.30683672428131104,
1527
+ "step": 975
1528
+ },
1529
+ {
1530
+ "epoch": 2.0631578947368423,
1531
+ "grad_norm": 0.7905634045600891,
1532
+ "learning_rate": 2.3570471301409618e-05,
1533
+ "loss": 0.32751510143280027,
1534
+ "step": 980
1535
+ },
1536
+ {
1537
+ "epoch": 2.0736842105263156,
1538
+ "grad_norm": 1.3322068452835083,
1539
+ "learning_rate": 2.3089767472421e-05,
1540
+ "loss": 0.3961126089096069,
1541
+ "step": 985
1542
+ },
1543
+ {
1544
+ "epoch": 2.0842105263157893,
1545
+ "grad_norm": 0.9144253730773926,
1546
+ "learning_rate": 2.2612540097077935e-05,
1547
+ "loss": 0.3600940704345703,
1548
+ "step": 990
1549
+ },
1550
+ {
1551
+ "epoch": 2.094736842105263,
1552
+ "grad_norm": 0.8574570417404175,
1553
+ "learning_rate": 2.213885082697883e-05,
1554
+ "loss": 0.3191706895828247,
1555
+ "step": 995
1556
+ },
1557
+ {
1558
+ "epoch": 2.1052631578947367,
1559
+ "grad_norm": 0.9719475507736206,
1560
+ "learning_rate": 2.1668760856644703e-05,
1561
+ "loss": 0.39908566474914553,
1562
+ "step": 1000
1563
+ },
1564
+ {
1565
+ "epoch": 2.1052631578947367,
1566
+ "eval_loss": 0.5967375040054321,
1567
+ "eval_runtime": 28.5798,
1568
+ "eval_samples_per_second": 13.996,
1569
+ "eval_steps_per_second": 13.996,
1570
+ "step": 1000
1571
+ },
1572
+ {
1573
+ "epoch": 2.1157894736842104,
1574
+ "grad_norm": 1.0026988983154297,
1575
+ "learning_rate": 2.1202330915613638e-05,
1576
+ "loss": 0.324949836730957,
1577
+ "step": 1005
1578
+ },
1579
+ {
1580
+ "epoch": 2.126315789473684,
1581
+ "grad_norm": 0.9327012896537781,
1582
+ "learning_rate": 2.0739621260595315e-05,
1583
+ "loss": 0.31343927383422854,
1584
+ "step": 1010
1585
+ },
1586
+ {
1587
+ "epoch": 2.136842105263158,
1588
+ "grad_norm": 0.8879086375236511,
1589
+ "learning_rate": 2.028069166768663e-05,
1590
+ "loss": 0.35412182807922366,
1591
+ "step": 1015
1592
+ },
1593
+ {
1594
+ "epoch": 2.1473684210526316,
1595
+ "grad_norm": 1.014451265335083,
1596
+ "learning_rate": 1.982560142464939e-05,
1597
+ "loss": 0.3389745235443115,
1598
+ "step": 1020
1599
+ },
1600
+ {
1601
+ "epoch": 2.1578947368421053,
1602
+ "grad_norm": 1.067197561264038,
1603
+ "learning_rate": 1.937440932325112e-05,
1604
+ "loss": 0.30197973251342775,
1605
+ "step": 1025
1606
+ },
1607
+ {
1608
+ "epoch": 2.168421052631579,
1609
+ "grad_norm": 0.9498446583747864,
1610
+ "learning_rate": 1.8927173651669877e-05,
1611
+ "loss": 0.3828472375869751,
1612
+ "step": 1030
1613
+ },
1614
+ {
1615
+ "epoch": 2.1789473684210527,
1616
+ "grad_norm": 1.0303031206130981,
1617
+ "learning_rate": 1.8483952186964237e-05,
1618
+ "loss": 0.4124176025390625,
1619
+ "step": 1035
1620
+ },
1621
+ {
1622
+ "epoch": 2.1894736842105265,
1623
+ "grad_norm": 0.958342969417572,
1624
+ "learning_rate": 1.804480218760922e-05,
1625
+ "loss": 0.3103924751281738,
1626
+ "step": 1040
1627
+ },
1628
+ {
1629
+ "epoch": 2.2,
1630
+ "grad_norm": 1.0009726285934448,
1631
+ "learning_rate": 1.7609780386099234e-05,
1632
+ "loss": 0.33572826385498045,
1633
+ "step": 1045
1634
+ },
1635
+ {
1636
+ "epoch": 2.2105263157894735,
1637
+ "grad_norm": 1.0434421300888062,
1638
+ "learning_rate": 1.7178942981618945e-05,
1639
+ "loss": 0.3350696086883545,
1640
+ "step": 1050
1641
+ },
1642
+ {
1643
+ "epoch": 2.2105263157894735,
1644
+ "eval_loss": 0.6022932529449463,
1645
+ "eval_runtime": 27.6209,
1646
+ "eval_samples_per_second": 14.482,
1647
+ "eval_steps_per_second": 14.482,
1648
+ "step": 1050
1649
+ },
1650
+ {
1651
+ "epoch": 2.221052631578947,
1652
+ "grad_norm": 1.1546400785446167,
1653
+ "learning_rate": 1.6752345632783135e-05,
1654
+ "loss": 0.34174375534057616,
1655
+ "step": 1055
1656
+ },
1657
+ {
1658
+ "epoch": 2.231578947368421,
1659
+ "grad_norm": 1.0252087116241455,
1660
+ "learning_rate": 1.6330043450446265e-05,
1661
+ "loss": 0.3031753063201904,
1662
+ "step": 1060
1663
+ },
1664
+ {
1665
+ "epoch": 2.2421052631578946,
1666
+ "grad_norm": 1.0577940940856934,
1667
+ "learning_rate": 1.59120909905829e-05,
1668
+ "loss": 0.35698933601379396,
1669
+ "step": 1065
1670
+ },
1671
+ {
1672
+ "epoch": 2.2526315789473683,
1673
+ "grad_norm": 1.175123929977417,
1674
+ "learning_rate": 1.549854224723978e-05,
1675
+ "loss": 0.2965430736541748,
1676
+ "step": 1070
1677
+ },
1678
+ {
1679
+ "epoch": 2.263157894736842,
1680
+ "grad_norm": 0.9692304730415344,
1681
+ "learning_rate": 1.508945064556047e-05,
1682
+ "loss": 0.3899634122848511,
1683
+ "step": 1075
1684
+ },
1685
+ {
1686
+ "epoch": 2.2736842105263158,
1687
+ "grad_norm": 1.0569312572479248,
1688
+ "learning_rate": 1.4684869034883554e-05,
1689
+ "loss": 0.34727933406829836,
1690
+ "step": 1080
1691
+ },
1692
+ {
1693
+ "epoch": 2.2842105263157895,
1694
+ "grad_norm": 0.8666245937347412,
1695
+ "learning_rate": 1.4284849681915158e-05,
1696
+ "loss": 0.3896636009216309,
1697
+ "step": 1085
1698
+ },
1699
+ {
1700
+ "epoch": 2.294736842105263,
1701
+ "grad_norm": 1.0360913276672363,
1702
+ "learning_rate": 1.3889444263976786e-05,
1703
+ "loss": 0.31699607372283933,
1704
+ "step": 1090
1705
+ },
1706
+ {
1707
+ "epoch": 2.305263157894737,
1708
+ "grad_norm": 1.2606230974197388,
1709
+ "learning_rate": 1.3498703862329254e-05,
1710
+ "loss": 0.33367414474487306,
1711
+ "step": 1095
1712
+ },
1713
+ {
1714
+ "epoch": 2.3157894736842106,
1715
+ "grad_norm": 1.2789041996002197,
1716
+ "learning_rate": 1.3112678955573693e-05,
1717
+ "loss": 0.3069949150085449,
1718
+ "step": 1100
1719
+ },
1720
+ {
1721
+ "epoch": 2.3157894736842106,
1722
+ "eval_loss": 0.6039758324623108,
1723
+ "eval_runtime": 27.6614,
1724
+ "eval_samples_per_second": 14.461,
1725
+ "eval_steps_per_second": 14.461,
1726
+ "step": 1100
1727
+ },
1728
+ {
1729
+ "epoch": 2.3263157894736843,
1730
+ "grad_norm": 1.1908059120178223,
1731
+ "learning_rate": 1.2731419413130325e-05,
1732
+ "loss": 0.38684911727905275,
1733
+ "step": 1105
1734
+ },
1735
+ {
1736
+ "epoch": 2.336842105263158,
1737
+ "grad_norm": 1.262253999710083,
1738
+ "learning_rate": 1.2354974488796017e-05,
1739
+ "loss": 0.36271347999572756,
1740
+ "step": 1110
1741
+ },
1742
+ {
1743
+ "epoch": 2.3473684210526318,
1744
+ "grad_norm": 0.9189227819442749,
1745
+ "learning_rate": 1.1983392814381273e-05,
1746
+ "loss": 0.3401113271713257,
1747
+ "step": 1115
1748
+ },
1749
+ {
1750
+ "epoch": 2.3578947368421055,
1751
+ "grad_norm": 1.0726381540298462,
1752
+ "learning_rate": 1.1616722393427704e-05,
1753
+ "loss": 0.33876895904541016,
1754
+ "step": 1120
1755
+ },
1756
+ {
1757
+ "epoch": 2.3684210526315788,
1758
+ "grad_norm": 0.9959712028503418,
1759
+ "learning_rate": 1.125501059500656e-05,
1760
+ "loss": 0.3982860803604126,
1761
+ "step": 1125
1762
+ },
1763
+ {
1764
+ "epoch": 2.3789473684210525,
1765
+ "grad_norm": 0.9985882043838501,
1766
+ "learning_rate": 1.0898304147599231e-05,
1767
+ "loss": 0.3682390213012695,
1768
+ "step": 1130
1769
+ },
1770
+ {
1771
+ "epoch": 2.389473684210526,
1772
+ "grad_norm": 0.9115525484085083,
1773
+ "learning_rate": 1.0546649133060583e-05,
1774
+ "loss": 0.3579556465148926,
1775
+ "step": 1135
1776
+ },
1777
+ {
1778
+ "epoch": 2.4,
1779
+ "grad_norm": 1.1207247972488403,
1780
+ "learning_rate": 1.0200090980665739e-05,
1781
+ "loss": 0.42283267974853517,
1782
+ "step": 1140
1783
+ },
1784
+ {
1785
+ "epoch": 2.4105263157894736,
1786
+ "grad_norm": 1.0433000326156616,
1787
+ "learning_rate": 9.858674461241229e-06,
1788
+ "loss": 0.362597393989563,
1789
+ "step": 1145
1790
+ },
1791
+ {
1792
+ "epoch": 2.4210526315789473,
1793
+ "grad_norm": 0.9558874368667603,
1794
+ "learning_rate": 9.522443681381172e-06,
1795
+ "loss": 0.40636916160583497,
1796
+ "step": 1150
1797
+ },
1798
+ {
1799
+ "epoch": 2.4210526315789473,
1800
+ "eval_loss": 0.6012060642242432,
1801
+ "eval_runtime": 27.6853,
1802
+ "eval_samples_per_second": 14.448,
1803
+ "eval_steps_per_second": 14.448,
1804
+ "step": 1150
1805
+ },
1806
+ {
1807
+ "epoch": 2.431578947368421,
1808
+ "grad_norm": 0.9411963224411011,
1809
+ "learning_rate": 9.191442077749257e-06,
1810
+ "loss": 0.32624173164367676,
1811
+ "step": 1155
1812
+ },
1813
+ {
1814
+ "epoch": 2.442105263157895,
1815
+ "grad_norm": 1.1000866889953613,
1816
+ "learning_rate": 8.86571241146732e-06,
1817
+ "loss": 0.36433489322662355,
1818
+ "step": 1160
1819
+ },
1820
+ {
1821
+ "epoch": 2.4526315789473685,
1822
+ "grad_norm": 0.8302079439163208,
1823
+ "learning_rate": 8.545296762591144e-06,
1824
+ "loss": 0.34126312732696534,
1825
+ "step": 1165
1826
+ },
1827
+ {
1828
+ "epoch": 2.463157894736842,
1829
+ "grad_norm": 1.1295444965362549,
1830
+ "learning_rate": 8.230236524674256e-06,
1831
+ "loss": 0.34795560836791994,
1832
+ "step": 1170
1833
+ },
1834
+ {
1835
+ "epoch": 2.473684210526316,
1836
+ "grad_norm": 1.0424487590789795,
1837
+ "learning_rate": 7.920572399420428e-06,
1838
+ "loss": 0.34096055030822753,
1839
+ "step": 1175
1840
+ },
1841
+ {
1842
+ "epoch": 2.4842105263157896,
1843
+ "grad_norm": 1.1002000570297241,
1844
+ "learning_rate": 7.616344391425534e-06,
1845
+ "loss": 0.3707140922546387,
1846
+ "step": 1180
1847
+ },
1848
+ {
1849
+ "epoch": 2.4947368421052634,
1850
+ "grad_norm": 0.946130096912384,
1851
+ "learning_rate": 7.317591803009472e-06,
1852
+ "loss": 0.3825195074081421,
1853
+ "step": 1185
1854
+ },
1855
+ {
1856
+ "epoch": 2.5052631578947366,
1857
+ "grad_norm": 1.1903181076049805,
1858
+ "learning_rate": 7.024353229138836e-06,
1859
+ "loss": 0.3591669797897339,
1860
+ "step": 1190
1861
+ },
1862
+ {
1863
+ "epoch": 2.515789473684211,
1864
+ "grad_norm": 0.9660072326660156,
1865
+ "learning_rate": 6.736666552440896e-06,
1866
+ "loss": 0.31880993843078614,
1867
+ "step": 1195
1868
+ },
1869
+ {
1870
+ "epoch": 2.526315789473684,
1871
+ "grad_norm": 1.1138476133346558,
1872
+ "learning_rate": 6.454568938309724e-06,
1873
+ "loss": 0.33600804805755613,
1874
+ "step": 1200
1875
+ },
1876
+ {
1877
+ "epoch": 2.526315789473684,
1878
+ "eval_loss": 0.6024701595306396,
1879
+ "eval_runtime": 28.6271,
1880
+ "eval_samples_per_second": 13.973,
1881
+ "eval_steps_per_second": 13.973,
1882
+ "step": 1200
1883
+ },
1884
+ {
1885
+ "epoch": 2.536842105263158,
1886
+ "grad_norm": 1.0256083011627197,
1887
+ "learning_rate": 6.1780968301048406e-06,
1888
+ "loss": 0.30231916904449463,
1889
+ "step": 1205
1890
+ },
1891
+ {
1892
+ "epoch": 2.5473684210526315,
1893
+ "grad_norm": 1.3465616703033447,
1894
+ "learning_rate": 5.907285944443241e-06,
1895
+ "loss": 0.37215938568115237,
1896
+ "step": 1210
1897
+ },
1898
+ {
1899
+ "epoch": 2.557894736842105,
1900
+ "grad_norm": 1.0157089233398438,
1901
+ "learning_rate": 5.642171266585272e-06,
1902
+ "loss": 0.38835783004760743,
1903
+ "step": 1215
1904
+ },
1905
+ {
1906
+ "epoch": 2.568421052631579,
1907
+ "grad_norm": 1.0423297882080078,
1908
+ "learning_rate": 5.3827870459149665e-06,
1909
+ "loss": 0.3684116840362549,
1910
+ "step": 1220
1911
+ },
1912
+ {
1913
+ "epoch": 2.5789473684210527,
1914
+ "grad_norm": 1.2063053846359253,
1915
+ "learning_rate": 5.1291667915154774e-06,
1916
+ "loss": 0.39838123321533203,
1917
+ "step": 1225
1918
+ },
1919
+ {
1920
+ "epoch": 2.5894736842105264,
1921
+ "grad_norm": 1.045510172843933,
1922
+ "learning_rate": 4.88134326784015e-06,
1923
+ "loss": 0.3727046728134155,
1924
+ "step": 1230
1925
+ },
1926
+ {
1927
+ "epoch": 2.6,
1928
+ "grad_norm": 1.079955816268921,
1929
+ "learning_rate": 4.639348490479755e-06,
1930
+ "loss": 0.3064917802810669,
1931
+ "step": 1235
1932
+ },
1933
+ {
1934
+ "epoch": 2.610526315789474,
1935
+ "grad_norm": 1.029150128364563,
1936
+ "learning_rate": 4.403213722026516e-06,
1937
+ "loss": 0.3460820436477661,
1938
+ "step": 1240
1939
+ },
1940
+ {
1941
+ "epoch": 2.6210526315789475,
1942
+ "grad_norm": 1.2160367965698242,
1943
+ "learning_rate": 4.172969468035359e-06,
1944
+ "loss": 0.3394759178161621,
1945
+ "step": 1245
1946
+ },
1947
+ {
1948
+ "epoch": 2.6315789473684212,
1949
+ "grad_norm": 1.292370319366455,
1950
+ "learning_rate": 3.948645473083018e-06,
1951
+ "loss": 0.4295994281768799,
1952
+ "step": 1250
1953
+ },
1954
+ {
1955
+ "epoch": 2.6315789473684212,
1956
+ "eval_loss": 0.6037428975105286,
1957
+ "eval_runtime": 28.4938,
1958
+ "eval_samples_per_second": 14.038,
1959
+ "eval_steps_per_second": 14.038,
1960
+ "step": 1250
1961
+ },
1962
+ {
1963
+ "epoch": 2.6421052631578945,
1964
+ "grad_norm": 0.9467762112617493,
1965
+ "learning_rate": 3.730270716925394e-06,
1966
+ "loss": 0.3685704946517944,
1967
+ "step": 1255
1968
+ },
1969
+ {
1970
+ "epoch": 2.6526315789473687,
1971
+ "grad_norm": 0.9402472376823425,
1972
+ "learning_rate": 3.5178734107537637e-06,
1973
+ "loss": 0.38207206726074217,
1974
+ "step": 1260
1975
+ },
1976
+ {
1977
+ "epoch": 2.663157894736842,
1978
+ "grad_norm": 0.9341251254081726,
1979
+ "learning_rate": 3.311480993550259e-06,
1980
+ "loss": 0.3355901002883911,
1981
+ "step": 1265
1982
+ },
1983
+ {
1984
+ "epoch": 2.6736842105263157,
1985
+ "grad_norm": 1.3845702409744263,
1986
+ "learning_rate": 3.111120128543088e-06,
1987
+ "loss": 0.3235702276229858,
1988
+ "step": 1270
1989
+ },
1990
+ {
1991
+ "epoch": 2.6842105263157894,
1992
+ "grad_norm": 0.9406099319458008,
1993
+ "learning_rate": 2.9168166997620263e-06,
1994
+ "loss": 0.33657886981964114,
1995
+ "step": 1275
1996
+ },
1997
+ {
1998
+ "epoch": 2.694736842105263,
1999
+ "grad_norm": 1.0643633604049683,
2000
+ "learning_rate": 2.7285958086944786e-06,
2001
+ "loss": 0.35396461486816405,
2002
+ "step": 1280
2003
+ },
2004
+ {
2005
+ "epoch": 2.705263157894737,
2006
+ "grad_norm": 0.8600782155990601,
2007
+ "learning_rate": 2.5464817710427414e-06,
2008
+ "loss": 0.3184598445892334,
2009
+ "step": 1285
2010
+ },
2011
+ {
2012
+ "epoch": 2.7157894736842105,
2013
+ "grad_norm": 1.0098100900650024,
2014
+ "learning_rate": 2.370498113582731e-06,
2015
+ "loss": 0.3798511981964111,
2016
+ "step": 1290
2017
+ },
2018
+ {
2019
+ "epoch": 2.7263157894736842,
2020
+ "grad_norm": 1.2423481941223145,
2021
+ "learning_rate": 2.2006675711245818e-06,
2022
+ "loss": 0.36703929901123045,
2023
+ "step": 1295
2024
+ },
2025
+ {
2026
+ "epoch": 2.736842105263158,
2027
+ "grad_norm": 1.097049593925476,
2028
+ "learning_rate": 2.0370120835756513e-06,
2029
+ "loss": 0.2991799354553223,
2030
+ "step": 1300
2031
+ },
2032
+ {
2033
+ "epoch": 2.736842105263158,
2034
+ "eval_loss": 0.6043052077293396,
2035
+ "eval_runtime": 27.8515,
2036
+ "eval_samples_per_second": 14.362,
2037
+ "eval_steps_per_second": 14.362,
2038
+ "step": 1300
2039
+ },
2040
+ {
2041
+ "epoch": 2.7473684210526317,
2042
+ "grad_norm": 1.128627061843872,
2043
+ "learning_rate": 1.8795527931061374e-06,
2044
+ "loss": 0.34659562110900877,
2045
+ "step": 1305
2046
+ },
2047
+ {
2048
+ "epoch": 2.7578947368421054,
2049
+ "grad_norm": 0.958167314529419,
2050
+ "learning_rate": 1.7283100414178078e-06,
2051
+ "loss": 0.3479694128036499,
2052
+ "step": 1310
2053
+ },
2054
+ {
2055
+ "epoch": 2.768421052631579,
2056
+ "grad_norm": 1.2653661966323853,
2057
+ "learning_rate": 1.58330336711609e-06,
2058
+ "loss": 0.3173972606658936,
2059
+ "step": 1315
2060
+ },
2061
+ {
2062
+ "epoch": 2.7789473684210524,
2063
+ "grad_norm": 1.3858840465545654,
2064
+ "learning_rate": 1.4445515031859591e-06,
2065
+ "loss": 0.42389545440673826,
2066
+ "step": 1320
2067
+ },
2068
+ {
2069
+ "epoch": 2.7894736842105265,
2070
+ "grad_norm": 1.142336368560791,
2071
+ "learning_rate": 1.31207237457186e-06,
2072
+ "loss": 0.3316075563430786,
2073
+ "step": 1325
2074
+ },
2075
+ {
2076
+ "epoch": 2.8,
2077
+ "grad_norm": 1.341241478919983,
2078
+ "learning_rate": 1.1858830958620559e-06,
2079
+ "loss": 0.370093846321106,
2080
+ "step": 1330
2081
+ },
2082
+ {
2083
+ "epoch": 2.8105263157894735,
2084
+ "grad_norm": 1.2752244472503662,
2085
+ "learning_rate": 1.0659999690776302e-06,
2086
+ "loss": 0.37927913665771484,
2087
+ "step": 1335
2088
+ },
2089
+ {
2090
+ "epoch": 2.8210526315789473,
2091
+ "grad_norm": 1.2686620950698853,
2092
+ "learning_rate": 9.524384815664699e-07,
2093
+ "loss": 0.31010196208953855,
2094
+ "step": 1340
2095
+ },
2096
+ {
2097
+ "epoch": 2.831578947368421,
2098
+ "grad_norm": 0.9856387376785278,
2099
+ "learning_rate": 8.452133040025345e-07,
2100
+ "loss": 0.37815587520599364,
2101
+ "step": 1345
2102
+ },
2103
+ {
2104
+ "epoch": 2.8421052631578947,
2105
+ "grad_norm": 1.1066813468933105,
2106
+ "learning_rate": 7.443382884905536e-07,
2107
+ "loss": 0.3322570562362671,
2108
+ "step": 1350
2109
+ },
2110
+ {
2111
+ "epoch": 2.8421052631578947,
2112
+ "eval_loss": 0.6025745272636414,
2113
+ "eval_runtime": 27.5996,
2114
+ "eval_samples_per_second": 14.493,
2115
+ "eval_steps_per_second": 14.493,
2116
+ "step": 1350
2117
+ },
2118
+ {
2119
+ "epoch": 2.8526315789473684,
2120
+ "grad_norm": 1.8500337600708008,
2121
+ "learning_rate": 6.498264667765374e-07,
2122
+ "loss": 0.362324595451355,
2123
+ "step": 1355
2124
+ },
2125
+ {
2126
+ "epoch": 2.863157894736842,
2127
+ "grad_norm": 1.127455711364746,
2128
+ "learning_rate": 5.616900485642506e-07,
2129
+ "loss": 0.2964962005615234,
2130
+ "step": 1360
2131
+ },
2132
+ {
2133
+ "epoch": 2.873684210526316,
2134
+ "grad_norm": 0.9335603713989258,
2135
+ "learning_rate": 4.79940419937841e-07,
2136
+ "loss": 0.33919923305511473,
2137
+ "step": 1365
2138
+ },
2139
+ {
2140
+ "epoch": 2.8842105263157896,
2141
+ "grad_norm": 1.0695230960845947,
2142
+ "learning_rate": 4.045881418909547e-07,
2143
+ "loss": 0.33406035900115966,
2144
+ "step": 1370
2145
+ },
2146
+ {
2147
+ "epoch": 2.8947368421052633,
2148
+ "grad_norm": 1.2964420318603516,
2149
+ "learning_rate": 3.356429489623558e-07,
2150
+ "loss": 0.3467694282531738,
2151
+ "step": 1375
2152
+ },
2153
+ {
2154
+ "epoch": 2.905263157894737,
2155
+ "grad_norm": 0.9756618738174438,
2156
+ "learning_rate": 2.7311374797835966e-07,
2157
+ "loss": 0.27626986503601075,
2158
+ "step": 1380
2159
+ },
2160
+ {
2161
+ "epoch": 2.9157894736842103,
2162
+ "grad_norm": 1.125270962715149,
2163
+ "learning_rate": 2.170086169021923e-07,
2164
+ "loss": 0.350561261177063,
2165
+ "step": 1385
2166
+ },
2167
+ {
2168
+ "epoch": 2.9263157894736844,
2169
+ "grad_norm": 1.0733071565628052,
2170
+ "learning_rate": 1.6733480379041434e-07,
2171
+ "loss": 0.3240832328796387,
2172
+ "step": 1390
2173
+ },
2174
+ {
2175
+ "epoch": 2.9368421052631577,
2176
+ "grad_norm": 1.8108630180358887,
2177
+ "learning_rate": 1.240987258565751e-07,
2178
+ "loss": 0.3057235240936279,
2179
+ "step": 1395
2180
+ },
2181
+ {
2182
+ "epoch": 2.9473684210526314,
2183
+ "grad_norm": 1.3284285068511963,
2184
+ "learning_rate": 8.730596864218177e-08,
2185
+ "loss": 0.34192938804626466,
2186
+ "step": 1400
2187
+ },
2188
+ {
2189
+ "epoch": 2.9473684210526314,
2190
+ "eval_loss": 0.6027438640594482,
2191
+ "eval_runtime": 27.589,
2192
+ "eval_samples_per_second": 14.499,
2193
+ "eval_steps_per_second": 14.499,
2194
+ "step": 1400
2195
+ },
2196
+ {
2197
+ "epoch": 2.957894736842105,
2198
+ "grad_norm": 1.0273772478103638,
2199
+ "learning_rate": 5.696128529511513e-08,
2200
+ "loss": 0.3200652599334717,
2201
+ "step": 1405
2202
+ },
2203
+ {
2204
+ "epoch": 2.968421052631579,
2205
+ "grad_norm": 0.9442003965377808,
2206
+ "learning_rate": 3.306859595560985e-08,
2207
+ "loss": 0.3131251335144043,
2208
+ "step": 1410
2209
+ },
2210
+ {
2211
+ "epoch": 2.9789473684210526,
2212
+ "grad_norm": 0.9659796357154846,
2213
+ "learning_rate": 1.563098724979839e-08,
2214
+ "loss": 0.3898029088973999,
2215
+ "step": 1415
2216
+ },
2217
+ {
2218
+ "epoch": 2.9894736842105263,
2219
+ "grad_norm": 1.381455659866333,
2220
+ "learning_rate": 4.650711890963333e-09,
2221
+ "loss": 0.37259109020233155,
2222
+ "step": 1420
2223
+ },
2224
+ {
2225
+ "epoch": 3.0,
2226
+ "grad_norm": 1.172485113143921,
2227
+ "learning_rate": 1.2918838853126502e-10,
2228
+ "loss": 0.397792387008667,
2229
+ "step": 1425
2230
+ },
2231
+ {
2232
+ "epoch": 3.0,
2233
+ "eval_loss": 0.6031771302223206,
2234
+ "eval_runtime": 27.5452,
2235
+ "eval_samples_per_second": 14.522,
2236
+ "eval_steps_per_second": 14.522,
2237
+ "step": 1425
2238
+ }
2239
+ ],
2240
+ "logging_steps": 5,
2241
+ "max_steps": 1425,
2242
+ "num_input_tokens_seen": 0,
2243
+ "num_train_epochs": 3,
2244
+ "save_steps": 50,
2245
+ "stateful_callbacks": {
2246
+ "TrainerControl": {
2247
+ "args": {
2248
+ "should_epoch_stop": false,
2249
+ "should_evaluate": false,
2250
+ "should_log": false,
2251
+ "should_save": true,
2252
+ "should_training_stop": true
2253
+ },
2254
+ "attributes": {}
2255
+ }
2256
+ },
2257
+ "total_flos": 2.4041038913726054e+17,
2258
+ "train_batch_size": 1,
2259
+ "trial_name": null,
2260
+ "trial_params": null
2261
+ }
checkpoint-1425/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:757b7d78e07bd589f7cd9db1a1a3019f58127f01f91cba75e4a6cbb7ea4b4a6c
3
+ size 5713
checkpoint-950/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-4-12b-it
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/gemma-4-12b-it
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.20.0
checkpoint-950/adapter_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Gemma4UnifiedForConditionalGeneration",
7
+ "parent_library": "transformers.models.gemma4_unified.modeling_gemma4_unified",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/gemma-4-12b-it",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0.0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "monteclora_config": null,
31
+ "peft_type": "LORA",
32
+ "peft_version": "0.20.0",
33
+ "qalora_group_size": 16,
34
+ "r": 16,
35
+ "rank_pattern": {},
36
+ "revision": null,
37
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer).*?(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection))|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mixer|mlp|feed_forward|ffn|dense|mixer)\\.(?:(?:q_proj|k_proj|v_proj|o_proj|gate_proj|up_proj|down_proj|embedding_projection)))",
38
+ "target_parameters": null,
39
+ "task_type": "CAUSAL_LM",
40
+ "trainable_token_indices": null,
41
+ "use_bdlora": null,
42
+ "use_dora": false,
43
+ "use_qalora": false,
44
+ "use_rslora": false,
45
+ "velora_config": null
46
+ }
checkpoint-950/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f05b624df3aa0d19a9c5bb1f9413057987f10a140fd822057666c011c43bdc6
3
+ size 262373216
checkpoint-950/chat_template.jinja ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}{%- macro strip_thinking(text) -%}
2
+ {%- set ns = namespace(result='') -%}
3
+ {%- for part in text.split('<channel|>') -%}
4
+ {%- if '<|channel>' in part -%}
5
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
6
+ {%- else -%}
7
+ {%- set ns.result = ns.result + part -%}
8
+ {%- endif -%}
9
+ {%- endfor -%}
10
+ {{- ns.result | trim -}}
11
+ {%- endmacro -%}
12
+ {%- set thinking = enable_thinking is defined and enable_thinking -%}
13
+ {%- set loop_messages = messages -%}
14
+ {%- if messages[0]['role'] in ['system', 'developer'] or thinking -%}
15
+ {{ '<|turn>system
16
+ ' }}
17
+ {%- if thinking -%}
18
+ {{ '<|think|>
19
+ ' }}
20
+ {%- endif -%}
21
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
22
+ {{ messages[0]['content'] | trim }}
23
+ {%- set loop_messages = messages[1:] -%}
24
+ {%- endif -%}
25
+ {{ '<turn|>
26
+ ' }}
27
+ {%- endif -%}
28
+ {%- for message in loop_messages -%}
29
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
30
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
31
+ {%- endif -%}
32
+ {%- if (message['role'] == 'assistant') -%}
33
+ {%- set role = "model" -%}
34
+ {%- else -%}
35
+ {%- set role = message['role'] -%}
36
+ {%- endif -%}
37
+ {{ '<|turn>' + role + '
38
+ ' }}
39
+ {%- if message['content'] is string -%}
40
+ {%- if role == "model" -%}
41
+ {{ strip_thinking(message['content']) }}
42
+ {%- else -%}
43
+ {{ message['content'] | trim }}
44
+ {%- endif -%}
45
+ {%- elif message['content'] is iterable -%}
46
+ {%- for item in message['content'] -%}
47
+ {%- if item['type'] == 'audio' -%}
48
+ {{ '<|audio|>' }}
49
+ {%- elif item['type'] == 'image' -%}
50
+ {{ '<|image|>' }}
51
+ {%- elif item['type'] == 'video' -%}
52
+ {{ '<|video|>' }}
53
+ {%- elif item['type'] == 'text' -%}
54
+ {%- if role == "model" -%}
55
+ {{ strip_thinking(item['text']) }}
56
+ {%- else -%}
57
+ {{ item['text'] | trim }}
58
+ {%- endif -%}
59
+ {%- endif -%}
60
+ {%- endfor -%}
61
+ {%- else -%}
62
+ {{ raise_exception("Invalid content type") }}
63
+ {%- endif -%}
64
+ {{ '<turn|>
65
+ ' }}
66
+ {%- endfor -%}
67
+ {%- if add_generation_prompt -%}
68
+ {{'<|turn>model
69
+ '}}
70
+ {%- endif -%}
checkpoint-950/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8cc9a8d00b3b47eb331ebe258e75b2407ce7d9c737e7f22e8240196766e76bc
3
+ size 133962277
checkpoint-950/processor_config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_ms_per_token": 40,
3
+ "audio_seq_length": 750,
4
+ "feature_extractor": {
5
+ "audio_samples_per_token": 640,
6
+ "feature_extractor_type": "Gemma4UnifiedAudioFeatureExtractor",
7
+ "feature_size": 640,
8
+ "padding_side": "right",
9
+ "padding_value": 0.0,
10
+ "return_attention_mask": true,
11
+ "sampling_rate": 16000
12
+ },
13
+ "image_processor": {
14
+ "do_convert_rgb": true,
15
+ "do_normalize": false,
16
+ "do_rescale": true,
17
+ "do_resize": true,
18
+ "image_mean": [
19
+ 0.0,
20
+ 0.0,
21
+ 0.0
22
+ ],
23
+ "image_processor_type": "Gemma4UnifiedImageProcessor",
24
+ "image_std": [
25
+ 1.0,
26
+ 1.0,
27
+ 1.0
28
+ ],
29
+ "max_soft_tokens": 280,
30
+ "patch_size": 16,
31
+ "pooling_kernel_size": 3,
32
+ "resample": 3,
33
+ "rescale_factor": 0.00392156862745098
34
+ },
35
+ "image_seq_length": 280,
36
+ "processor_class": "Gemma4UnifiedProcessor",
37
+ "video_processor": {
38
+ "do_convert_rgb": true,
39
+ "do_normalize": true,
40
+ "do_rescale": true,
41
+ "do_resize": true,
42
+ "do_sample_frames": true,
43
+ "image_mean": [
44
+ 0.0,
45
+ 0.0,
46
+ 0.0
47
+ ],
48
+ "image_std": [
49
+ 1.0,
50
+ 1.0,
51
+ 1.0
52
+ ],
53
+ "max_soft_tokens": 70,
54
+ "num_frames": 32,
55
+ "patch_size": 16,
56
+ "pooling_kernel_size": 3,
57
+ "resample": 3,
58
+ "rescale_factor": 0.00392156862745098,
59
+ "return_metadata": false,
60
+ "video_processor_type": "Gemma4UnifiedVideoProcessor"
61
+ }
62
+ }
checkpoint-950/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7687932e55f71d6428995bb2034f447743a80421cc89fa68cf6f3ec266a96caa
3
+ size 14645
checkpoint-950/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fe665b98fcabe2f1b3babcf39648ab6610ea0ebafc3d8d53ca089b983698f61
3
+ size 1465
checkpoint-950/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc8d3a0ce36466ccc1278bf987df5f71db1719b9ca6b4118264f45cb627bfe0f
3
+ size 32169626
checkpoint-950/tokenizer_config.json ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<turn|>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "model_max_length": 262144,
24
+ "model_specific_special_tokens": {
25
+ "audio_token": "<|audio|>",
26
+ "boa_token": "<|audio>",
27
+ "boi_token": "<|image>",
28
+ "eoa_token": "<audio|>",
29
+ "eoc_token": "<channel|>",
30
+ "eoi_token": "<image|>",
31
+ "eot_token": "<turn|>",
32
+ "escape_token": "<|\"|>",
33
+ "etc_token": "<tool_call|>",
34
+ "etd_token": "<tool|>",
35
+ "etr_token": "<tool_response|>",
36
+ "image_token": "<|image|>",
37
+ "soc_token": "<|channel>",
38
+ "sot_token": "<|turn>",
39
+ "stc_token": "<|tool_call>",
40
+ "std_token": "<|tool>",
41
+ "str_token": "<|tool_response>",
42
+ "think_token": "<|think|>"
43
+ },
44
+ "pad_token": "<pad>",
45
+ "padding_side": "right",
46
+ "processor_class": "Gemma4UnifiedProcessor",
47
+ "response_schema": {
48
+ "properties": {
49
+ "content": {
50
+ "type": "string"
51
+ },
52
+ "role": {
53
+ "const": "assistant"
54
+ },
55
+ "thinking": {
56
+ "type": "string"
57
+ },
58
+ "tool_calls": {
59
+ "items": {
60
+ "properties": {
61
+ "function": {
62
+ "properties": {
63
+ "arguments": {
64
+ "additionalProperties": {},
65
+ "type": "object",
66
+ "x-parser": "gemma4-tool-call"
67
+ },
68
+ "name": {
69
+ "type": "string"
70
+ }
71
+ },
72
+ "type": "object",
73
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
74
+ },
75
+ "type": {
76
+ "const": "function"
77
+ }
78
+ },
79
+ "type": "object"
80
+ },
81
+ "type": "array",
82
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
83
+ }
84
+ },
85
+ "type": "object",
86
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
87
+ },
88
+ "soc_token": "<|channel>",
89
+ "sot_token": "<|turn>",
90
+ "stc_token": "<|tool_call>",
91
+ "std_token": "<|tool>",
92
+ "str_token": "<|tool_response>",
93
+ "think_token": "<|think|>",
94
+ "tokenizer_class": "GemmaTokenizer",
95
+ "unk_token": "<unk>",
96
+ "added_tokens_decoder": {
97
+ "0": {
98
+ "content": "<pad>",
99
+ "single_word": false,
100
+ "lstrip": false,
101
+ "rstrip": false,
102
+ "normalized": false,
103
+ "special": true
104
+ },
105
+ "1": {
106
+ "content": "<eos>",
107
+ "single_word": false,
108
+ "lstrip": false,
109
+ "rstrip": false,
110
+ "normalized": false,
111
+ "special": true
112
+ },
113
+ "2": {
114
+ "content": "<bos>",
115
+ "single_word": false,
116
+ "lstrip": false,
117
+ "rstrip": false,
118
+ "normalized": false,
119
+ "special": true
120
+ },
121
+ "3": {
122
+ "content": "<unk>",
123
+ "single_word": false,
124
+ "lstrip": false,
125
+ "rstrip": false,
126
+ "normalized": false,
127
+ "special": true
128
+ },
129
+ "4": {
130
+ "content": "<mask>",
131
+ "single_word": false,
132
+ "lstrip": false,
133
+ "rstrip": false,
134
+ "normalized": false,
135
+ "special": true
136
+ },
137
+ "46": {
138
+ "content": "<|tool>",
139
+ "single_word": false,
140
+ "lstrip": false,
141
+ "rstrip": false,
142
+ "normalized": false,
143
+ "special": true
144
+ },
145
+ "47": {
146
+ "content": "<tool|>",
147
+ "single_word": false,
148
+ "lstrip": false,
149
+ "rstrip": false,
150
+ "normalized": false,
151
+ "special": true
152
+ },
153
+ "48": {
154
+ "content": "<|tool_call>",
155
+ "single_word": false,
156
+ "lstrip": false,
157
+ "rstrip": false,
158
+ "normalized": false,
159
+ "special": true
160
+ },
161
+ "49": {
162
+ "content": "<tool_call|>",
163
+ "single_word": false,
164
+ "lstrip": false,
165
+ "rstrip": false,
166
+ "normalized": false,
167
+ "special": true
168
+ },
169
+ "50": {
170
+ "content": "<|tool_response>",
171
+ "single_word": false,
172
+ "lstrip": false,
173
+ "rstrip": false,
174
+ "normalized": false,
175
+ "special": true
176
+ },
177
+ "51": {
178
+ "content": "<tool_response|>",
179
+ "single_word": false,
180
+ "lstrip": false,
181
+ "rstrip": false,
182
+ "normalized": false,
183
+ "special": true
184
+ },
185
+ "52": {
186
+ "content": "<|\"|>",
187
+ "single_word": false,
188
+ "lstrip": false,
189
+ "rstrip": false,
190
+ "normalized": false,
191
+ "special": true
192
+ },
193
+ "98": {
194
+ "content": "<|think|>",
195
+ "single_word": false,
196
+ "lstrip": false,
197
+ "rstrip": false,
198
+ "normalized": false,
199
+ "special": true
200
+ },
201
+ "100": {
202
+ "content": "<|channel>",
203
+ "single_word": false,
204
+ "lstrip": false,
205
+ "rstrip": false,
206
+ "normalized": false,
207
+ "special": true
208
+ },
209
+ "101": {
210
+ "content": "<channel|>",
211
+ "single_word": false,
212
+ "lstrip": false,
213
+ "rstrip": false,
214
+ "normalized": false,
215
+ "special": true
216
+ },
217
+ "105": {
218
+ "content": "<|turn>",
219
+ "single_word": false,
220
+ "lstrip": false,
221
+ "rstrip": false,
222
+ "normalized": false,
223
+ "special": true
224
+ },
225
+ "106": {
226
+ "content": "<turn|>",
227
+ "single_word": false,
228
+ "lstrip": false,
229
+ "rstrip": false,
230
+ "normalized": false,
231
+ "special": true
232
+ },
233
+ "255999": {
234
+ "content": "<|image>",
235
+ "single_word": false,
236
+ "lstrip": false,
237
+ "rstrip": false,
238
+ "normalized": false,
239
+ "special": true
240
+ },
241
+ "256000": {
242
+ "content": "<|audio>",
243
+ "single_word": false,
244
+ "lstrip": false,
245
+ "rstrip": false,
246
+ "normalized": false,
247
+ "special": true
248
+ },
249
+ "258880": {
250
+ "content": "<|image|>",
251
+ "single_word": false,
252
+ "lstrip": false,
253
+ "rstrip": false,
254
+ "normalized": false,
255
+ "special": true
256
+ },
257
+ "258881": {
258
+ "content": "<|audio|>",
259
+ "single_word": false,
260
+ "lstrip": false,
261
+ "rstrip": false,
262
+ "normalized": false,
263
+ "special": true
264
+ },
265
+ "258882": {
266
+ "content": "<image|>",
267
+ "single_word": false,
268
+ "lstrip": false,
269
+ "rstrip": false,
270
+ "normalized": false,
271
+ "special": true
272
+ },
273
+ "258883": {
274
+ "content": "<audio|>",
275
+ "single_word": false,
276
+ "lstrip": false,
277
+ "rstrip": false,
278
+ "normalized": false,
279
+ "special": true
280
+ },
281
+ "258884": {
282
+ "content": "<|video|>",
283
+ "single_word": false,
284
+ "lstrip": false,
285
+ "rstrip": false,
286
+ "normalized": false,
287
+ "special": true
288
+ }
289
+ }
290
+ }
checkpoint-950/trainer_state.json ADDED
@@ -0,0 +1,1516 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 950,
3
+ "best_metric": 0.5508978962898254,
4
+ "best_model_checkpoint": "/output/checkpoint-950",
5
+ "epoch": 2.0,
6
+ "eval_steps": 50,
7
+ "global_step": 950,
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.010526315789473684,
14
+ "grad_norm": 2.0839247703552246,
15
+ "learning_rate": 9.302325581395349e-06,
16
+ "loss": 2.646485137939453,
17
+ "step": 5
18
+ },
19
+ {
20
+ "epoch": 0.021052631578947368,
21
+ "grad_norm": 3.253295660018921,
22
+ "learning_rate": 2.0930232558139536e-05,
23
+ "loss": 2.9888063430786134,
24
+ "step": 10
25
+ },
26
+ {
27
+ "epoch": 0.031578947368421054,
28
+ "grad_norm": 2.4486842155456543,
29
+ "learning_rate": 3.2558139534883724e-05,
30
+ "loss": 2.2748624801635744,
31
+ "step": 15
32
+ },
33
+ {
34
+ "epoch": 0.042105263157894736,
35
+ "grad_norm": 2.5299599170684814,
36
+ "learning_rate": 4.418604651162791e-05,
37
+ "loss": 1.9410686492919922,
38
+ "step": 20
39
+ },
40
+ {
41
+ "epoch": 0.05263157894736842,
42
+ "grad_norm": 1.6780576705932617,
43
+ "learning_rate": 5.5813953488372095e-05,
44
+ "loss": 1.3348378181457519,
45
+ "step": 25
46
+ },
47
+ {
48
+ "epoch": 0.06315789473684211,
49
+ "grad_norm": 0.7812225222587585,
50
+ "learning_rate": 6.744186046511628e-05,
51
+ "loss": 0.8430736541748047,
52
+ "step": 30
53
+ },
54
+ {
55
+ "epoch": 0.07368421052631578,
56
+ "grad_norm": 0.8205987215042114,
57
+ "learning_rate": 7.906976744186047e-05,
58
+ "loss": 0.8522604942321778,
59
+ "step": 35
60
+ },
61
+ {
62
+ "epoch": 0.08421052631578947,
63
+ "grad_norm": 0.6925882697105408,
64
+ "learning_rate": 9.069767441860465e-05,
65
+ "loss": 0.6957129955291748,
66
+ "step": 40
67
+ },
68
+ {
69
+ "epoch": 0.09473684210526316,
70
+ "grad_norm": 0.7553223371505737,
71
+ "learning_rate": 9.999987081161148e-05,
72
+ "loss": 0.8302087783813477,
73
+ "step": 45
74
+ },
75
+ {
76
+ "epoch": 0.10526315789473684,
77
+ "grad_norm": 0.6056613922119141,
78
+ "learning_rate": 9.999534928810904e-05,
79
+ "loss": 0.6982179641723633,
80
+ "step": 50
81
+ },
82
+ {
83
+ "epoch": 0.10526315789473684,
84
+ "eval_loss": 0.7021176218986511,
85
+ "eval_runtime": 27.8753,
86
+ "eval_samples_per_second": 14.35,
87
+ "eval_steps_per_second": 14.35,
88
+ "step": 50
89
+ },
90
+ {
91
+ "epoch": 0.11578947368421053,
92
+ "grad_norm": 1.4581637382507324,
93
+ "learning_rate": 9.998436901275022e-05,
94
+ "loss": 0.7925346374511719,
95
+ "step": 55
96
+ },
97
+ {
98
+ "epoch": 0.12631578947368421,
99
+ "grad_norm": 0.6449484825134277,
100
+ "learning_rate": 9.99669314040444e-05,
101
+ "loss": 0.7095213413238526,
102
+ "step": 60
103
+ },
104
+ {
105
+ "epoch": 0.1368421052631579,
106
+ "grad_norm": 0.6936064958572388,
107
+ "learning_rate": 9.994303871470489e-05,
108
+ "loss": 0.6608465194702149,
109
+ "step": 65
110
+ },
111
+ {
112
+ "epoch": 0.14736842105263157,
113
+ "grad_norm": 0.5944413542747498,
114
+ "learning_rate": 9.991269403135783e-05,
115
+ "loss": 0.6789331436157227,
116
+ "step": 70
117
+ },
118
+ {
119
+ "epoch": 0.15789473684210525,
120
+ "grad_norm": 0.7518417835235596,
121
+ "learning_rate": 9.987590127414344e-05,
122
+ "loss": 0.669992208480835,
123
+ "step": 75
124
+ },
125
+ {
126
+ "epoch": 0.16842105263157894,
127
+ "grad_norm": 0.7772454619407654,
128
+ "learning_rate": 9.98326651962096e-05,
129
+ "loss": 0.6882061958312988,
130
+ "step": 80
131
+ },
132
+ {
133
+ "epoch": 0.17894736842105263,
134
+ "grad_norm": 0.7076404690742493,
135
+ "learning_rate": 9.978299138309781e-05,
136
+ "loss": 0.6435281276702881,
137
+ "step": 85
138
+ },
139
+ {
140
+ "epoch": 0.18947368421052632,
141
+ "grad_norm": 0.6353256702423096,
142
+ "learning_rate": 9.972688625202164e-05,
143
+ "loss": 0.6035995960235596,
144
+ "step": 90
145
+ },
146
+ {
147
+ "epoch": 0.2,
148
+ "grad_norm": 0.6928842663764954,
149
+ "learning_rate": 9.966435705103765e-05,
150
+ "loss": 0.6339406967163086,
151
+ "step": 95
152
+ },
153
+ {
154
+ "epoch": 0.21052631578947367,
155
+ "grad_norm": 1.1047526597976685,
156
+ "learning_rate": 9.959541185810906e-05,
157
+ "loss": 0.5951476097106934,
158
+ "step": 100
159
+ },
160
+ {
161
+ "epoch": 0.21052631578947367,
162
+ "eval_loss": 0.6416817307472229,
163
+ "eval_runtime": 27.0456,
164
+ "eval_samples_per_second": 14.79,
165
+ "eval_steps_per_second": 14.79,
166
+ "step": 100
167
+ },
168
+ {
169
+ "epoch": 0.22105263157894736,
170
+ "grad_norm": 0.6272938847541809,
171
+ "learning_rate": 9.952005958006217e-05,
172
+ "loss": 0.6947292804718017,
173
+ "step": 105
174
+ },
175
+ {
176
+ "epoch": 0.23157894736842105,
177
+ "grad_norm": 0.6077613234519958,
178
+ "learning_rate": 9.943830995143577e-05,
179
+ "loss": 0.7127768993377686,
180
+ "step": 110
181
+ },
182
+ {
183
+ "epoch": 0.24210526315789474,
184
+ "grad_norm": 0.6263899803161621,
185
+ "learning_rate": 9.935017353322347e-05,
186
+ "loss": 0.643881893157959,
187
+ "step": 115
188
+ },
189
+ {
190
+ "epoch": 0.25263157894736843,
191
+ "grad_norm": 0.6517646908760071,
192
+ "learning_rate": 9.925566171150945e-05,
193
+ "loss": 0.6408101081848144,
194
+ "step": 120
195
+ },
196
+ {
197
+ "epoch": 0.2631578947368421,
198
+ "grad_norm": 0.5079100728034973,
199
+ "learning_rate": 9.915478669599747e-05,
200
+ "loss": 0.5704734802246094,
201
+ "step": 125
202
+ },
203
+ {
204
+ "epoch": 0.2736842105263158,
205
+ "grad_norm": 0.6810751557350159,
206
+ "learning_rate": 9.904756151843353e-05,
207
+ "loss": 0.7103314876556397,
208
+ "step": 130
209
+ },
210
+ {
211
+ "epoch": 0.28421052631578947,
212
+ "grad_norm": 0.6985617876052856,
213
+ "learning_rate": 9.893400003092237e-05,
214
+ "loss": 0.7399785995483399,
215
+ "step": 135
216
+ },
217
+ {
218
+ "epoch": 0.29473684210526313,
219
+ "grad_norm": 0.611039936542511,
220
+ "learning_rate": 9.881411690413796e-05,
221
+ "loss": 0.6211562633514405,
222
+ "step": 140
223
+ },
224
+ {
225
+ "epoch": 0.30526315789473685,
226
+ "grad_norm": 0.6540597677230835,
227
+ "learning_rate": 9.868792762542814e-05,
228
+ "loss": 0.6841907501220703,
229
+ "step": 145
230
+ },
231
+ {
232
+ "epoch": 0.3157894736842105,
233
+ "grad_norm": 0.6657130122184753,
234
+ "learning_rate": 9.855544849681404e-05,
235
+ "loss": 0.6384834289550781,
236
+ "step": 150
237
+ },
238
+ {
239
+ "epoch": 0.3157894736842105,
240
+ "eval_loss": 0.6154849529266357,
241
+ "eval_runtime": 28.9994,
242
+ "eval_samples_per_second": 13.793,
243
+ "eval_steps_per_second": 13.793,
244
+ "step": 150
245
+ },
246
+ {
247
+ "epoch": 0.3263157894736842,
248
+ "grad_norm": 0.6323176622390747,
249
+ "learning_rate": 9.841669663288391e-05,
250
+ "loss": 0.6482361793518067,
251
+ "step": 155
252
+ },
253
+ {
254
+ "epoch": 0.3368421052631579,
255
+ "grad_norm": 0.6461365818977356,
256
+ "learning_rate": 9.82716899585822e-05,
257
+ "loss": 0.6088940620422363,
258
+ "step": 160
259
+ },
260
+ {
261
+ "epoch": 0.3473684210526316,
262
+ "grad_norm": 0.518051028251648,
263
+ "learning_rate": 9.812044720689387e-05,
264
+ "loss": 0.6474239826202393,
265
+ "step": 165
266
+ },
267
+ {
268
+ "epoch": 0.35789473684210527,
269
+ "grad_norm": 0.6599591374397278,
270
+ "learning_rate": 9.796298791642435e-05,
271
+ "loss": 0.639539098739624,
272
+ "step": 170
273
+ },
274
+ {
275
+ "epoch": 0.3684210526315789,
276
+ "grad_norm": 0.6555272340774536,
277
+ "learning_rate": 9.779933242887542e-05,
278
+ "loss": 0.6650691986083984,
279
+ "step": 175
280
+ },
281
+ {
282
+ "epoch": 0.37894736842105264,
283
+ "grad_norm": 0.5666244626045227,
284
+ "learning_rate": 9.762950188641728e-05,
285
+ "loss": 0.6851089000701904,
286
+ "step": 180
287
+ },
288
+ {
289
+ "epoch": 0.3894736842105263,
290
+ "grad_norm": 0.7169855833053589,
291
+ "learning_rate": 9.745351822895727e-05,
292
+ "loss": 0.5861614227294922,
293
+ "step": 185
294
+ },
295
+ {
296
+ "epoch": 0.4,
297
+ "grad_norm": 0.5155227184295654,
298
+ "learning_rate": 9.727140419130553e-05,
299
+ "loss": 0.6075415134429931,
300
+ "step": 190
301
+ },
302
+ {
303
+ "epoch": 0.4105263157894737,
304
+ "grad_norm": 0.8202889561653137,
305
+ "learning_rate": 9.708318330023798e-05,
306
+ "loss": 0.6071089267730713,
307
+ "step": 195
308
+ },
309
+ {
310
+ "epoch": 0.42105263157894735,
311
+ "grad_norm": 0.4622310996055603,
312
+ "learning_rate": 9.688887987145691e-05,
313
+ "loss": 0.5945972919464111,
314
+ "step": 200
315
+ },
316
+ {
317
+ "epoch": 0.42105263157894735,
318
+ "eval_loss": 0.6035570502281189,
319
+ "eval_runtime": 27.8485,
320
+ "eval_samples_per_second": 14.363,
321
+ "eval_steps_per_second": 14.363,
322
+ "step": 200
323
+ },
324
+ {
325
+ "epoch": 0.43157894736842106,
326
+ "grad_norm": 0.6781761050224304,
327
+ "learning_rate": 9.668851900644975e-05,
328
+ "loss": 0.570584774017334,
329
+ "step": 205
330
+ },
331
+ {
332
+ "epoch": 0.4421052631578947,
333
+ "grad_norm": 0.5482363104820251,
334
+ "learning_rate": 9.648212658924625e-05,
335
+ "loss": 0.6329983234405517,
336
+ "step": 210
337
+ },
338
+ {
339
+ "epoch": 0.45263157894736844,
340
+ "grad_norm": 0.6346020698547363,
341
+ "learning_rate": 9.62697292830746e-05,
342
+ "loss": 0.6306288242340088,
343
+ "step": 215
344
+ },
345
+ {
346
+ "epoch": 0.4631578947368421,
347
+ "grad_norm": 0.7032224535942078,
348
+ "learning_rate": 9.6051354526917e-05,
349
+ "loss": 0.6967363357543945,
350
+ "step": 220
351
+ },
352
+ {
353
+ "epoch": 0.47368421052631576,
354
+ "grad_norm": 0.4979580044746399,
355
+ "learning_rate": 9.582703053196464e-05,
356
+ "loss": 0.5608481884002685,
357
+ "step": 225
358
+ },
359
+ {
360
+ "epoch": 0.4842105263157895,
361
+ "grad_norm": 0.7327916622161865,
362
+ "learning_rate": 9.55967862779735e-05,
363
+ "loss": 0.584914255142212,
364
+ "step": 230
365
+ },
366
+ {
367
+ "epoch": 0.49473684210526314,
368
+ "grad_norm": 0.7519303560256958,
369
+ "learning_rate": 9.536065150952025e-05,
370
+ "loss": 0.6214882850646972,
371
+ "step": 235
372
+ },
373
+ {
374
+ "epoch": 0.5052631578947369,
375
+ "grad_norm": 0.7328101396560669,
376
+ "learning_rate": 9.511865673215986e-05,
377
+ "loss": 0.6112482070922851,
378
+ "step": 240
379
+ },
380
+ {
381
+ "epoch": 0.5157894736842106,
382
+ "grad_norm": 0.5348976254463196,
383
+ "learning_rate": 9.487083320848454e-05,
384
+ "loss": 0.6417016983032227,
385
+ "step": 245
386
+ },
387
+ {
388
+ "epoch": 0.5263157894736842,
389
+ "grad_norm": 0.5690417885780334,
390
+ "learning_rate": 9.461721295408505e-05,
391
+ "loss": 0.5277723789215087,
392
+ "step": 250
393
+ },
394
+ {
395
+ "epoch": 0.5263157894736842,
396
+ "eval_loss": 0.5920669436454773,
397
+ "eval_runtime": 27.6132,
398
+ "eval_samples_per_second": 14.486,
399
+ "eval_steps_per_second": 14.486,
400
+ "step": 250
401
+ },
402
+ {
403
+ "epoch": 0.5368421052631579,
404
+ "grad_norm": 0.5612736344337463,
405
+ "learning_rate": 9.435782873341474e-05,
406
+ "loss": 0.5604990959167481,
407
+ "step": 255
408
+ },
409
+ {
410
+ "epoch": 0.5473684210526316,
411
+ "grad_norm": 0.6084933876991272,
412
+ "learning_rate": 9.409271405555677e-05,
413
+ "loss": 0.5558807373046875,
414
+ "step": 260
415
+ },
416
+ {
417
+ "epoch": 0.5578947368421052,
418
+ "grad_norm": 0.6289730668067932,
419
+ "learning_rate": 9.382190316989518e-05,
420
+ "loss": 0.5646376609802246,
421
+ "step": 265
422
+ },
423
+ {
424
+ "epoch": 0.5684210526315789,
425
+ "grad_norm": 0.6343289613723755,
426
+ "learning_rate": 9.354543106169029e-05,
427
+ "loss": 0.6692690372467041,
428
+ "step": 270
429
+ },
430
+ {
431
+ "epoch": 0.5789473684210527,
432
+ "grad_norm": 1.0037399530410767,
433
+ "learning_rate": 9.326333344755912e-05,
434
+ "loss": 0.6066013813018799,
435
+ "step": 275
436
+ },
437
+ {
438
+ "epoch": 0.5894736842105263,
439
+ "grad_norm": 0.8138774633407593,
440
+ "learning_rate": 9.297564677086118e-05,
441
+ "loss": 0.6074648857116699,
442
+ "step": 280
443
+ },
444
+ {
445
+ "epoch": 0.6,
446
+ "grad_norm": 1.0000449419021606,
447
+ "learning_rate": 9.268240819699054e-05,
448
+ "loss": 0.5891916275024414,
449
+ "step": 285
450
+ },
451
+ {
452
+ "epoch": 0.6105263157894737,
453
+ "grad_norm": 0.7454043030738831,
454
+ "learning_rate": 9.238365560857447e-05,
455
+ "loss": 0.6280234336853028,
456
+ "step": 290
457
+ },
458
+ {
459
+ "epoch": 0.6210526315789474,
460
+ "grad_norm": 0.756981611251831,
461
+ "learning_rate": 9.207942760057958e-05,
462
+ "loss": 0.6314973831176758,
463
+ "step": 295
464
+ },
465
+ {
466
+ "epoch": 0.631578947368421,
467
+ "grad_norm": 0.7583857178688049,
468
+ "learning_rate": 9.176976347532575e-05,
469
+ "loss": 0.6410815715789795,
470
+ "step": 300
471
+ },
472
+ {
473
+ "epoch": 0.631578947368421,
474
+ "eval_loss": 0.5863876342773438,
475
+ "eval_runtime": 27.6386,
476
+ "eval_samples_per_second": 14.472,
477
+ "eval_steps_per_second": 14.472,
478
+ "step": 300
479
+ },
480
+ {
481
+ "epoch": 0.6421052631578947,
482
+ "grad_norm": 0.791587769985199,
483
+ "learning_rate": 9.145470323740885e-05,
484
+ "loss": 0.5841981410980225,
485
+ "step": 305
486
+ },
487
+ {
488
+ "epoch": 0.6526315789473685,
489
+ "grad_norm": 1.1765379905700684,
490
+ "learning_rate": 9.113428758853268e-05,
491
+ "loss": 0.5464617729187011,
492
+ "step": 310
493
+ },
494
+ {
495
+ "epoch": 0.6631578947368421,
496
+ "grad_norm": 3.7840137481689453,
497
+ "learning_rate": 9.080855792225076e-05,
498
+ "loss": 0.6217821121215821,
499
+ "step": 315
500
+ },
501
+ {
502
+ "epoch": 0.6736842105263158,
503
+ "grad_norm": 1.2177997827529907,
504
+ "learning_rate": 9.047755631861884e-05,
505
+ "loss": 0.6125752449035644,
506
+ "step": 320
507
+ },
508
+ {
509
+ "epoch": 0.6842105263157895,
510
+ "grad_norm": 0.6323914527893066,
511
+ "learning_rate": 9.014132553875878e-05,
512
+ "loss": 0.5617509365081788,
513
+ "step": 325
514
+ },
515
+ {
516
+ "epoch": 0.6947368421052632,
517
+ "grad_norm": 0.9683524370193481,
518
+ "learning_rate": 8.979990901933428e-05,
519
+ "loss": 0.6395817756652832,
520
+ "step": 330
521
+ },
522
+ {
523
+ "epoch": 0.7052631578947368,
524
+ "grad_norm": 0.6486535668373108,
525
+ "learning_rate": 8.945335086693942e-05,
526
+ "loss": 0.6556002616882324,
527
+ "step": 335
528
+ },
529
+ {
530
+ "epoch": 0.7157894736842105,
531
+ "grad_norm": 1.642112374305725,
532
+ "learning_rate": 8.910169585240078e-05,
533
+ "loss": 0.588761568069458,
534
+ "step": 340
535
+ },
536
+ {
537
+ "epoch": 0.7263157894736842,
538
+ "grad_norm": 1.007238507270813,
539
+ "learning_rate": 8.874498940499346e-05,
540
+ "loss": 0.5744077682495117,
541
+ "step": 345
542
+ },
543
+ {
544
+ "epoch": 0.7368421052631579,
545
+ "grad_norm": 0.4945877194404602,
546
+ "learning_rate": 8.83832776065723e-05,
547
+ "loss": 0.5382843494415284,
548
+ "step": 350
549
+ },
550
+ {
551
+ "epoch": 0.7368421052631579,
552
+ "eval_loss": 0.5782474279403687,
553
+ "eval_runtime": 27.574,
554
+ "eval_samples_per_second": 14.506,
555
+ "eval_steps_per_second": 14.506,
556
+ "step": 350
557
+ },
558
+ {
559
+ "epoch": 0.7473684210526316,
560
+ "grad_norm": 0.7869954109191895,
561
+ "learning_rate": 8.801660718561875e-05,
562
+ "loss": 0.5697366237640381,
563
+ "step": 355
564
+ },
565
+ {
566
+ "epoch": 0.7578947368421053,
567
+ "grad_norm": 0.48311182856559753,
568
+ "learning_rate": 8.7645025511204e-05,
569
+ "loss": 0.6168550491333008,
570
+ "step": 360
571
+ },
572
+ {
573
+ "epoch": 0.7684210526315789,
574
+ "grad_norm": 0.5001690983772278,
575
+ "learning_rate": 8.726858058686968e-05,
576
+ "loss": 0.5362951278686523,
577
+ "step": 365
578
+ },
579
+ {
580
+ "epoch": 0.7789473684210526,
581
+ "grad_norm": 0.5915603041648865,
582
+ "learning_rate": 8.688732104442632e-05,
583
+ "loss": 0.6041481018066406,
584
+ "step": 370
585
+ },
586
+ {
587
+ "epoch": 0.7894736842105263,
588
+ "grad_norm": 0.5077712535858154,
589
+ "learning_rate": 8.650129613767075e-05,
590
+ "loss": 0.5257850646972656,
591
+ "step": 375
592
+ },
593
+ {
594
+ "epoch": 0.8,
595
+ "grad_norm": 0.7458930015563965,
596
+ "learning_rate": 8.611055573602323e-05,
597
+ "loss": 0.6048945903778076,
598
+ "step": 380
599
+ },
600
+ {
601
+ "epoch": 0.8105263157894737,
602
+ "grad_norm": 0.6072155237197876,
603
+ "learning_rate": 8.571515031808484e-05,
604
+ "loss": 0.5505197048187256,
605
+ "step": 385
606
+ },
607
+ {
608
+ "epoch": 0.8210526315789474,
609
+ "grad_norm": 0.5989276170730591,
610
+ "learning_rate": 8.531513096511646e-05,
611
+ "loss": 0.528736162185669,
612
+ "step": 390
613
+ },
614
+ {
615
+ "epoch": 0.8315789473684211,
616
+ "grad_norm": 0.47586777806282043,
617
+ "learning_rate": 8.491054935443954e-05,
618
+ "loss": 0.5494171142578125,
619
+ "step": 395
620
+ },
621
+ {
622
+ "epoch": 0.8421052631578947,
623
+ "grad_norm": 0.6332405209541321,
624
+ "learning_rate": 8.450145775276024e-05,
625
+ "loss": 0.605548906326294,
626
+ "step": 400
627
+ },
628
+ {
629
+ "epoch": 0.8421052631578947,
630
+ "eval_loss": 0.5717179775238037,
631
+ "eval_runtime": 27.9225,
632
+ "eval_samples_per_second": 14.325,
633
+ "eval_steps_per_second": 14.325,
634
+ "step": 400
635
+ },
636
+ {
637
+ "epoch": 0.8526315789473684,
638
+ "grad_norm": 0.873306155204773,
639
+ "learning_rate": 8.40879090094171e-05,
640
+ "loss": 0.6015737056732178,
641
+ "step": 405
642
+ },
643
+ {
644
+ "epoch": 0.8631578947368421,
645
+ "grad_norm": 0.6360308527946472,
646
+ "learning_rate": 8.366995654955375e-05,
647
+ "loss": 0.5689235687255859,
648
+ "step": 410
649
+ },
650
+ {
651
+ "epoch": 0.8736842105263158,
652
+ "grad_norm": 0.7359456419944763,
653
+ "learning_rate": 8.324765436721688e-05,
654
+ "loss": 0.6225551128387451,
655
+ "step": 415
656
+ },
657
+ {
658
+ "epoch": 0.8842105263157894,
659
+ "grad_norm": 0.6135861873626709,
660
+ "learning_rate": 8.282105701838106e-05,
661
+ "loss": 0.567096471786499,
662
+ "step": 420
663
+ },
664
+ {
665
+ "epoch": 0.8947368421052632,
666
+ "grad_norm": 0.5699036717414856,
667
+ "learning_rate": 8.239021961390078e-05,
668
+ "loss": 0.5435199737548828,
669
+ "step": 425
670
+ },
671
+ {
672
+ "epoch": 0.9052631578947369,
673
+ "grad_norm": 0.6312369704246521,
674
+ "learning_rate": 8.195519781239079e-05,
675
+ "loss": 0.6320878028869629,
676
+ "step": 430
677
+ },
678
+ {
679
+ "epoch": 0.9157894736842105,
680
+ "grad_norm": 0.7718231678009033,
681
+ "learning_rate": 8.151604781303577e-05,
682
+ "loss": 0.5115500450134277,
683
+ "step": 435
684
+ },
685
+ {
686
+ "epoch": 0.9263157894736842,
687
+ "grad_norm": 0.7022733688354492,
688
+ "learning_rate": 8.107282634833015e-05,
689
+ "loss": 0.5616052627563477,
690
+ "step": 440
691
+ },
692
+ {
693
+ "epoch": 0.9368421052631579,
694
+ "grad_norm": 0.6376118659973145,
695
+ "learning_rate": 8.06255906767489e-05,
696
+ "loss": 0.6315895080566406,
697
+ "step": 445
698
+ },
699
+ {
700
+ "epoch": 0.9473684210526315,
701
+ "grad_norm": 0.5550912618637085,
702
+ "learning_rate": 8.01743985753506e-05,
703
+ "loss": 0.597140884399414,
704
+ "step": 450
705
+ },
706
+ {
707
+ "epoch": 0.9473684210526315,
708
+ "eval_loss": 0.5748050212860107,
709
+ "eval_runtime": 27.2437,
710
+ "eval_samples_per_second": 14.682,
711
+ "eval_steps_per_second": 14.682,
712
+ "step": 450
713
+ },
714
+ {
715
+ "epoch": 0.9578947368421052,
716
+ "grad_norm": 0.5438539385795593,
717
+ "learning_rate": 7.971930833231338e-05,
718
+ "loss": 0.5860416889190674,
719
+ "step": 455
720
+ },
721
+ {
722
+ "epoch": 0.968421052631579,
723
+ "grad_norm": 0.7530905604362488,
724
+ "learning_rate": 7.926037873940469e-05,
725
+ "loss": 0.5889331340789795,
726
+ "step": 460
727
+ },
728
+ {
729
+ "epoch": 0.9789473684210527,
730
+ "grad_norm": 0.6347785592079163,
731
+ "learning_rate": 7.879766908438638e-05,
732
+ "loss": 0.5784619808197021,
733
+ "step": 465
734
+ },
735
+ {
736
+ "epoch": 0.9894736842105263,
737
+ "grad_norm": 0.6019025444984436,
738
+ "learning_rate": 7.83312391433553e-05,
739
+ "loss": 0.5674707412719726,
740
+ "step": 470
741
+ },
742
+ {
743
+ "epoch": 1.0,
744
+ "grad_norm": 0.5169152617454529,
745
+ "learning_rate": 7.786114917302118e-05,
746
+ "loss": 0.6072670936584472,
747
+ "step": 475
748
+ },
749
+ {
750
+ "epoch": 1.0105263157894737,
751
+ "grad_norm": 0.5598861575126648,
752
+ "learning_rate": 7.738745990292208e-05,
753
+ "loss": 0.5027533531188965,
754
+ "step": 480
755
+ },
756
+ {
757
+ "epoch": 1.0210526315789474,
758
+ "grad_norm": 0.5044442415237427,
759
+ "learning_rate": 7.691023252757901e-05,
760
+ "loss": 0.50599045753479,
761
+ "step": 485
762
+ },
763
+ {
764
+ "epoch": 1.0315789473684212,
765
+ "grad_norm": 0.5246402025222778,
766
+ "learning_rate": 7.64295286985904e-05,
767
+ "loss": 0.4706981658935547,
768
+ "step": 490
769
+ },
770
+ {
771
+ "epoch": 1.0421052631578946,
772
+ "grad_norm": 0.6998376846313477,
773
+ "learning_rate": 7.594541051666742e-05,
774
+ "loss": 0.48616642951965333,
775
+ "step": 495
776
+ },
777
+ {
778
+ "epoch": 1.0526315789473684,
779
+ "grad_norm": 0.5945510864257812,
780
+ "learning_rate": 7.545794052361149e-05,
781
+ "loss": 0.46446027755737307,
782
+ "step": 500
783
+ },
784
+ {
785
+ "epoch": 1.0526315789473684,
786
+ "eval_loss": 0.5771171450614929,
787
+ "eval_runtime": 27.1019,
788
+ "eval_samples_per_second": 14.759,
789
+ "eval_steps_per_second": 14.759,
790
+ "step": 500
791
+ },
792
+ {
793
+ "epoch": 1.063157894736842,
794
+ "grad_norm": 12.692610740661621,
795
+ "learning_rate": 7.496718169423462e-05,
796
+ "loss": 0.4399024486541748,
797
+ "step": 505
798
+ },
799
+ {
800
+ "epoch": 1.0736842105263158,
801
+ "grad_norm": 0.6038990020751953,
802
+ "learning_rate": 7.447319742822392e-05,
803
+ "loss": 0.48290238380432127,
804
+ "step": 510
805
+ },
806
+ {
807
+ "epoch": 1.0842105263157895,
808
+ "grad_norm": 0.6743545532226562,
809
+ "learning_rate": 7.397605154195106e-05,
810
+ "loss": 0.4822847366333008,
811
+ "step": 515
812
+ },
813
+ {
814
+ "epoch": 1.0947368421052632,
815
+ "grad_norm": 0.6746461391448975,
816
+ "learning_rate": 7.347580826022821e-05,
817
+ "loss": 0.47967071533203126,
818
+ "step": 520
819
+ },
820
+ {
821
+ "epoch": 1.1052631578947367,
822
+ "grad_norm": 0.7964761853218079,
823
+ "learning_rate": 7.29725322080109e-05,
824
+ "loss": 0.5180202484130859,
825
+ "step": 525
826
+ },
827
+ {
828
+ "epoch": 1.1157894736842104,
829
+ "grad_norm": 0.6772136688232422,
830
+ "learning_rate": 7.246628840204935e-05,
831
+ "loss": 0.46326284408569335,
832
+ "step": 530
833
+ },
834
+ {
835
+ "epoch": 1.1263157894736842,
836
+ "grad_norm": 0.7225517630577087,
837
+ "learning_rate": 7.195714224248912e-05,
838
+ "loss": 0.5262459278106689,
839
+ "step": 535
840
+ },
841
+ {
842
+ "epoch": 1.1368421052631579,
843
+ "grad_norm": 0.8155159950256348,
844
+ "learning_rate": 7.144515950442232e-05,
845
+ "loss": 0.5381614685058593,
846
+ "step": 540
847
+ },
848
+ {
849
+ "epoch": 1.1473684210526316,
850
+ "grad_norm": 0.7686448097229004,
851
+ "learning_rate": 7.093040632939023e-05,
852
+ "loss": 0.48169612884521484,
853
+ "step": 545
854
+ },
855
+ {
856
+ "epoch": 1.1578947368421053,
857
+ "grad_norm": 0.798007071018219,
858
+ "learning_rate": 7.041294921683876e-05,
859
+ "loss": 0.571818494796753,
860
+ "step": 550
861
+ },
862
+ {
863
+ "epoch": 1.1578947368421053,
864
+ "eval_loss": 0.5729017853736877,
865
+ "eval_runtime": 27.3923,
866
+ "eval_samples_per_second": 14.603,
867
+ "eval_steps_per_second": 14.603,
868
+ "step": 550
869
+ },
870
+ {
871
+ "epoch": 1.168421052631579,
872
+ "grad_norm": 0.9871010184288025,
873
+ "learning_rate": 6.989285501552751e-05,
874
+ "loss": 0.5277251243591309,
875
+ "step": 555
876
+ },
877
+ {
878
+ "epoch": 1.1789473684210527,
879
+ "grad_norm": 0.6931464076042175,
880
+ "learning_rate": 6.93701909148938e-05,
881
+ "loss": 0.4839730739593506,
882
+ "step": 560
883
+ },
884
+ {
885
+ "epoch": 1.1894736842105262,
886
+ "grad_norm": 0.6945406198501587,
887
+ "learning_rate": 6.884502443637273e-05,
888
+ "loss": 0.4632833480834961,
889
+ "step": 565
890
+ },
891
+ {
892
+ "epoch": 1.2,
893
+ "grad_norm": 0.8374159336090088,
894
+ "learning_rate": 6.831742342467418e-05,
895
+ "loss": 0.46635966300964354,
896
+ "step": 570
897
+ },
898
+ {
899
+ "epoch": 1.2105263157894737,
900
+ "grad_norm": 0.8007093667984009,
901
+ "learning_rate": 6.778745603901817e-05,
902
+ "loss": 0.4775552272796631,
903
+ "step": 575
904
+ },
905
+ {
906
+ "epoch": 1.2210526315789474,
907
+ "grad_norm": 0.922927975654602,
908
+ "learning_rate": 6.725519074432965e-05,
909
+ "loss": 0.41661796569824217,
910
+ "step": 580
911
+ },
912
+ {
913
+ "epoch": 1.231578947368421,
914
+ "grad_norm": 0.8915149569511414,
915
+ "learning_rate": 6.672069630239366e-05,
916
+ "loss": 0.46227364540100097,
917
+ "step": 585
918
+ },
919
+ {
920
+ "epoch": 1.2421052631578948,
921
+ "grad_norm": 0.7948114275932312,
922
+ "learning_rate": 6.618404176297217e-05,
923
+ "loss": 0.5104813575744629,
924
+ "step": 590
925
+ },
926
+ {
927
+ "epoch": 1.2526315789473683,
928
+ "grad_norm": 0.9380368590354919,
929
+ "learning_rate": 6.564529645488383e-05,
930
+ "loss": 0.4952188014984131,
931
+ "step": 595
932
+ },
933
+ {
934
+ "epoch": 1.263157894736842,
935
+ "grad_norm": 0.8004136085510254,
936
+ "learning_rate": 6.510452997704748e-05,
937
+ "loss": 0.4533547878265381,
938
+ "step": 600
939
+ },
940
+ {
941
+ "epoch": 1.263157894736842,
942
+ "eval_loss": 0.5720676779747009,
943
+ "eval_runtime": 27.2065,
944
+ "eval_samples_per_second": 14.702,
945
+ "eval_steps_per_second": 14.702,
946
+ "step": 600
947
+ },
948
+ {
949
+ "epoch": 1.2736842105263158,
950
+ "grad_norm": 0.8849948644638062,
951
+ "learning_rate": 6.456181218949096e-05,
952
+ "loss": 0.5185356140136719,
953
+ "step": 605
954
+ },
955
+ {
956
+ "epoch": 1.2842105263157895,
957
+ "grad_norm": 0.8258388638496399,
958
+ "learning_rate": 6.401721320432604e-05,
959
+ "loss": 0.45459442138671874,
960
+ "step": 610
961
+ },
962
+ {
963
+ "epoch": 1.2947368421052632,
964
+ "grad_norm": 0.7006433606147766,
965
+ "learning_rate": 6.34708033766909e-05,
966
+ "loss": 0.42599120140075686,
967
+ "step": 615
968
+ },
969
+ {
970
+ "epoch": 1.305263157894737,
971
+ "grad_norm": 0.8149921298027039,
972
+ "learning_rate": 6.292265329566108e-05,
973
+ "loss": 0.47135143280029296,
974
+ "step": 620
975
+ },
976
+ {
977
+ "epoch": 1.3157894736842106,
978
+ "grad_norm": 0.8304453492164612,
979
+ "learning_rate": 6.237283377513036e-05,
980
+ "loss": 0.543507719039917,
981
+ "step": 625
982
+ },
983
+ {
984
+ "epoch": 1.3263157894736843,
985
+ "grad_norm": 2.146064281463623,
986
+ "learning_rate": 6.182141584466247e-05,
987
+ "loss": 0.525644063949585,
988
+ "step": 630
989
+ },
990
+ {
991
+ "epoch": 1.3368421052631578,
992
+ "grad_norm": 0.8405390381813049,
993
+ "learning_rate": 6.126847074031507e-05,
994
+ "loss": 0.4994760513305664,
995
+ "step": 635
996
+ },
997
+ {
998
+ "epoch": 1.3473684210526315,
999
+ "grad_norm": 0.7558398842811584,
1000
+ "learning_rate": 6.071406989543678e-05,
1001
+ "loss": 0.45131878852844237,
1002
+ "step": 640
1003
+ },
1004
+ {
1005
+ "epoch": 1.3578947368421053,
1006
+ "grad_norm": 1.3861230611801147,
1007
+ "learning_rate": 6.0158284931439177e-05,
1008
+ "loss": 0.45543656349182127,
1009
+ "step": 645
1010
+ },
1011
+ {
1012
+ "epoch": 1.368421052631579,
1013
+ "grad_norm": 0.7160976529121399,
1014
+ "learning_rate": 5.9601187648544056e-05,
1015
+ "loss": 0.4914837837219238,
1016
+ "step": 650
1017
+ },
1018
+ {
1019
+ "epoch": 1.368421052631579,
1020
+ "eval_loss": 0.566149890422821,
1021
+ "eval_runtime": 27.1418,
1022
+ "eval_samples_per_second": 14.737,
1023
+ "eval_steps_per_second": 14.737,
1024
+ "step": 650
1025
+ },
1026
+ {
1027
+ "epoch": 1.3789473684210527,
1028
+ "grad_norm": 0.7861437201499939,
1029
+ "learning_rate": 5.904285001650783e-05,
1030
+ "loss": 0.497259521484375,
1031
+ "step": 655
1032
+ },
1033
+ {
1034
+ "epoch": 1.3894736842105262,
1035
+ "grad_norm": 0.7229910492897034,
1036
+ "learning_rate": 5.8483344165323975e-05,
1037
+ "loss": 0.5121944904327392,
1038
+ "step": 660
1039
+ },
1040
+ {
1041
+ "epoch": 1.4,
1042
+ "grad_norm": 0.8752608299255371,
1043
+ "learning_rate": 5.792274237590471e-05,
1044
+ "loss": 0.5024206161499023,
1045
+ "step": 665
1046
+ },
1047
+ {
1048
+ "epoch": 1.4105263157894736,
1049
+ "grad_norm": 0.8390534520149231,
1050
+ "learning_rate": 5.7361117070743374e-05,
1051
+ "loss": 0.48681044578552246,
1052
+ "step": 670
1053
+ },
1054
+ {
1055
+ "epoch": 1.4210526315789473,
1056
+ "grad_norm": 0.8038208484649658,
1057
+ "learning_rate": 5.679854080455821e-05,
1058
+ "loss": 0.4971346378326416,
1059
+ "step": 675
1060
+ },
1061
+ {
1062
+ "epoch": 1.431578947368421,
1063
+ "grad_norm": 0.7638700008392334,
1064
+ "learning_rate": 5.6235086254919324e-05,
1065
+ "loss": 0.42120847702026365,
1066
+ "step": 680
1067
+ },
1068
+ {
1069
+ "epoch": 1.4421052631578948,
1070
+ "grad_norm": 0.7635045051574707,
1071
+ "learning_rate": 5.567082621285969e-05,
1072
+ "loss": 0.47087574005126953,
1073
+ "step": 685
1074
+ },
1075
+ {
1076
+ "epoch": 1.4526315789473685,
1077
+ "grad_norm": 0.77474045753479,
1078
+ "learning_rate": 5.510583357347149e-05,
1079
+ "loss": 0.48073482513427734,
1080
+ "step": 690
1081
+ },
1082
+ {
1083
+ "epoch": 1.4631578947368422,
1084
+ "grad_norm": 0.8228810429573059,
1085
+ "learning_rate": 5.454018132648897e-05,
1086
+ "loss": 0.46302366256713867,
1087
+ "step": 695
1088
+ },
1089
+ {
1090
+ "epoch": 1.4736842105263157,
1091
+ "grad_norm": 0.8553083539009094,
1092
+ "learning_rate": 5.3973942546859145e-05,
1093
+ "loss": 0.47696647644042967,
1094
+ "step": 700
1095
+ },
1096
+ {
1097
+ "epoch": 1.4736842105263157,
1098
+ "eval_loss": 0.5677127242088318,
1099
+ "eval_runtime": 27.2564,
1100
+ "eval_samples_per_second": 14.675,
1101
+ "eval_steps_per_second": 14.675,
1102
+ "step": 700
1103
+ },
1104
+ {
1105
+ "epoch": 1.4842105263157894,
1106
+ "grad_norm": 0.885428249835968,
1107
+ "learning_rate": 5.3407190385301456e-05,
1108
+ "loss": 0.426132345199585,
1109
+ "step": 705
1110
+ },
1111
+ {
1112
+ "epoch": 1.4947368421052631,
1113
+ "grad_norm": 0.7517284154891968,
1114
+ "learning_rate": 5.283999805885764e-05,
1115
+ "loss": 0.5038762092590332,
1116
+ "step": 710
1117
+ },
1118
+ {
1119
+ "epoch": 1.5052631578947369,
1120
+ "grad_norm": 0.6059720516204834,
1121
+ "learning_rate": 5.227243884143306e-05,
1122
+ "loss": 0.40855984687805175,
1123
+ "step": 715
1124
+ },
1125
+ {
1126
+ "epoch": 1.5157894736842106,
1127
+ "grad_norm": 0.883471667766571,
1128
+ "learning_rate": 5.170458605433059e-05,
1129
+ "loss": 0.48758525848388673,
1130
+ "step": 720
1131
+ },
1132
+ {
1133
+ "epoch": 1.526315789473684,
1134
+ "grad_norm": 0.8542289733886719,
1135
+ "learning_rate": 5.113651305677856e-05,
1136
+ "loss": 0.4801379680633545,
1137
+ "step": 725
1138
+ },
1139
+ {
1140
+ "epoch": 1.5368421052631578,
1141
+ "grad_norm": 0.7095292210578918,
1142
+ "learning_rate": 5.0568293236453614e-05,
1143
+ "loss": 0.4451273441314697,
1144
+ "step": 730
1145
+ },
1146
+ {
1147
+ "epoch": 1.5473684210526315,
1148
+ "grad_norm": 0.7466174960136414,
1149
+ "learning_rate": 5e-05,
1150
+ "loss": 0.4858893871307373,
1151
+ "step": 735
1152
+ },
1153
+ {
1154
+ "epoch": 1.5578947368421052,
1155
+ "grad_norm": 0.8140954971313477,
1156
+ "learning_rate": 4.94317067635464e-05,
1157
+ "loss": 0.5117893695831299,
1158
+ "step": 740
1159
+ },
1160
+ {
1161
+ "epoch": 1.568421052631579,
1162
+ "grad_norm": 0.8628697991371155,
1163
+ "learning_rate": 4.886348694322145e-05,
1164
+ "loss": 0.48410491943359374,
1165
+ "step": 745
1166
+ },
1167
+ {
1168
+ "epoch": 1.5789473684210527,
1169
+ "grad_norm": 0.7672389149665833,
1170
+ "learning_rate": 4.829541394566942e-05,
1171
+ "loss": 0.4889042854309082,
1172
+ "step": 750
1173
+ },
1174
+ {
1175
+ "epoch": 1.5789473684210527,
1176
+ "eval_loss": 0.5602394938468933,
1177
+ "eval_runtime": 27.2938,
1178
+ "eval_samples_per_second": 14.655,
1179
+ "eval_steps_per_second": 14.655,
1180
+ "step": 750
1181
+ },
1182
+ {
1183
+ "epoch": 1.5894736842105264,
1184
+ "grad_norm": 0.8665842413902283,
1185
+ "learning_rate": 4.772756115856695e-05,
1186
+ "loss": 0.4589890480041504,
1187
+ "step": 755
1188
+ },
1189
+ {
1190
+ "epoch": 1.6,
1191
+ "grad_norm": 0.948796808719635,
1192
+ "learning_rate": 4.7160001941142365e-05,
1193
+ "loss": 0.4775981426239014,
1194
+ "step": 760
1195
+ },
1196
+ {
1197
+ "epoch": 1.6105263157894738,
1198
+ "grad_norm": 0.8106200695037842,
1199
+ "learning_rate": 4.6592809614698556e-05,
1200
+ "loss": 0.5602635860443115,
1201
+ "step": 765
1202
+ },
1203
+ {
1204
+ "epoch": 1.6210526315789475,
1205
+ "grad_norm": 1.2499663829803467,
1206
+ "learning_rate": 4.602605745314087e-05,
1207
+ "loss": 0.5022463321685791,
1208
+ "step": 770
1209
+ },
1210
+ {
1211
+ "epoch": 1.631578947368421,
1212
+ "grad_norm": 0.8327662944793701,
1213
+ "learning_rate": 4.545981867351104e-05,
1214
+ "loss": 0.4951312065124512,
1215
+ "step": 775
1216
+ },
1217
+ {
1218
+ "epoch": 1.6421052631578947,
1219
+ "grad_norm": 0.7749590277671814,
1220
+ "learning_rate": 4.4894166426528524e-05,
1221
+ "loss": 0.4875455379486084,
1222
+ "step": 780
1223
+ },
1224
+ {
1225
+ "epoch": 1.6526315789473685,
1226
+ "grad_norm": 0.764395534992218,
1227
+ "learning_rate": 4.432917378714032e-05,
1228
+ "loss": 0.47612872123718264,
1229
+ "step": 785
1230
+ },
1231
+ {
1232
+ "epoch": 1.663157894736842,
1233
+ "grad_norm": 0.8650004863739014,
1234
+ "learning_rate": 4.3764913745080695e-05,
1235
+ "loss": 0.4810147285461426,
1236
+ "step": 790
1237
+ },
1238
+ {
1239
+ "epoch": 1.6736842105263157,
1240
+ "grad_norm": 0.852967381477356,
1241
+ "learning_rate": 4.32014591954418e-05,
1242
+ "loss": 0.46249094009399416,
1243
+ "step": 795
1244
+ },
1245
+ {
1246
+ "epoch": 1.6842105263157894,
1247
+ "grad_norm": 0.752549946308136,
1248
+ "learning_rate": 4.263888292925664e-05,
1249
+ "loss": 0.463092565536499,
1250
+ "step": 800
1251
+ },
1252
+ {
1253
+ "epoch": 1.6842105263157894,
1254
+ "eval_loss": 0.557573139667511,
1255
+ "eval_runtime": 27.1956,
1256
+ "eval_samples_per_second": 14.708,
1257
+ "eval_steps_per_second": 14.708,
1258
+ "step": 800
1259
+ },
1260
+ {
1261
+ "epoch": 1.694736842105263,
1262
+ "grad_norm": 0.7666327953338623,
1263
+ "learning_rate": 4.207725762409529e-05,
1264
+ "loss": 0.549990177154541,
1265
+ "step": 805
1266
+ },
1267
+ {
1268
+ "epoch": 1.7052631578947368,
1269
+ "grad_norm": 1.2041642665863037,
1270
+ "learning_rate": 4.151665583467604e-05,
1271
+ "loss": 0.473134708404541,
1272
+ "step": 810
1273
+ },
1274
+ {
1275
+ "epoch": 1.7157894736842105,
1276
+ "grad_norm": 0.9291930794715881,
1277
+ "learning_rate": 4.095714998349218e-05,
1278
+ "loss": 0.43207721710205077,
1279
+ "step": 815
1280
+ },
1281
+ {
1282
+ "epoch": 1.7263157894736842,
1283
+ "grad_norm": 0.8421230316162109,
1284
+ "learning_rate": 4.0398812351455955e-05,
1285
+ "loss": 0.42284450531005857,
1286
+ "step": 820
1287
+ },
1288
+ {
1289
+ "epoch": 1.736842105263158,
1290
+ "grad_norm": 0.7550533413887024,
1291
+ "learning_rate": 3.9841715068560835e-05,
1292
+ "loss": 0.4533982276916504,
1293
+ "step": 825
1294
+ },
1295
+ {
1296
+ "epoch": 1.7473684210526317,
1297
+ "grad_norm": 0.7380033731460571,
1298
+ "learning_rate": 3.9285930104563234e-05,
1299
+ "loss": 0.47853550910949705,
1300
+ "step": 830
1301
+ },
1302
+ {
1303
+ "epoch": 1.7578947368421054,
1304
+ "grad_norm": 1.0466768741607666,
1305
+ "learning_rate": 3.873152925968495e-05,
1306
+ "loss": 0.5334872245788574,
1307
+ "step": 835
1308
+ },
1309
+ {
1310
+ "epoch": 1.768421052631579,
1311
+ "grad_norm": 0.8049618601799011,
1312
+ "learning_rate": 3.8178584155337525e-05,
1313
+ "loss": 0.4399109363555908,
1314
+ "step": 840
1315
+ },
1316
+ {
1317
+ "epoch": 1.7789473684210526,
1318
+ "grad_norm": 0.7510071992874146,
1319
+ "learning_rate": 3.762716622486965e-05,
1320
+ "loss": 0.521062707901001,
1321
+ "step": 845
1322
+ },
1323
+ {
1324
+ "epoch": 1.7894736842105263,
1325
+ "grad_norm": 1.6552070379257202,
1326
+ "learning_rate": 3.7077346704338935e-05,
1327
+ "loss": 0.45749530792236326,
1328
+ "step": 850
1329
+ },
1330
+ {
1331
+ "epoch": 1.7894736842105263,
1332
+ "eval_loss": 0.552564799785614,
1333
+ "eval_runtime": 27.3375,
1334
+ "eval_samples_per_second": 14.632,
1335
+ "eval_steps_per_second": 14.632,
1336
+ "step": 850
1337
+ },
1338
+ {
1339
+ "epoch": 1.8,
1340
+ "grad_norm": 0.7396476864814758,
1341
+ "learning_rate": 3.6529196623309115e-05,
1342
+ "loss": 0.38660905361175535,
1343
+ "step": 855
1344
+ },
1345
+ {
1346
+ "epoch": 1.8105263157894735,
1347
+ "grad_norm": 0.8277924656867981,
1348
+ "learning_rate": 3.598278679567397e-05,
1349
+ "loss": 0.5064235210418702,
1350
+ "step": 860
1351
+ },
1352
+ {
1353
+ "epoch": 1.8210526315789473,
1354
+ "grad_norm": 0.9554834365844727,
1355
+ "learning_rate": 3.543818781050906e-05,
1356
+ "loss": 0.4140141010284424,
1357
+ "step": 865
1358
+ },
1359
+ {
1360
+ "epoch": 1.831578947368421,
1361
+ "grad_norm": 0.7180286049842834,
1362
+ "learning_rate": 3.4895470022952536e-05,
1363
+ "loss": 0.5401397705078125,
1364
+ "step": 870
1365
+ },
1366
+ {
1367
+ "epoch": 1.8421052631578947,
1368
+ "grad_norm": 0.972764790058136,
1369
+ "learning_rate": 3.4354703545116185e-05,
1370
+ "loss": 0.504509973526001,
1371
+ "step": 875
1372
+ },
1373
+ {
1374
+ "epoch": 1.8526315789473684,
1375
+ "grad_norm": 0.7626535892486572,
1376
+ "learning_rate": 3.381595823702784e-05,
1377
+ "loss": 0.46036224365234374,
1378
+ "step": 880
1379
+ },
1380
+ {
1381
+ "epoch": 1.8631578947368421,
1382
+ "grad_norm": 0.9077037572860718,
1383
+ "learning_rate": 3.3279303697606354e-05,
1384
+ "loss": 0.4127952098846436,
1385
+ "step": 885
1386
+ },
1387
+ {
1388
+ "epoch": 1.8736842105263158,
1389
+ "grad_norm": 0.764255702495575,
1390
+ "learning_rate": 3.274480925567036e-05,
1391
+ "loss": 0.4129067897796631,
1392
+ "step": 890
1393
+ },
1394
+ {
1395
+ "epoch": 1.8842105263157896,
1396
+ "grad_norm": 0.9645035266876221,
1397
+ "learning_rate": 3.2212543960981845e-05,
1398
+ "loss": 0.486614990234375,
1399
+ "step": 895
1400
+ },
1401
+ {
1402
+ "epoch": 1.8947368421052633,
1403
+ "grad_norm": 0.7822158932685852,
1404
+ "learning_rate": 3.168257657532584e-05,
1405
+ "loss": 0.43874049186706543,
1406
+ "step": 900
1407
+ },
1408
+ {
1409
+ "epoch": 1.8947368421052633,
1410
+ "eval_loss": 0.5511002540588379,
1411
+ "eval_runtime": 27.8563,
1412
+ "eval_samples_per_second": 14.359,
1413
+ "eval_steps_per_second": 14.359,
1414
+ "step": 900
1415
+ },
1416
+ {
1417
+ "epoch": 1.905263157894737,
1418
+ "grad_norm": 0.823441207408905,
1419
+ "learning_rate": 3.115497556362727e-05,
1420
+ "loss": 0.4594260692596436,
1421
+ "step": 905
1422
+ },
1423
+ {
1424
+ "epoch": 1.9157894736842105,
1425
+ "grad_norm": 0.821818470954895,
1426
+ "learning_rate": 3.06298090851062e-05,
1427
+ "loss": 0.4467416763305664,
1428
+ "step": 910
1429
+ },
1430
+ {
1431
+ "epoch": 1.9263157894736842,
1432
+ "grad_norm": 0.8790761232376099,
1433
+ "learning_rate": 3.0107144984472502e-05,
1434
+ "loss": 0.4823316097259521,
1435
+ "step": 915
1436
+ },
1437
+ {
1438
+ "epoch": 1.936842105263158,
1439
+ "grad_norm": 0.7914945483207703,
1440
+ "learning_rate": 2.9587050783161252e-05,
1441
+ "loss": 0.4314936637878418,
1442
+ "step": 920
1443
+ },
1444
+ {
1445
+ "epoch": 1.9473684210526314,
1446
+ "grad_norm": 0.805029571056366,
1447
+ "learning_rate": 2.9069593670609775e-05,
1448
+ "loss": 0.4740307331085205,
1449
+ "step": 925
1450
+ },
1451
+ {
1452
+ "epoch": 1.9578947368421051,
1453
+ "grad_norm": 0.7928342223167419,
1454
+ "learning_rate": 2.8554840495577682e-05,
1455
+ "loss": 0.4155329704284668,
1456
+ "step": 930
1457
+ },
1458
+ {
1459
+ "epoch": 1.9684210526315788,
1460
+ "grad_norm": 0.8041934370994568,
1461
+ "learning_rate": 2.8042857757510877e-05,
1462
+ "loss": 0.5049230098724365,
1463
+ "step": 935
1464
+ },
1465
+ {
1466
+ "epoch": 1.9789473684210526,
1467
+ "grad_norm": 0.8169903755187988,
1468
+ "learning_rate": 2.753371159795065e-05,
1469
+ "loss": 0.3966445684432983,
1470
+ "step": 940
1471
+ },
1472
+ {
1473
+ "epoch": 1.9894736842105263,
1474
+ "grad_norm": 0.86372309923172,
1475
+ "learning_rate": 2.702746779198912e-05,
1476
+ "loss": 0.5153264999389648,
1477
+ "step": 945
1478
+ },
1479
+ {
1480
+ "epoch": 2.0,
1481
+ "grad_norm": 0.97676020860672,
1482
+ "learning_rate": 2.6524191739771815e-05,
1483
+ "loss": 0.4318437099456787,
1484
+ "step": 950
1485
+ },
1486
+ {
1487
+ "epoch": 2.0,
1488
+ "eval_loss": 0.5508978962898254,
1489
+ "eval_runtime": 27.8163,
1490
+ "eval_samples_per_second": 14.38,
1491
+ "eval_steps_per_second": 14.38,
1492
+ "step": 950
1493
+ }
1494
+ ],
1495
+ "logging_steps": 5,
1496
+ "max_steps": 1425,
1497
+ "num_input_tokens_seen": 0,
1498
+ "num_train_epochs": 3,
1499
+ "save_steps": 50,
1500
+ "stateful_callbacks": {
1501
+ "TrainerControl": {
1502
+ "args": {
1503
+ "should_epoch_stop": false,
1504
+ "should_evaluate": false,
1505
+ "should_log": false,
1506
+ "should_save": true,
1507
+ "should_training_stop": false
1508
+ },
1509
+ "attributes": {}
1510
+ }
1511
+ },
1512
+ "total_flos": 1.602735927581737e+17,
1513
+ "train_batch_size": 1,
1514
+ "trial_name": null,
1515
+ "trial_params": null
1516
+ }
checkpoint-950/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:757b7d78e07bd589f7cd9db1a1a3019f58127f01f91cba75e4a6cbb7ea4b4a6c
3
+ size 5713