danhtran2mind commited on
Commit
ab08583
·
verified ·
1 Parent(s): 7c76e19

Add files using upload-large-folder tool

Browse files
Files changed (44) hide show
  1. .gitattributes +3 -0
  2. README.md +60 -0
  3. adapter_config.json +29 -0
  4. adapter_model.safetensors +3 -0
  5. added_tokens.json +3 -0
  6. chat_template.jinja +47 -0
  7. checkpoint-5200/README.md +202 -0
  8. checkpoint-5200/adapter_config.json +29 -0
  9. checkpoint-5200/adapter_model.safetensors +3 -0
  10. checkpoint-5200/added_tokens.json +3 -0
  11. checkpoint-5200/chat_template.jinja +47 -0
  12. checkpoint-5200/optimizer.pt +3 -0
  13. checkpoint-5200/preprocessor_config.json +29 -0
  14. checkpoint-5200/processor_config.json +4 -0
  15. checkpoint-5200/rng_state.pth +3 -0
  16. checkpoint-5200/scheduler.pt +3 -0
  17. checkpoint-5200/special_tokens_map.json +33 -0
  18. checkpoint-5200/tokenizer.json +3 -0
  19. checkpoint-5200/tokenizer.model +3 -0
  20. checkpoint-5200/tokenizer_config.json +0 -0
  21. checkpoint-5200/trainer_state.json +970 -0
  22. checkpoint-5200/training_args.bin +3 -0
  23. checkpoint-5298/README.md +202 -0
  24. checkpoint-5298/adapter_config.json +29 -0
  25. checkpoint-5298/adapter_model.safetensors +3 -0
  26. checkpoint-5298/added_tokens.json +3 -0
  27. checkpoint-5298/chat_template.jinja +47 -0
  28. checkpoint-5298/optimizer.pt +3 -0
  29. checkpoint-5298/preprocessor_config.json +29 -0
  30. checkpoint-5298/processor_config.json +4 -0
  31. checkpoint-5298/rng_state.pth +3 -0
  32. checkpoint-5298/scheduler.pt +3 -0
  33. checkpoint-5298/special_tokens_map.json +33 -0
  34. checkpoint-5298/tokenizer.json +3 -0
  35. checkpoint-5298/tokenizer.model +3 -0
  36. checkpoint-5298/tokenizer_config.json +0 -0
  37. checkpoint-5298/trainer_state.json +977 -0
  38. checkpoint-5298/training_args.bin +3 -0
  39. preprocessor_config.json +29 -0
  40. processor_config.json +4 -0
  41. special_tokens_map.json +33 -0
  42. tokenizer.json +3 -0
  43. tokenizer.model +3 -0
  44. tokenizer_config.json +0 -0
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
37
+ checkpoint-5298/tokenizer.json filter=lfs diff=lfs merge=lfs -text
38
+ checkpoint-5200/tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-3-4b-it-unsloth-bnb-4bit
3
+ library_name: peft
4
+ model_name: Gemma-3-4B-it-Medical-LoRA
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - unsloth
9
+ - sft
10
+ licence: license
11
+ ---
12
+
13
+ # Model Card for Gemma-3-4B-it-Medical-LoRA
14
+
15
+ This model is a fine-tuned version of [unsloth/gemma-3-4b-it-unsloth-bnb-4bit](https://huggingface.co/unsloth/gemma-3-4b-it-unsloth-bnb-4bit).
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
+ - PEFT 0.14.0
39
+ - TRL: 0.19.0
40
+ - Transformers: 4.52.4
41
+ - Pytorch: 2.6.0+cu124
42
+ - Datasets: 3.6.0
43
+ - Tokenizers: 0.21.1
44
+
45
+ ## Citations
46
+
47
+
48
+
49
+ Cite TRL as:
50
+
51
+ ```bibtex
52
+ @misc{vonwerra2022trl,
53
+ title = {{TRL: Transformer Reinforcement Learning}},
54
+ 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},
55
+ year = 2020,
56
+ journal = {GitHub repository},
57
+ publisher = {GitHub},
58
+ howpublished = {\url{https://github.com/huggingface/trl}}
59
+ }
60
+ ```
adapter_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/gemma-3-4b-it-unsloth-bnb-4bit",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 8,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense).*?(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj).*?)|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense)\\.(?:(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj)))",
26
+ "task_type": "CAUSAL_LM",
27
+ "use_dora": false,
28
+ "use_rslora": false
29
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7cbf3c9a6c6fe1f066f06d0a648ce613cbc07b7128188dc3304d2a595546f85
3
+ size 119280712
added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{ '<start_of_turn>model
46
+ ' }}
47
+ {%- endif -%}
checkpoint-5200/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-3-4b-it-unsloth-bnb-4bit
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- 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. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ 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).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.14.0
checkpoint-5200/adapter_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/gemma-3-4b-it-unsloth-bnb-4bit",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 8,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense).*?(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj).*?)|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense)\\.(?:(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj)))",
26
+ "task_type": "CAUSAL_LM",
27
+ "use_dora": false,
28
+ "use_rslora": false
29
+ }
checkpoint-5200/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b16bf871837532892b2847d2e89d946113e3f0db14b737a62604528d405ddd5
3
+ size 119280712
checkpoint-5200/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
checkpoint-5200/chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{ '<start_of_turn>model
46
+ ' }}
47
+ {%- endif -%}
checkpoint-5200/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39a4f7bddb99975a7d3ceb2d23a97fc93d9a3d81a9511ac536117035d116a873
3
+ size 62332474
checkpoint-5200/preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_pan_and_scan": null,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_processor_type": "Gemma3ImageProcessor",
13
+ "image_seq_length": 256,
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "pan_and_scan_max_num_crops": null,
20
+ "pan_and_scan_min_crop_size": null,
21
+ "pan_and_scan_min_ratio_to_activate": null,
22
+ "processor_class": "Gemma3Processor",
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 896,
27
+ "width": 896
28
+ }
29
+ }
checkpoint-5200/processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_length": 256,
3
+ "processor_class": "Gemma3Processor"
4
+ }
checkpoint-5200/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27a79239f98d586c6d293becfe4724cb48ad892f743d1e770886cde54b3333d6
3
+ size 14244
checkpoint-5200/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a429a42158a31c11b8843cdeec4402cd147056e0b212dd4ad5498a298f2e5b94
3
+ size 1064
checkpoint-5200/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<end_of_turn>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
checkpoint-5200/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-5200/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-5200/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-5200/trainer_state.json ADDED
@@ -0,0 +1,970 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 200,
3
+ "best_metric": 0.5003665089607239,
4
+ "best_model_checkpoint": "Gemma-3-4B-it-Medical-LoRA/checkpoint-200",
5
+ "epoch": 5.889266496743132,
6
+ "eval_steps": 200,
7
+ "global_step": 5200,
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.05664117813650524,
14
+ "grad_norm": 0.522846519947052,
15
+ "learning_rate": 0.0001955451348182884,
16
+ "loss": 0.7569,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.11328235627301048,
21
+ "grad_norm": 0.4961966276168823,
22
+ "learning_rate": 0.00018382180539273154,
23
+ "loss": 0.4753,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.16992353440951571,
28
+ "grad_norm": 0.512007474899292,
29
+ "learning_rate": 0.00017209847596717467,
30
+ "loss": 0.5535,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.22656471254602095,
35
+ "grad_norm": 0.8278496861457825,
36
+ "learning_rate": 0.00016037514654161782,
37
+ "loss": 0.5582,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.22656471254602095,
42
+ "eval_loss": 0.5003665089607239,
43
+ "eval_runtime": 566.8557,
44
+ "eval_samples_per_second": 2.768,
45
+ "eval_steps_per_second": 0.693,
46
+ "step": 200
47
+ },
48
+ {
49
+ "epoch": 0.2832058906825262,
50
+ "grad_norm": 0.8043648600578308,
51
+ "learning_rate": 0.00014865181711606098,
52
+ "loss": 0.538,
53
+ "step": 250
54
+ },
55
+ {
56
+ "epoch": 0.33984706881903143,
57
+ "grad_norm": 0.8642493486404419,
58
+ "learning_rate": 0.0001369284876905041,
59
+ "loss": 0.5074,
60
+ "step": 300
61
+ },
62
+ {
63
+ "epoch": 0.3964882469555367,
64
+ "grad_norm": 0.5464778542518616,
65
+ "learning_rate": 0.00012520515826494724,
66
+ "loss": 0.4882,
67
+ "step": 350
68
+ },
69
+ {
70
+ "epoch": 0.4531294250920419,
71
+ "grad_norm": 0.8210390210151672,
72
+ "learning_rate": 0.0001134818288393904,
73
+ "loss": 0.5102,
74
+ "step": 400
75
+ },
76
+ {
77
+ "epoch": 0.4531294250920419,
78
+ "eval_loss": 0.5287922620773315,
79
+ "eval_runtime": 545.4754,
80
+ "eval_samples_per_second": 2.876,
81
+ "eval_steps_per_second": 0.72,
82
+ "step": 400
83
+ },
84
+ {
85
+ "epoch": 0.5097706032285472,
86
+ "grad_norm": 0.9310616850852966,
87
+ "learning_rate": 0.00010175849941383353,
88
+ "loss": 0.5139,
89
+ "step": 450
90
+ },
91
+ {
92
+ "epoch": 0.5664117813650524,
93
+ "grad_norm": 1.1925888061523438,
94
+ "learning_rate": 9.003516998827668e-05,
95
+ "loss": 0.5748,
96
+ "step": 500
97
+ },
98
+ {
99
+ "epoch": 0.6230529595015576,
100
+ "grad_norm": 1.2190861701965332,
101
+ "learning_rate": 7.831184056271981e-05,
102
+ "loss": 0.53,
103
+ "step": 550
104
+ },
105
+ {
106
+ "epoch": 0.6796941376380629,
107
+ "grad_norm": 0.9308417439460754,
108
+ "learning_rate": 6.658851113716296e-05,
109
+ "loss": 0.528,
110
+ "step": 600
111
+ },
112
+ {
113
+ "epoch": 0.6796941376380629,
114
+ "eval_loss": 0.535805881023407,
115
+ "eval_runtime": 545.9453,
116
+ "eval_samples_per_second": 2.874,
117
+ "eval_steps_per_second": 0.72,
118
+ "step": 600
119
+ },
120
+ {
121
+ "epoch": 0.7363353157745681,
122
+ "grad_norm": 1.1482899188995361,
123
+ "learning_rate": 5.486518171160609e-05,
124
+ "loss": 0.5532,
125
+ "step": 650
126
+ },
127
+ {
128
+ "epoch": 0.7929764939110734,
129
+ "grad_norm": 1.6465129852294922,
130
+ "learning_rate": 4.3141852286049237e-05,
131
+ "loss": 0.5838,
132
+ "step": 700
133
+ },
134
+ {
135
+ "epoch": 0.8496176720475785,
136
+ "grad_norm": 1.1552118062973022,
137
+ "learning_rate": 3.1418522860492386e-05,
138
+ "loss": 0.5483,
139
+ "step": 750
140
+ },
141
+ {
142
+ "epoch": 0.9062588501840838,
143
+ "grad_norm": 1.138253927230835,
144
+ "learning_rate": 1.9695193434935523e-05,
145
+ "loss": 0.5188,
146
+ "step": 800
147
+ },
148
+ {
149
+ "epoch": 0.9062588501840838,
150
+ "eval_loss": 0.5232300162315369,
151
+ "eval_runtime": 545.2326,
152
+ "eval_samples_per_second": 2.878,
153
+ "eval_steps_per_second": 0.721,
154
+ "step": 800
155
+ },
156
+ {
157
+ "epoch": 0.9629000283205891,
158
+ "grad_norm": 1.1961596012115479,
159
+ "learning_rate": 7.971864009378664e-06,
160
+ "loss": 0.5166,
161
+ "step": 850
162
+ },
163
+ {
164
+ "epoch": 1.0192580005664118,
165
+ "grad_norm": 1.1366384029388428,
166
+ "learning_rate": 9.988479262672812e-05,
167
+ "loss": 0.4523,
168
+ "step": 900
169
+ },
170
+ {
171
+ "epoch": 1.075899178702917,
172
+ "grad_norm": 1.1627408266067505,
173
+ "learning_rate": 9.412442396313365e-05,
174
+ "loss": 0.467,
175
+ "step": 950
176
+ },
177
+ {
178
+ "epoch": 1.1325403568394223,
179
+ "grad_norm": 1.2404801845550537,
180
+ "learning_rate": 8.836405529953917e-05,
181
+ "loss": 0.4521,
182
+ "step": 1000
183
+ },
184
+ {
185
+ "epoch": 1.1325403568394223,
186
+ "eval_loss": 0.5426932573318481,
187
+ "eval_runtime": 653.831,
188
+ "eval_samples_per_second": 2.4,
189
+ "eval_steps_per_second": 0.601,
190
+ "step": 1000
191
+ },
192
+ {
193
+ "epoch": 1.1891815349759276,
194
+ "grad_norm": 1.0068233013153076,
195
+ "learning_rate": 8.26036866359447e-05,
196
+ "loss": 0.4965,
197
+ "step": 1050
198
+ },
199
+ {
200
+ "epoch": 1.2458227131124326,
201
+ "grad_norm": 1.3524373769760132,
202
+ "learning_rate": 7.684331797235024e-05,
203
+ "loss": 0.4658,
204
+ "step": 1100
205
+ },
206
+ {
207
+ "epoch": 1.302463891248938,
208
+ "grad_norm": 1.291171908378601,
209
+ "learning_rate": 7.108294930875576e-05,
210
+ "loss": 0.4945,
211
+ "step": 1150
212
+ },
213
+ {
214
+ "epoch": 1.3591050693854432,
215
+ "grad_norm": 1.673529028892517,
216
+ "learning_rate": 6.532258064516129e-05,
217
+ "loss": 0.4919,
218
+ "step": 1200
219
+ },
220
+ {
221
+ "epoch": 1.3591050693854432,
222
+ "eval_loss": 0.5525731444358826,
223
+ "eval_runtime": 637.1064,
224
+ "eval_samples_per_second": 2.463,
225
+ "eval_steps_per_second": 0.617,
226
+ "step": 1200
227
+ },
228
+ {
229
+ "epoch": 1.4157462475219484,
230
+ "grad_norm": 1.0850290060043335,
231
+ "learning_rate": 5.956221198156682e-05,
232
+ "loss": 0.4912,
233
+ "step": 1250
234
+ },
235
+ {
236
+ "epoch": 1.4723874256584537,
237
+ "grad_norm": 1.318361759185791,
238
+ "learning_rate": 5.3801843317972355e-05,
239
+ "loss": 0.46,
240
+ "step": 1300
241
+ },
242
+ {
243
+ "epoch": 1.529028603794959,
244
+ "grad_norm": 1.5087871551513672,
245
+ "learning_rate": 4.8041474654377885e-05,
246
+ "loss": 0.4977,
247
+ "step": 1350
248
+ },
249
+ {
250
+ "epoch": 1.5856697819314642,
251
+ "grad_norm": 1.5589851140975952,
252
+ "learning_rate": 4.228110599078341e-05,
253
+ "loss": 0.4558,
254
+ "step": 1400
255
+ },
256
+ {
257
+ "epoch": 1.5856697819314642,
258
+ "eval_loss": 0.5318325161933899,
259
+ "eval_runtime": 633.698,
260
+ "eval_samples_per_second": 2.476,
261
+ "eval_steps_per_second": 0.62,
262
+ "step": 1400
263
+ },
264
+ {
265
+ "epoch": 1.6423109600679693,
266
+ "grad_norm": 1.1275252103805542,
267
+ "learning_rate": 3.6520737327188945e-05,
268
+ "loss": 0.4792,
269
+ "step": 1450
270
+ },
271
+ {
272
+ "epoch": 1.6989521382044748,
273
+ "grad_norm": 1.3600178956985474,
274
+ "learning_rate": 3.076036866359447e-05,
275
+ "loss": 0.4796,
276
+ "step": 1500
277
+ },
278
+ {
279
+ "epoch": 1.7555933163409798,
280
+ "grad_norm": 1.4632591009140015,
281
+ "learning_rate": 2.5e-05,
282
+ "loss": 0.4787,
283
+ "step": 1550
284
+ },
285
+ {
286
+ "epoch": 1.812234494477485,
287
+ "grad_norm": 1.3220279216766357,
288
+ "learning_rate": 1.923963133640553e-05,
289
+ "loss": 0.4785,
290
+ "step": 1600
291
+ },
292
+ {
293
+ "epoch": 1.812234494477485,
294
+ "eval_loss": 0.5232844352722168,
295
+ "eval_runtime": 633.2557,
296
+ "eval_samples_per_second": 2.478,
297
+ "eval_steps_per_second": 0.621,
298
+ "step": 1600
299
+ },
300
+ {
301
+ "epoch": 1.8688756726139903,
302
+ "grad_norm": 1.71708083152771,
303
+ "learning_rate": 1.3479262672811061e-05,
304
+ "loss": 0.4901,
305
+ "step": 1650
306
+ },
307
+ {
308
+ "epoch": 1.9255168507504956,
309
+ "grad_norm": 1.0889732837677002,
310
+ "learning_rate": 7.71889400921659e-06,
311
+ "loss": 0.475,
312
+ "step": 1700
313
+ },
314
+ {
315
+ "epoch": 1.9821580288870009,
316
+ "grad_norm": 1.226163387298584,
317
+ "learning_rate": 1.9585253456221198e-06,
318
+ "loss": 0.4729,
319
+ "step": 1750
320
+ },
321
+ {
322
+ "epoch": 2.0385160011328236,
323
+ "grad_norm": 1.93405020236969,
324
+ "learning_rate": 6.491027109583811e-05,
325
+ "loss": 0.3981,
326
+ "step": 1800
327
+ },
328
+ {
329
+ "epoch": 2.0385160011328236,
330
+ "eval_loss": 0.534080982208252,
331
+ "eval_runtime": 635.9448,
332
+ "eval_samples_per_second": 2.467,
333
+ "eval_steps_per_second": 0.618,
334
+ "step": 1800
335
+ },
336
+ {
337
+ "epoch": 2.0951571792693287,
338
+ "grad_norm": 1.4278013706207275,
339
+ "learning_rate": 6.109201985490646e-05,
340
+ "loss": 0.4229,
341
+ "step": 1850
342
+ },
343
+ {
344
+ "epoch": 2.151798357405834,
345
+ "grad_norm": 1.6030181646347046,
346
+ "learning_rate": 5.72737686139748e-05,
347
+ "loss": 0.4363,
348
+ "step": 1900
349
+ },
350
+ {
351
+ "epoch": 2.208439535542339,
352
+ "grad_norm": 1.3467751741409302,
353
+ "learning_rate": 5.345551737304315e-05,
354
+ "loss": 0.425,
355
+ "step": 1950
356
+ },
357
+ {
358
+ "epoch": 2.2650807136788447,
359
+ "grad_norm": 1.390838623046875,
360
+ "learning_rate": 4.963726613211149e-05,
361
+ "loss": 0.4185,
362
+ "step": 2000
363
+ },
364
+ {
365
+ "epoch": 2.2650807136788447,
366
+ "eval_loss": 0.5372938513755798,
367
+ "eval_runtime": 635.7783,
368
+ "eval_samples_per_second": 2.468,
369
+ "eval_steps_per_second": 0.618,
370
+ "step": 2000
371
+ },
372
+ {
373
+ "epoch": 2.3217218918153497,
374
+ "grad_norm": 1.3252273797988892,
375
+ "learning_rate": 4.581901489117984e-05,
376
+ "loss": 0.43,
377
+ "step": 2050
378
+ },
379
+ {
380
+ "epoch": 2.378363069951855,
381
+ "grad_norm": 1.2557967901229858,
382
+ "learning_rate": 4.2000763650248184e-05,
383
+ "loss": 0.4386,
384
+ "step": 2100
385
+ },
386
+ {
387
+ "epoch": 2.4350042480883602,
388
+ "grad_norm": 1.649653434753418,
389
+ "learning_rate": 3.818251240931654e-05,
390
+ "loss": 0.4273,
391
+ "step": 2150
392
+ },
393
+ {
394
+ "epoch": 2.4916454262248653,
395
+ "grad_norm": 1.5756187438964844,
396
+ "learning_rate": 3.4364261168384884e-05,
397
+ "loss": 0.3909,
398
+ "step": 2200
399
+ },
400
+ {
401
+ "epoch": 2.4916454262248653,
402
+ "eval_loss": 0.542982280254364,
403
+ "eval_runtime": 635.1617,
404
+ "eval_samples_per_second": 2.47,
405
+ "eval_steps_per_second": 0.619,
406
+ "step": 2200
407
+ },
408
+ {
409
+ "epoch": 2.5482866043613708,
410
+ "grad_norm": 1.4305800199508667,
411
+ "learning_rate": 3.054600992745323e-05,
412
+ "loss": 0.4111,
413
+ "step": 2250
414
+ },
415
+ {
416
+ "epoch": 2.604927782497876,
417
+ "grad_norm": 1.4521535634994507,
418
+ "learning_rate": 2.6727758686521576e-05,
419
+ "loss": 0.4402,
420
+ "step": 2300
421
+ },
422
+ {
423
+ "epoch": 2.6615689606343813,
424
+ "grad_norm": 1.3872359991073608,
425
+ "learning_rate": 2.290950744558992e-05,
426
+ "loss": 0.4293,
427
+ "step": 2350
428
+ },
429
+ {
430
+ "epoch": 2.7182101387708864,
431
+ "grad_norm": 1.6272056102752686,
432
+ "learning_rate": 1.909125620465827e-05,
433
+ "loss": 0.4145,
434
+ "step": 2400
435
+ },
436
+ {
437
+ "epoch": 2.7182101387708864,
438
+ "eval_loss": 0.5353428721427917,
439
+ "eval_runtime": 628.4439,
440
+ "eval_samples_per_second": 2.497,
441
+ "eval_steps_per_second": 0.625,
442
+ "step": 2400
443
+ },
444
+ {
445
+ "epoch": 2.774851316907392,
446
+ "grad_norm": 1.1917740106582642,
447
+ "learning_rate": 1.5273004963726615e-05,
448
+ "loss": 0.4022,
449
+ "step": 2450
450
+ },
451
+ {
452
+ "epoch": 2.831492495043897,
453
+ "grad_norm": 1.5548139810562134,
454
+ "learning_rate": 1.145475372279496e-05,
455
+ "loss": 0.4155,
456
+ "step": 2500
457
+ },
458
+ {
459
+ "epoch": 2.888133673180402,
460
+ "grad_norm": 2.0399019718170166,
461
+ "learning_rate": 7.636502481863307e-06,
462
+ "loss": 0.4169,
463
+ "step": 2550
464
+ },
465
+ {
466
+ "epoch": 2.9447748513169074,
467
+ "grad_norm": 1.6849918365478516,
468
+ "learning_rate": 3.818251240931654e-06,
469
+ "loss": 0.4145,
470
+ "step": 2600
471
+ },
472
+ {
473
+ "epoch": 2.9447748513169074,
474
+ "eval_loss": 0.5327087640762329,
475
+ "eval_runtime": 636.4789,
476
+ "eval_samples_per_second": 2.465,
477
+ "eval_steps_per_second": 0.617,
478
+ "step": 2600
479
+ },
480
+ {
481
+ "epoch": 3.00113282356273,
482
+ "grad_norm": 1.1705021858215332,
483
+ "learning_rate": 0.0,
484
+ "loss": 0.3254,
485
+ "step": 2650
486
+ },
487
+ {
488
+ "epoch": 3.057774001699235,
489
+ "grad_norm": 1.3165022134780884,
490
+ "learning_rate": 4.757281553398059e-05,
491
+ "loss": 0.367,
492
+ "step": 2700
493
+ },
494
+ {
495
+ "epoch": 3.1144151798357407,
496
+ "grad_norm": 1.557210922241211,
497
+ "learning_rate": 4.4717304397487155e-05,
498
+ "loss": 0.3588,
499
+ "step": 2750
500
+ },
501
+ {
502
+ "epoch": 3.1710563579722457,
503
+ "grad_norm": 1.7867581844329834,
504
+ "learning_rate": 4.186179326099372e-05,
505
+ "loss": 0.3761,
506
+ "step": 2800
507
+ },
508
+ {
509
+ "epoch": 3.1710563579722457,
510
+ "eval_loss": 0.555277407169342,
511
+ "eval_runtime": 631.0969,
512
+ "eval_samples_per_second": 2.486,
513
+ "eval_steps_per_second": 0.623,
514
+ "step": 2800
515
+ },
516
+ {
517
+ "epoch": 3.227697536108751,
518
+ "grad_norm": 1.8431845903396606,
519
+ "learning_rate": 3.900628212450029e-05,
520
+ "loss": 0.402,
521
+ "step": 2850
522
+ },
523
+ {
524
+ "epoch": 3.2843387142452563,
525
+ "grad_norm": 2.415738344192505,
526
+ "learning_rate": 3.6150770988006854e-05,
527
+ "loss": 0.3614,
528
+ "step": 2900
529
+ },
530
+ {
531
+ "epoch": 3.3409798923817613,
532
+ "grad_norm": 1.8246201276779175,
533
+ "learning_rate": 3.329525985151342e-05,
534
+ "loss": 0.3896,
535
+ "step": 2950
536
+ },
537
+ {
538
+ "epoch": 3.397621070518267,
539
+ "grad_norm": 1.1022515296936035,
540
+ "learning_rate": 3.043974871501999e-05,
541
+ "loss": 0.3746,
542
+ "step": 3000
543
+ },
544
+ {
545
+ "epoch": 3.397621070518267,
546
+ "eval_loss": 0.5586006045341492,
547
+ "eval_runtime": 613.6818,
548
+ "eval_samples_per_second": 2.557,
549
+ "eval_steps_per_second": 0.64,
550
+ "step": 3000
551
+ },
552
+ {
553
+ "epoch": 3.454262248654772,
554
+ "grad_norm": 2.3615689277648926,
555
+ "learning_rate": 2.7584237578526556e-05,
556
+ "loss": 0.3748,
557
+ "step": 3050
558
+ },
559
+ {
560
+ "epoch": 3.5109034267912773,
561
+ "grad_norm": 2.1353960037231445,
562
+ "learning_rate": 2.4728726442033126e-05,
563
+ "loss": 0.38,
564
+ "step": 3100
565
+ },
566
+ {
567
+ "epoch": 3.5675446049277824,
568
+ "grad_norm": 1.7389541864395142,
569
+ "learning_rate": 2.1873215305539692e-05,
570
+ "loss": 0.3816,
571
+ "step": 3150
572
+ },
573
+ {
574
+ "epoch": 3.624185783064288,
575
+ "grad_norm": 1.8731958866119385,
576
+ "learning_rate": 1.9017704169046262e-05,
577
+ "loss": 0.388,
578
+ "step": 3200
579
+ },
580
+ {
581
+ "epoch": 3.624185783064288,
582
+ "eval_loss": 0.5509854555130005,
583
+ "eval_runtime": 605.0872,
584
+ "eval_samples_per_second": 2.593,
585
+ "eval_steps_per_second": 0.649,
586
+ "step": 3200
587
+ },
588
+ {
589
+ "epoch": 3.680826961200793,
590
+ "grad_norm": 1.814975380897522,
591
+ "learning_rate": 1.6162193032552828e-05,
592
+ "loss": 0.3897,
593
+ "step": 3250
594
+ },
595
+ {
596
+ "epoch": 3.7374681393372984,
597
+ "grad_norm": 1.8525991439819336,
598
+ "learning_rate": 1.3306681896059394e-05,
599
+ "loss": 0.3931,
600
+ "step": 3300
601
+ },
602
+ {
603
+ "epoch": 3.7941093174738034,
604
+ "grad_norm": 2.1449315547943115,
605
+ "learning_rate": 1.0451170759565964e-05,
606
+ "loss": 0.3987,
607
+ "step": 3350
608
+ },
609
+ {
610
+ "epoch": 3.850750495610309,
611
+ "grad_norm": 1.2358556985855103,
612
+ "learning_rate": 7.59565962307253e-06,
613
+ "loss": 0.3695,
614
+ "step": 3400
615
+ },
616
+ {
617
+ "epoch": 3.850750495610309,
618
+ "eval_loss": 0.5485390424728394,
619
+ "eval_runtime": 606.2751,
620
+ "eval_samples_per_second": 2.588,
621
+ "eval_steps_per_second": 0.648,
622
+ "step": 3400
623
+ },
624
+ {
625
+ "epoch": 3.907391673746814,
626
+ "grad_norm": 2.7738165855407715,
627
+ "learning_rate": 4.7401484865790974e-06,
628
+ "loss": 0.3841,
629
+ "step": 3450
630
+ },
631
+ {
632
+ "epoch": 3.964032851883319,
633
+ "grad_norm": 2.6049118041992188,
634
+ "learning_rate": 1.8846373500856656e-06,
635
+ "loss": 0.3742,
636
+ "step": 3500
637
+ },
638
+ {
639
+ "epoch": 4.020390824129142,
640
+ "grad_norm": 1.459250569343567,
641
+ "learning_rate": 6.64009111617312e-05,
642
+ "loss": 0.3493,
643
+ "step": 3550
644
+ },
645
+ {
646
+ "epoch": 4.077032002265647,
647
+ "grad_norm": 1.3481236696243286,
648
+ "learning_rate": 6.450265755504936e-05,
649
+ "loss": 0.3414,
650
+ "step": 3600
651
+ },
652
+ {
653
+ "epoch": 4.077032002265647,
654
+ "eval_loss": 0.5706936717033386,
655
+ "eval_runtime": 626.8261,
656
+ "eval_samples_per_second": 2.503,
657
+ "eval_steps_per_second": 0.627,
658
+ "step": 3600
659
+ },
660
+ {
661
+ "epoch": 4.133673180402153,
662
+ "grad_norm": 1.5863535404205322,
663
+ "learning_rate": 6.260440394836751e-05,
664
+ "loss": 0.3964,
665
+ "step": 3650
666
+ },
667
+ {
668
+ "epoch": 4.190314358538657,
669
+ "grad_norm": 1.4147838354110718,
670
+ "learning_rate": 6.070615034168565e-05,
671
+ "loss": 0.3688,
672
+ "step": 3700
673
+ },
674
+ {
675
+ "epoch": 4.246955536675163,
676
+ "grad_norm": 1.7272146940231323,
677
+ "learning_rate": 5.88078967350038e-05,
678
+ "loss": 0.3554,
679
+ "step": 3750
680
+ },
681
+ {
682
+ "epoch": 4.303596714811668,
683
+ "grad_norm": 1.7022188901901245,
684
+ "learning_rate": 5.6909643128321947e-05,
685
+ "loss": 0.362,
686
+ "step": 3800
687
+ },
688
+ {
689
+ "epoch": 4.303596714811668,
690
+ "eval_loss": 0.5747559070587158,
691
+ "eval_runtime": 603.0566,
692
+ "eval_samples_per_second": 2.602,
693
+ "eval_steps_per_second": 0.652,
694
+ "step": 3800
695
+ },
696
+ {
697
+ "epoch": 4.360237892948174,
698
+ "grad_norm": 1.8977692127227783,
699
+ "learning_rate": 5.501138952164009e-05,
700
+ "loss": 0.3787,
701
+ "step": 3850
702
+ },
703
+ {
704
+ "epoch": 4.416879071084678,
705
+ "grad_norm": 1.7641384601593018,
706
+ "learning_rate": 5.311313591495825e-05,
707
+ "loss": 0.417,
708
+ "step": 3900
709
+ },
710
+ {
711
+ "epoch": 4.473520249221184,
712
+ "grad_norm": 1.6231164932250977,
713
+ "learning_rate": 5.121488230827639e-05,
714
+ "loss": 0.3691,
715
+ "step": 3950
716
+ },
717
+ {
718
+ "epoch": 4.530161427357689,
719
+ "grad_norm": 1.8207956552505493,
720
+ "learning_rate": 4.9316628701594535e-05,
721
+ "loss": 0.3806,
722
+ "step": 4000
723
+ },
724
+ {
725
+ "epoch": 4.530161427357689,
726
+ "eval_loss": 0.5716577768325806,
727
+ "eval_runtime": 602.7077,
728
+ "eval_samples_per_second": 2.603,
729
+ "eval_steps_per_second": 0.652,
730
+ "step": 4000
731
+ },
732
+ {
733
+ "epoch": 4.586802605494194,
734
+ "grad_norm": 1.501741886138916,
735
+ "learning_rate": 4.741837509491268e-05,
736
+ "loss": 0.3787,
737
+ "step": 4050
738
+ },
739
+ {
740
+ "epoch": 4.643443783630699,
741
+ "grad_norm": 3.1166610717773438,
742
+ "learning_rate": 4.552012148823083e-05,
743
+ "loss": 0.3726,
744
+ "step": 4100
745
+ },
746
+ {
747
+ "epoch": 4.700084961767205,
748
+ "grad_norm": 2.083258867263794,
749
+ "learning_rate": 4.362186788154898e-05,
750
+ "loss": 0.364,
751
+ "step": 4150
752
+ },
753
+ {
754
+ "epoch": 4.75672613990371,
755
+ "grad_norm": 1.941104769706726,
756
+ "learning_rate": 4.1723614274867124e-05,
757
+ "loss": 0.3914,
758
+ "step": 4200
759
+ },
760
+ {
761
+ "epoch": 4.75672613990371,
762
+ "eval_loss": 0.5698277354240417,
763
+ "eval_runtime": 604.4852,
764
+ "eval_samples_per_second": 2.596,
765
+ "eval_steps_per_second": 0.65,
766
+ "step": 4200
767
+ },
768
+ {
769
+ "epoch": 4.813367318040215,
770
+ "grad_norm": 1.896347165107727,
771
+ "learning_rate": 3.982536066818527e-05,
772
+ "loss": 0.3706,
773
+ "step": 4250
774
+ },
775
+ {
776
+ "epoch": 4.8700084961767205,
777
+ "grad_norm": 1.9356690645217896,
778
+ "learning_rate": 3.792710706150342e-05,
779
+ "loss": 0.3735,
780
+ "step": 4300
781
+ },
782
+ {
783
+ "epoch": 4.926649674313226,
784
+ "grad_norm": 2.048717975616455,
785
+ "learning_rate": 3.6028853454821566e-05,
786
+ "loss": 0.3775,
787
+ "step": 4350
788
+ },
789
+ {
790
+ "epoch": 4.983290852449731,
791
+ "grad_norm": 1.8730669021606445,
792
+ "learning_rate": 3.413059984813971e-05,
793
+ "loss": 0.3671,
794
+ "step": 4400
795
+ },
796
+ {
797
+ "epoch": 4.983290852449731,
798
+ "eval_loss": 0.5636136531829834,
799
+ "eval_runtime": 604.9156,
800
+ "eval_samples_per_second": 2.594,
801
+ "eval_steps_per_second": 0.65,
802
+ "step": 4400
803
+ },
804
+ {
805
+ "epoch": 5.039648824695553,
806
+ "grad_norm": 1.3539544343948364,
807
+ "learning_rate": 3.223234624145786e-05,
808
+ "loss": 0.328,
809
+ "step": 4450
810
+ },
811
+ {
812
+ "epoch": 5.096290002832059,
813
+ "grad_norm": 1.5452523231506348,
814
+ "learning_rate": 3.0334092634776008e-05,
815
+ "loss": 0.32,
816
+ "step": 4500
817
+ },
818
+ {
819
+ "epoch": 5.152931180968564,
820
+ "grad_norm": 1.3977546691894531,
821
+ "learning_rate": 2.843583902809415e-05,
822
+ "loss": 0.3084,
823
+ "step": 4550
824
+ },
825
+ {
826
+ "epoch": 5.20957235910507,
827
+ "grad_norm": 4.15449333190918,
828
+ "learning_rate": 2.6537585421412302e-05,
829
+ "loss": 0.3017,
830
+ "step": 4600
831
+ },
832
+ {
833
+ "epoch": 5.20957235910507,
834
+ "eval_loss": 0.5834115743637085,
835
+ "eval_runtime": 603.5666,
836
+ "eval_samples_per_second": 2.6,
837
+ "eval_steps_per_second": 0.651,
838
+ "step": 4600
839
+ },
840
+ {
841
+ "epoch": 5.266213537241574,
842
+ "grad_norm": 1.6772358417510986,
843
+ "learning_rate": 2.463933181473045e-05,
844
+ "loss": 0.3023,
845
+ "step": 4650
846
+ },
847
+ {
848
+ "epoch": 5.32285471537808,
849
+ "grad_norm": 1.5398720502853394,
850
+ "learning_rate": 2.2741078208048596e-05,
851
+ "loss": 0.3061,
852
+ "step": 4700
853
+ },
854
+ {
855
+ "epoch": 5.379495893514585,
856
+ "grad_norm": 1.567535638809204,
857
+ "learning_rate": 2.0842824601366744e-05,
858
+ "loss": 0.3143,
859
+ "step": 4750
860
+ },
861
+ {
862
+ "epoch": 5.43613707165109,
863
+ "grad_norm": 1.6017929315567017,
864
+ "learning_rate": 1.894457099468489e-05,
865
+ "loss": 0.3009,
866
+ "step": 4800
867
+ },
868
+ {
869
+ "epoch": 5.43613707165109,
870
+ "eval_loss": 0.5849186778068542,
871
+ "eval_runtime": 604.7855,
872
+ "eval_samples_per_second": 2.594,
873
+ "eval_steps_per_second": 0.65,
874
+ "step": 4800
875
+ },
876
+ {
877
+ "epoch": 5.492778249787595,
878
+ "grad_norm": 1.815103530883789,
879
+ "learning_rate": 1.7046317388003038e-05,
880
+ "loss": 0.3196,
881
+ "step": 4850
882
+ },
883
+ {
884
+ "epoch": 5.549419427924101,
885
+ "grad_norm": 1.6697149276733398,
886
+ "learning_rate": 1.5148063781321184e-05,
887
+ "loss": 0.301,
888
+ "step": 4900
889
+ },
890
+ {
891
+ "epoch": 5.606060606060606,
892
+ "grad_norm": 1.9685876369476318,
893
+ "learning_rate": 1.3249810174639332e-05,
894
+ "loss": 0.3275,
895
+ "step": 4950
896
+ },
897
+ {
898
+ "epoch": 5.662701784197111,
899
+ "grad_norm": 1.4504376649856567,
900
+ "learning_rate": 1.135155656795748e-05,
901
+ "loss": 0.3089,
902
+ "step": 5000
903
+ },
904
+ {
905
+ "epoch": 5.662701784197111,
906
+ "eval_loss": 0.5848227739334106,
907
+ "eval_runtime": 604.1032,
908
+ "eval_samples_per_second": 2.597,
909
+ "eval_steps_per_second": 0.651,
910
+ "step": 5000
911
+ },
912
+ {
913
+ "epoch": 5.7193429623336165,
914
+ "grad_norm": 2.6677732467651367,
915
+ "learning_rate": 9.453302961275627e-06,
916
+ "loss": 0.3178,
917
+ "step": 5050
918
+ },
919
+ {
920
+ "epoch": 5.775984140470122,
921
+ "grad_norm": 2.2549753189086914,
922
+ "learning_rate": 7.555049354593774e-06,
923
+ "loss": 0.2891,
924
+ "step": 5100
925
+ },
926
+ {
927
+ "epoch": 5.8326253186066275,
928
+ "grad_norm": 1.5250205993652344,
929
+ "learning_rate": 5.656795747911921e-06,
930
+ "loss": 0.3122,
931
+ "step": 5150
932
+ },
933
+ {
934
+ "epoch": 5.889266496743132,
935
+ "grad_norm": 1.8577101230621338,
936
+ "learning_rate": 3.758542141230068e-06,
937
+ "loss": 0.3032,
938
+ "step": 5200
939
+ },
940
+ {
941
+ "epoch": 5.889266496743132,
942
+ "eval_loss": 0.5855553150177002,
943
+ "eval_runtime": 603.8918,
944
+ "eval_samples_per_second": 2.598,
945
+ "eval_steps_per_second": 0.651,
946
+ "step": 5200
947
+ }
948
+ ],
949
+ "logging_steps": 50,
950
+ "max_steps": 5298,
951
+ "num_input_tokens_seen": 0,
952
+ "num_train_epochs": 6,
953
+ "save_steps": 200,
954
+ "stateful_callbacks": {
955
+ "TrainerControl": {
956
+ "args": {
957
+ "should_epoch_stop": false,
958
+ "should_evaluate": false,
959
+ "should_log": false,
960
+ "should_save": true,
961
+ "should_training_stop": false
962
+ },
963
+ "attributes": {}
964
+ }
965
+ },
966
+ "total_flos": 9.00118492293233e+17,
967
+ "train_batch_size": 4,
968
+ "trial_name": null,
969
+ "trial_params": null
970
+ }
checkpoint-5200/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e9daeff4f7649949e91566fac7256a9010f7454bfc785ed8b3dcfee3bac4529
3
+ size 5688
checkpoint-5298/README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/gemma-3-4b-it-unsloth-bnb-4bit
3
+ library_name: peft
4
+ ---
5
+
6
+ # Model Card for Model ID
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** [More Information Needed]
21
+ - **Funded by [optional]:** [More Information Needed]
22
+ - **Shared by [optional]:** [More Information Needed]
23
+ - **Model type:** [More Information Needed]
24
+ - **Language(s) (NLP):** [More Information Needed]
25
+ - **License:** [More Information Needed]
26
+ - **Finetuned from model [optional]:** [More Information Needed]
27
+
28
+ ### Model Sources [optional]
29
+
30
+ <!-- Provide the basic links for the model. -->
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+
38
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
39
+
40
+ ### Direct Use
41
+
42
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
43
+
44
+ [More Information Needed]
45
+
46
+ ### Downstream Use [optional]
47
+
48
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
49
+
50
+ [More Information Needed]
51
+
52
+ ### Out-of-Scope Use
53
+
54
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
55
+
56
+ [More Information Needed]
57
+
58
+ ## Bias, Risks, and Limitations
59
+
60
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
61
+
62
+ [More Information Needed]
63
+
64
+ ### Recommendations
65
+
66
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
67
+
68
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
69
+
70
+ ## How to Get Started with the Model
71
+
72
+ Use the code below to get started with the model.
73
+
74
+ [More Information Needed]
75
+
76
+ ## Training Details
77
+
78
+ ### Training Data
79
+
80
+ <!-- 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. -->
81
+
82
+ [More Information Needed]
83
+
84
+ ### Training Procedure
85
+
86
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
87
+
88
+ #### Preprocessing [optional]
89
+
90
+ [More Information Needed]
91
+
92
+
93
+ #### Training Hyperparameters
94
+
95
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
96
+
97
+ #### Speeds, Sizes, Times [optional]
98
+
99
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
100
+
101
+ [More Information Needed]
102
+
103
+ ## Evaluation
104
+
105
+ <!-- This section describes the evaluation protocols and provides the results. -->
106
+
107
+ ### Testing Data, Factors & Metrics
108
+
109
+ #### Testing Data
110
+
111
+ <!-- This should link to a Dataset Card if possible. -->
112
+
113
+ [More Information Needed]
114
+
115
+ #### Factors
116
+
117
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
118
+
119
+ [More Information Needed]
120
+
121
+ #### Metrics
122
+
123
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
124
+
125
+ [More Information Needed]
126
+
127
+ ### Results
128
+
129
+ [More Information Needed]
130
+
131
+ #### Summary
132
+
133
+
134
+
135
+ ## Model Examination [optional]
136
+
137
+ <!-- Relevant interpretability work for the model goes here -->
138
+
139
+ [More Information Needed]
140
+
141
+ ## Environmental Impact
142
+
143
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
144
+
145
+ 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).
146
+
147
+ - **Hardware Type:** [More Information Needed]
148
+ - **Hours used:** [More Information Needed]
149
+ - **Cloud Provider:** [More Information Needed]
150
+ - **Compute Region:** [More Information Needed]
151
+ - **Carbon Emitted:** [More Information Needed]
152
+
153
+ ## Technical Specifications [optional]
154
+
155
+ ### Model Architecture and Objective
156
+
157
+ [More Information Needed]
158
+
159
+ ### Compute Infrastructure
160
+
161
+ [More Information Needed]
162
+
163
+ #### Hardware
164
+
165
+ [More Information Needed]
166
+
167
+ #### Software
168
+
169
+ [More Information Needed]
170
+
171
+ ## Citation [optional]
172
+
173
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
174
+
175
+ **BibTeX:**
176
+
177
+ [More Information Needed]
178
+
179
+ **APA:**
180
+
181
+ [More Information Needed]
182
+
183
+ ## Glossary [optional]
184
+
185
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
186
+
187
+ [More Information Needed]
188
+
189
+ ## More Information [optional]
190
+
191
+ [More Information Needed]
192
+
193
+ ## Model Card Authors [optional]
194
+
195
+ [More Information Needed]
196
+
197
+ ## Model Card Contact
198
+
199
+ [More Information Needed]
200
+ ### Framework versions
201
+
202
+ - PEFT 0.14.0
checkpoint-5298/adapter_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "unsloth/gemma-3-4b-it-unsloth-bnb-4bit",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": true,
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 8,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": null,
21
+ "peft_type": "LORA",
22
+ "r": 16,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": "(?:.*?(?:language|text).*?(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense).*?(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj).*?)|(?:\\bmodel\\.layers\\.[\\d]{1,}\\.(?:self_attn|attention|attn|mlp|feed_forward|ffn|dense)\\.(?:(?:k_proj|v_proj|q_proj|out_proj|fc1|fc2|o_proj|gate_proj|up_proj|down_proj)))",
26
+ "task_type": "CAUSAL_LM",
27
+ "use_dora": false,
28
+ "use_rslora": false
29
+ }
checkpoint-5298/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6587eda466902c73be292e0df60308d128375c820d98de52e49df0ad817c9e7
3
+ size 119280712
checkpoint-5298/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "<image_soft_token>": 262144
3
+ }
checkpoint-5298/chat_template.jinja ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{ bos_token }}
2
+ {%- if messages[0]['role'] == 'system' -%}
3
+ {%- if messages[0]['content'] is string -%}
4
+ {%- set first_user_prefix = messages[0]['content'] + '
5
+
6
+ ' -%}
7
+ {%- else -%}
8
+ {%- set first_user_prefix = messages[0]['content'][0]['text'] + '
9
+
10
+ ' -%}
11
+ {%- endif -%}
12
+ {%- set loop_messages = messages[1:] -%}
13
+ {%- else -%}
14
+ {%- set first_user_prefix = "" -%}
15
+ {%- set loop_messages = messages -%}
16
+ {%- endif -%}
17
+ {%- for message in loop_messages -%}
18
+ {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}
19
+ {{ raise_exception("Conversation roles must alternate user/assistant/user/assistant/...") }}
20
+ {%- endif -%}
21
+ {%- if (message['role'] == 'assistant') -%}
22
+ {%- set role = "model" -%}
23
+ {%- else -%}
24
+ {%- set role = message['role'] -%}
25
+ {%- endif -%}
26
+ {{ '<start_of_turn>' + role + '
27
+ ' + (first_user_prefix if loop.first else "") }}
28
+ {%- if message['content'] is string -%}
29
+ {{ message['content'] | trim }}
30
+ {%- elif message['content'] is iterable -%}
31
+ {%- for item in message['content'] -%}
32
+ {%- if item['type'] == 'image' -%}
33
+ {{ '<start_of_image>' }}
34
+ {%- elif item['type'] == 'text' -%}
35
+ {{ item['text'] | trim }}
36
+ {%- endif -%}
37
+ {%- endfor -%}
38
+ {%- else -%}
39
+ {{ raise_exception("Invalid content type") }}
40
+ {%- endif -%}
41
+ {{ '<end_of_turn>
42
+ ' }}
43
+ {%- endfor -%}
44
+ {%- if add_generation_prompt -%}
45
+ {{ '<start_of_turn>model
46
+ ' }}
47
+ {%- endif -%}
checkpoint-5298/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2813af1c647346dba477e3ff0b3b19190e0636e6a8589639188c0d1bfef823fa
3
+ size 62332474
checkpoint-5298/preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_pan_and_scan": null,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_processor_type": "Gemma3ImageProcessor",
13
+ "image_seq_length": 256,
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "pan_and_scan_max_num_crops": null,
20
+ "pan_and_scan_min_crop_size": null,
21
+ "pan_and_scan_min_ratio_to_activate": null,
22
+ "processor_class": "Gemma3Processor",
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 896,
27
+ "width": 896
28
+ }
29
+ }
checkpoint-5298/processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_length": 256,
3
+ "processor_class": "Gemma3Processor"
4
+ }
checkpoint-5298/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27a79239f98d586c6d293becfe4724cb48ad892f743d1e770886cde54b3333d6
3
+ size 14244
checkpoint-5298/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbfba7a2a2b51b29df7a572a2215627ac042f306353a8c0937d57adb53bb48ae
3
+ size 1064
checkpoint-5298/special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<end_of_turn>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
checkpoint-5298/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
checkpoint-5298/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
checkpoint-5298/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-5298/trainer_state.json ADDED
@@ -0,0 +1,977 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": 200,
3
+ "best_metric": 0.5003665089607239,
4
+ "best_model_checkpoint": "Gemma-3-4B-it-Medical-LoRA/checkpoint-200",
5
+ "epoch": 6.0,
6
+ "eval_steps": 200,
7
+ "global_step": 5298,
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.05664117813650524,
14
+ "grad_norm": 0.522846519947052,
15
+ "learning_rate": 0.0001955451348182884,
16
+ "loss": 0.7569,
17
+ "step": 50
18
+ },
19
+ {
20
+ "epoch": 0.11328235627301048,
21
+ "grad_norm": 0.4961966276168823,
22
+ "learning_rate": 0.00018382180539273154,
23
+ "loss": 0.4753,
24
+ "step": 100
25
+ },
26
+ {
27
+ "epoch": 0.16992353440951571,
28
+ "grad_norm": 0.512007474899292,
29
+ "learning_rate": 0.00017209847596717467,
30
+ "loss": 0.5535,
31
+ "step": 150
32
+ },
33
+ {
34
+ "epoch": 0.22656471254602095,
35
+ "grad_norm": 0.8278496861457825,
36
+ "learning_rate": 0.00016037514654161782,
37
+ "loss": 0.5582,
38
+ "step": 200
39
+ },
40
+ {
41
+ "epoch": 0.22656471254602095,
42
+ "eval_loss": 0.5003665089607239,
43
+ "eval_runtime": 566.8557,
44
+ "eval_samples_per_second": 2.768,
45
+ "eval_steps_per_second": 0.693,
46
+ "step": 200
47
+ },
48
+ {
49
+ "epoch": 0.2832058906825262,
50
+ "grad_norm": 0.8043648600578308,
51
+ "learning_rate": 0.00014865181711606098,
52
+ "loss": 0.538,
53
+ "step": 250
54
+ },
55
+ {
56
+ "epoch": 0.33984706881903143,
57
+ "grad_norm": 0.8642493486404419,
58
+ "learning_rate": 0.0001369284876905041,
59
+ "loss": 0.5074,
60
+ "step": 300
61
+ },
62
+ {
63
+ "epoch": 0.3964882469555367,
64
+ "grad_norm": 0.5464778542518616,
65
+ "learning_rate": 0.00012520515826494724,
66
+ "loss": 0.4882,
67
+ "step": 350
68
+ },
69
+ {
70
+ "epoch": 0.4531294250920419,
71
+ "grad_norm": 0.8210390210151672,
72
+ "learning_rate": 0.0001134818288393904,
73
+ "loss": 0.5102,
74
+ "step": 400
75
+ },
76
+ {
77
+ "epoch": 0.4531294250920419,
78
+ "eval_loss": 0.5287922620773315,
79
+ "eval_runtime": 545.4754,
80
+ "eval_samples_per_second": 2.876,
81
+ "eval_steps_per_second": 0.72,
82
+ "step": 400
83
+ },
84
+ {
85
+ "epoch": 0.5097706032285472,
86
+ "grad_norm": 0.9310616850852966,
87
+ "learning_rate": 0.00010175849941383353,
88
+ "loss": 0.5139,
89
+ "step": 450
90
+ },
91
+ {
92
+ "epoch": 0.5664117813650524,
93
+ "grad_norm": 1.1925888061523438,
94
+ "learning_rate": 9.003516998827668e-05,
95
+ "loss": 0.5748,
96
+ "step": 500
97
+ },
98
+ {
99
+ "epoch": 0.6230529595015576,
100
+ "grad_norm": 1.2190861701965332,
101
+ "learning_rate": 7.831184056271981e-05,
102
+ "loss": 0.53,
103
+ "step": 550
104
+ },
105
+ {
106
+ "epoch": 0.6796941376380629,
107
+ "grad_norm": 0.9308417439460754,
108
+ "learning_rate": 6.658851113716296e-05,
109
+ "loss": 0.528,
110
+ "step": 600
111
+ },
112
+ {
113
+ "epoch": 0.6796941376380629,
114
+ "eval_loss": 0.535805881023407,
115
+ "eval_runtime": 545.9453,
116
+ "eval_samples_per_second": 2.874,
117
+ "eval_steps_per_second": 0.72,
118
+ "step": 600
119
+ },
120
+ {
121
+ "epoch": 0.7363353157745681,
122
+ "grad_norm": 1.1482899188995361,
123
+ "learning_rate": 5.486518171160609e-05,
124
+ "loss": 0.5532,
125
+ "step": 650
126
+ },
127
+ {
128
+ "epoch": 0.7929764939110734,
129
+ "grad_norm": 1.6465129852294922,
130
+ "learning_rate": 4.3141852286049237e-05,
131
+ "loss": 0.5838,
132
+ "step": 700
133
+ },
134
+ {
135
+ "epoch": 0.8496176720475785,
136
+ "grad_norm": 1.1552118062973022,
137
+ "learning_rate": 3.1418522860492386e-05,
138
+ "loss": 0.5483,
139
+ "step": 750
140
+ },
141
+ {
142
+ "epoch": 0.9062588501840838,
143
+ "grad_norm": 1.138253927230835,
144
+ "learning_rate": 1.9695193434935523e-05,
145
+ "loss": 0.5188,
146
+ "step": 800
147
+ },
148
+ {
149
+ "epoch": 0.9062588501840838,
150
+ "eval_loss": 0.5232300162315369,
151
+ "eval_runtime": 545.2326,
152
+ "eval_samples_per_second": 2.878,
153
+ "eval_steps_per_second": 0.721,
154
+ "step": 800
155
+ },
156
+ {
157
+ "epoch": 0.9629000283205891,
158
+ "grad_norm": 1.1961596012115479,
159
+ "learning_rate": 7.971864009378664e-06,
160
+ "loss": 0.5166,
161
+ "step": 850
162
+ },
163
+ {
164
+ "epoch": 1.0192580005664118,
165
+ "grad_norm": 1.1366384029388428,
166
+ "learning_rate": 9.988479262672812e-05,
167
+ "loss": 0.4523,
168
+ "step": 900
169
+ },
170
+ {
171
+ "epoch": 1.075899178702917,
172
+ "grad_norm": 1.1627408266067505,
173
+ "learning_rate": 9.412442396313365e-05,
174
+ "loss": 0.467,
175
+ "step": 950
176
+ },
177
+ {
178
+ "epoch": 1.1325403568394223,
179
+ "grad_norm": 1.2404801845550537,
180
+ "learning_rate": 8.836405529953917e-05,
181
+ "loss": 0.4521,
182
+ "step": 1000
183
+ },
184
+ {
185
+ "epoch": 1.1325403568394223,
186
+ "eval_loss": 0.5426932573318481,
187
+ "eval_runtime": 653.831,
188
+ "eval_samples_per_second": 2.4,
189
+ "eval_steps_per_second": 0.601,
190
+ "step": 1000
191
+ },
192
+ {
193
+ "epoch": 1.1891815349759276,
194
+ "grad_norm": 1.0068233013153076,
195
+ "learning_rate": 8.26036866359447e-05,
196
+ "loss": 0.4965,
197
+ "step": 1050
198
+ },
199
+ {
200
+ "epoch": 1.2458227131124326,
201
+ "grad_norm": 1.3524373769760132,
202
+ "learning_rate": 7.684331797235024e-05,
203
+ "loss": 0.4658,
204
+ "step": 1100
205
+ },
206
+ {
207
+ "epoch": 1.302463891248938,
208
+ "grad_norm": 1.291171908378601,
209
+ "learning_rate": 7.108294930875576e-05,
210
+ "loss": 0.4945,
211
+ "step": 1150
212
+ },
213
+ {
214
+ "epoch": 1.3591050693854432,
215
+ "grad_norm": 1.673529028892517,
216
+ "learning_rate": 6.532258064516129e-05,
217
+ "loss": 0.4919,
218
+ "step": 1200
219
+ },
220
+ {
221
+ "epoch": 1.3591050693854432,
222
+ "eval_loss": 0.5525731444358826,
223
+ "eval_runtime": 637.1064,
224
+ "eval_samples_per_second": 2.463,
225
+ "eval_steps_per_second": 0.617,
226
+ "step": 1200
227
+ },
228
+ {
229
+ "epoch": 1.4157462475219484,
230
+ "grad_norm": 1.0850290060043335,
231
+ "learning_rate": 5.956221198156682e-05,
232
+ "loss": 0.4912,
233
+ "step": 1250
234
+ },
235
+ {
236
+ "epoch": 1.4723874256584537,
237
+ "grad_norm": 1.318361759185791,
238
+ "learning_rate": 5.3801843317972355e-05,
239
+ "loss": 0.46,
240
+ "step": 1300
241
+ },
242
+ {
243
+ "epoch": 1.529028603794959,
244
+ "grad_norm": 1.5087871551513672,
245
+ "learning_rate": 4.8041474654377885e-05,
246
+ "loss": 0.4977,
247
+ "step": 1350
248
+ },
249
+ {
250
+ "epoch": 1.5856697819314642,
251
+ "grad_norm": 1.5589851140975952,
252
+ "learning_rate": 4.228110599078341e-05,
253
+ "loss": 0.4558,
254
+ "step": 1400
255
+ },
256
+ {
257
+ "epoch": 1.5856697819314642,
258
+ "eval_loss": 0.5318325161933899,
259
+ "eval_runtime": 633.698,
260
+ "eval_samples_per_second": 2.476,
261
+ "eval_steps_per_second": 0.62,
262
+ "step": 1400
263
+ },
264
+ {
265
+ "epoch": 1.6423109600679693,
266
+ "grad_norm": 1.1275252103805542,
267
+ "learning_rate": 3.6520737327188945e-05,
268
+ "loss": 0.4792,
269
+ "step": 1450
270
+ },
271
+ {
272
+ "epoch": 1.6989521382044748,
273
+ "grad_norm": 1.3600178956985474,
274
+ "learning_rate": 3.076036866359447e-05,
275
+ "loss": 0.4796,
276
+ "step": 1500
277
+ },
278
+ {
279
+ "epoch": 1.7555933163409798,
280
+ "grad_norm": 1.4632591009140015,
281
+ "learning_rate": 2.5e-05,
282
+ "loss": 0.4787,
283
+ "step": 1550
284
+ },
285
+ {
286
+ "epoch": 1.812234494477485,
287
+ "grad_norm": 1.3220279216766357,
288
+ "learning_rate": 1.923963133640553e-05,
289
+ "loss": 0.4785,
290
+ "step": 1600
291
+ },
292
+ {
293
+ "epoch": 1.812234494477485,
294
+ "eval_loss": 0.5232844352722168,
295
+ "eval_runtime": 633.2557,
296
+ "eval_samples_per_second": 2.478,
297
+ "eval_steps_per_second": 0.621,
298
+ "step": 1600
299
+ },
300
+ {
301
+ "epoch": 1.8688756726139903,
302
+ "grad_norm": 1.71708083152771,
303
+ "learning_rate": 1.3479262672811061e-05,
304
+ "loss": 0.4901,
305
+ "step": 1650
306
+ },
307
+ {
308
+ "epoch": 1.9255168507504956,
309
+ "grad_norm": 1.0889732837677002,
310
+ "learning_rate": 7.71889400921659e-06,
311
+ "loss": 0.475,
312
+ "step": 1700
313
+ },
314
+ {
315
+ "epoch": 1.9821580288870009,
316
+ "grad_norm": 1.226163387298584,
317
+ "learning_rate": 1.9585253456221198e-06,
318
+ "loss": 0.4729,
319
+ "step": 1750
320
+ },
321
+ {
322
+ "epoch": 2.0385160011328236,
323
+ "grad_norm": 1.93405020236969,
324
+ "learning_rate": 6.491027109583811e-05,
325
+ "loss": 0.3981,
326
+ "step": 1800
327
+ },
328
+ {
329
+ "epoch": 2.0385160011328236,
330
+ "eval_loss": 0.534080982208252,
331
+ "eval_runtime": 635.9448,
332
+ "eval_samples_per_second": 2.467,
333
+ "eval_steps_per_second": 0.618,
334
+ "step": 1800
335
+ },
336
+ {
337
+ "epoch": 2.0951571792693287,
338
+ "grad_norm": 1.4278013706207275,
339
+ "learning_rate": 6.109201985490646e-05,
340
+ "loss": 0.4229,
341
+ "step": 1850
342
+ },
343
+ {
344
+ "epoch": 2.151798357405834,
345
+ "grad_norm": 1.6030181646347046,
346
+ "learning_rate": 5.72737686139748e-05,
347
+ "loss": 0.4363,
348
+ "step": 1900
349
+ },
350
+ {
351
+ "epoch": 2.208439535542339,
352
+ "grad_norm": 1.3467751741409302,
353
+ "learning_rate": 5.345551737304315e-05,
354
+ "loss": 0.425,
355
+ "step": 1950
356
+ },
357
+ {
358
+ "epoch": 2.2650807136788447,
359
+ "grad_norm": 1.390838623046875,
360
+ "learning_rate": 4.963726613211149e-05,
361
+ "loss": 0.4185,
362
+ "step": 2000
363
+ },
364
+ {
365
+ "epoch": 2.2650807136788447,
366
+ "eval_loss": 0.5372938513755798,
367
+ "eval_runtime": 635.7783,
368
+ "eval_samples_per_second": 2.468,
369
+ "eval_steps_per_second": 0.618,
370
+ "step": 2000
371
+ },
372
+ {
373
+ "epoch": 2.3217218918153497,
374
+ "grad_norm": 1.3252273797988892,
375
+ "learning_rate": 4.581901489117984e-05,
376
+ "loss": 0.43,
377
+ "step": 2050
378
+ },
379
+ {
380
+ "epoch": 2.378363069951855,
381
+ "grad_norm": 1.2557967901229858,
382
+ "learning_rate": 4.2000763650248184e-05,
383
+ "loss": 0.4386,
384
+ "step": 2100
385
+ },
386
+ {
387
+ "epoch": 2.4350042480883602,
388
+ "grad_norm": 1.649653434753418,
389
+ "learning_rate": 3.818251240931654e-05,
390
+ "loss": 0.4273,
391
+ "step": 2150
392
+ },
393
+ {
394
+ "epoch": 2.4916454262248653,
395
+ "grad_norm": 1.5756187438964844,
396
+ "learning_rate": 3.4364261168384884e-05,
397
+ "loss": 0.3909,
398
+ "step": 2200
399
+ },
400
+ {
401
+ "epoch": 2.4916454262248653,
402
+ "eval_loss": 0.542982280254364,
403
+ "eval_runtime": 635.1617,
404
+ "eval_samples_per_second": 2.47,
405
+ "eval_steps_per_second": 0.619,
406
+ "step": 2200
407
+ },
408
+ {
409
+ "epoch": 2.5482866043613708,
410
+ "grad_norm": 1.4305800199508667,
411
+ "learning_rate": 3.054600992745323e-05,
412
+ "loss": 0.4111,
413
+ "step": 2250
414
+ },
415
+ {
416
+ "epoch": 2.604927782497876,
417
+ "grad_norm": 1.4521535634994507,
418
+ "learning_rate": 2.6727758686521576e-05,
419
+ "loss": 0.4402,
420
+ "step": 2300
421
+ },
422
+ {
423
+ "epoch": 2.6615689606343813,
424
+ "grad_norm": 1.3872359991073608,
425
+ "learning_rate": 2.290950744558992e-05,
426
+ "loss": 0.4293,
427
+ "step": 2350
428
+ },
429
+ {
430
+ "epoch": 2.7182101387708864,
431
+ "grad_norm": 1.6272056102752686,
432
+ "learning_rate": 1.909125620465827e-05,
433
+ "loss": 0.4145,
434
+ "step": 2400
435
+ },
436
+ {
437
+ "epoch": 2.7182101387708864,
438
+ "eval_loss": 0.5353428721427917,
439
+ "eval_runtime": 628.4439,
440
+ "eval_samples_per_second": 2.497,
441
+ "eval_steps_per_second": 0.625,
442
+ "step": 2400
443
+ },
444
+ {
445
+ "epoch": 2.774851316907392,
446
+ "grad_norm": 1.1917740106582642,
447
+ "learning_rate": 1.5273004963726615e-05,
448
+ "loss": 0.4022,
449
+ "step": 2450
450
+ },
451
+ {
452
+ "epoch": 2.831492495043897,
453
+ "grad_norm": 1.5548139810562134,
454
+ "learning_rate": 1.145475372279496e-05,
455
+ "loss": 0.4155,
456
+ "step": 2500
457
+ },
458
+ {
459
+ "epoch": 2.888133673180402,
460
+ "grad_norm": 2.0399019718170166,
461
+ "learning_rate": 7.636502481863307e-06,
462
+ "loss": 0.4169,
463
+ "step": 2550
464
+ },
465
+ {
466
+ "epoch": 2.9447748513169074,
467
+ "grad_norm": 1.6849918365478516,
468
+ "learning_rate": 3.818251240931654e-06,
469
+ "loss": 0.4145,
470
+ "step": 2600
471
+ },
472
+ {
473
+ "epoch": 2.9447748513169074,
474
+ "eval_loss": 0.5327087640762329,
475
+ "eval_runtime": 636.4789,
476
+ "eval_samples_per_second": 2.465,
477
+ "eval_steps_per_second": 0.617,
478
+ "step": 2600
479
+ },
480
+ {
481
+ "epoch": 3.00113282356273,
482
+ "grad_norm": 1.1705021858215332,
483
+ "learning_rate": 0.0,
484
+ "loss": 0.3254,
485
+ "step": 2650
486
+ },
487
+ {
488
+ "epoch": 3.057774001699235,
489
+ "grad_norm": 1.3165022134780884,
490
+ "learning_rate": 4.757281553398059e-05,
491
+ "loss": 0.367,
492
+ "step": 2700
493
+ },
494
+ {
495
+ "epoch": 3.1144151798357407,
496
+ "grad_norm": 1.557210922241211,
497
+ "learning_rate": 4.4717304397487155e-05,
498
+ "loss": 0.3588,
499
+ "step": 2750
500
+ },
501
+ {
502
+ "epoch": 3.1710563579722457,
503
+ "grad_norm": 1.7867581844329834,
504
+ "learning_rate": 4.186179326099372e-05,
505
+ "loss": 0.3761,
506
+ "step": 2800
507
+ },
508
+ {
509
+ "epoch": 3.1710563579722457,
510
+ "eval_loss": 0.555277407169342,
511
+ "eval_runtime": 631.0969,
512
+ "eval_samples_per_second": 2.486,
513
+ "eval_steps_per_second": 0.623,
514
+ "step": 2800
515
+ },
516
+ {
517
+ "epoch": 3.227697536108751,
518
+ "grad_norm": 1.8431845903396606,
519
+ "learning_rate": 3.900628212450029e-05,
520
+ "loss": 0.402,
521
+ "step": 2850
522
+ },
523
+ {
524
+ "epoch": 3.2843387142452563,
525
+ "grad_norm": 2.415738344192505,
526
+ "learning_rate": 3.6150770988006854e-05,
527
+ "loss": 0.3614,
528
+ "step": 2900
529
+ },
530
+ {
531
+ "epoch": 3.3409798923817613,
532
+ "grad_norm": 1.8246201276779175,
533
+ "learning_rate": 3.329525985151342e-05,
534
+ "loss": 0.3896,
535
+ "step": 2950
536
+ },
537
+ {
538
+ "epoch": 3.397621070518267,
539
+ "grad_norm": 1.1022515296936035,
540
+ "learning_rate": 3.043974871501999e-05,
541
+ "loss": 0.3746,
542
+ "step": 3000
543
+ },
544
+ {
545
+ "epoch": 3.397621070518267,
546
+ "eval_loss": 0.5586006045341492,
547
+ "eval_runtime": 613.6818,
548
+ "eval_samples_per_second": 2.557,
549
+ "eval_steps_per_second": 0.64,
550
+ "step": 3000
551
+ },
552
+ {
553
+ "epoch": 3.454262248654772,
554
+ "grad_norm": 2.3615689277648926,
555
+ "learning_rate": 2.7584237578526556e-05,
556
+ "loss": 0.3748,
557
+ "step": 3050
558
+ },
559
+ {
560
+ "epoch": 3.5109034267912773,
561
+ "grad_norm": 2.1353960037231445,
562
+ "learning_rate": 2.4728726442033126e-05,
563
+ "loss": 0.38,
564
+ "step": 3100
565
+ },
566
+ {
567
+ "epoch": 3.5675446049277824,
568
+ "grad_norm": 1.7389541864395142,
569
+ "learning_rate": 2.1873215305539692e-05,
570
+ "loss": 0.3816,
571
+ "step": 3150
572
+ },
573
+ {
574
+ "epoch": 3.624185783064288,
575
+ "grad_norm": 1.8731958866119385,
576
+ "learning_rate": 1.9017704169046262e-05,
577
+ "loss": 0.388,
578
+ "step": 3200
579
+ },
580
+ {
581
+ "epoch": 3.624185783064288,
582
+ "eval_loss": 0.5509854555130005,
583
+ "eval_runtime": 605.0872,
584
+ "eval_samples_per_second": 2.593,
585
+ "eval_steps_per_second": 0.649,
586
+ "step": 3200
587
+ },
588
+ {
589
+ "epoch": 3.680826961200793,
590
+ "grad_norm": 1.814975380897522,
591
+ "learning_rate": 1.6162193032552828e-05,
592
+ "loss": 0.3897,
593
+ "step": 3250
594
+ },
595
+ {
596
+ "epoch": 3.7374681393372984,
597
+ "grad_norm": 1.8525991439819336,
598
+ "learning_rate": 1.3306681896059394e-05,
599
+ "loss": 0.3931,
600
+ "step": 3300
601
+ },
602
+ {
603
+ "epoch": 3.7941093174738034,
604
+ "grad_norm": 2.1449315547943115,
605
+ "learning_rate": 1.0451170759565964e-05,
606
+ "loss": 0.3987,
607
+ "step": 3350
608
+ },
609
+ {
610
+ "epoch": 3.850750495610309,
611
+ "grad_norm": 1.2358556985855103,
612
+ "learning_rate": 7.59565962307253e-06,
613
+ "loss": 0.3695,
614
+ "step": 3400
615
+ },
616
+ {
617
+ "epoch": 3.850750495610309,
618
+ "eval_loss": 0.5485390424728394,
619
+ "eval_runtime": 606.2751,
620
+ "eval_samples_per_second": 2.588,
621
+ "eval_steps_per_second": 0.648,
622
+ "step": 3400
623
+ },
624
+ {
625
+ "epoch": 3.907391673746814,
626
+ "grad_norm": 2.7738165855407715,
627
+ "learning_rate": 4.7401484865790974e-06,
628
+ "loss": 0.3841,
629
+ "step": 3450
630
+ },
631
+ {
632
+ "epoch": 3.964032851883319,
633
+ "grad_norm": 2.6049118041992188,
634
+ "learning_rate": 1.8846373500856656e-06,
635
+ "loss": 0.3742,
636
+ "step": 3500
637
+ },
638
+ {
639
+ "epoch": 4.020390824129142,
640
+ "grad_norm": 1.459250569343567,
641
+ "learning_rate": 6.64009111617312e-05,
642
+ "loss": 0.3493,
643
+ "step": 3550
644
+ },
645
+ {
646
+ "epoch": 4.077032002265647,
647
+ "grad_norm": 1.3481236696243286,
648
+ "learning_rate": 6.450265755504936e-05,
649
+ "loss": 0.3414,
650
+ "step": 3600
651
+ },
652
+ {
653
+ "epoch": 4.077032002265647,
654
+ "eval_loss": 0.5706936717033386,
655
+ "eval_runtime": 626.8261,
656
+ "eval_samples_per_second": 2.503,
657
+ "eval_steps_per_second": 0.627,
658
+ "step": 3600
659
+ },
660
+ {
661
+ "epoch": 4.133673180402153,
662
+ "grad_norm": 1.5863535404205322,
663
+ "learning_rate": 6.260440394836751e-05,
664
+ "loss": 0.3964,
665
+ "step": 3650
666
+ },
667
+ {
668
+ "epoch": 4.190314358538657,
669
+ "grad_norm": 1.4147838354110718,
670
+ "learning_rate": 6.070615034168565e-05,
671
+ "loss": 0.3688,
672
+ "step": 3700
673
+ },
674
+ {
675
+ "epoch": 4.246955536675163,
676
+ "grad_norm": 1.7272146940231323,
677
+ "learning_rate": 5.88078967350038e-05,
678
+ "loss": 0.3554,
679
+ "step": 3750
680
+ },
681
+ {
682
+ "epoch": 4.303596714811668,
683
+ "grad_norm": 1.7022188901901245,
684
+ "learning_rate": 5.6909643128321947e-05,
685
+ "loss": 0.362,
686
+ "step": 3800
687
+ },
688
+ {
689
+ "epoch": 4.303596714811668,
690
+ "eval_loss": 0.5747559070587158,
691
+ "eval_runtime": 603.0566,
692
+ "eval_samples_per_second": 2.602,
693
+ "eval_steps_per_second": 0.652,
694
+ "step": 3800
695
+ },
696
+ {
697
+ "epoch": 4.360237892948174,
698
+ "grad_norm": 1.8977692127227783,
699
+ "learning_rate": 5.501138952164009e-05,
700
+ "loss": 0.3787,
701
+ "step": 3850
702
+ },
703
+ {
704
+ "epoch": 4.416879071084678,
705
+ "grad_norm": 1.7641384601593018,
706
+ "learning_rate": 5.311313591495825e-05,
707
+ "loss": 0.417,
708
+ "step": 3900
709
+ },
710
+ {
711
+ "epoch": 4.473520249221184,
712
+ "grad_norm": 1.6231164932250977,
713
+ "learning_rate": 5.121488230827639e-05,
714
+ "loss": 0.3691,
715
+ "step": 3950
716
+ },
717
+ {
718
+ "epoch": 4.530161427357689,
719
+ "grad_norm": 1.8207956552505493,
720
+ "learning_rate": 4.9316628701594535e-05,
721
+ "loss": 0.3806,
722
+ "step": 4000
723
+ },
724
+ {
725
+ "epoch": 4.530161427357689,
726
+ "eval_loss": 0.5716577768325806,
727
+ "eval_runtime": 602.7077,
728
+ "eval_samples_per_second": 2.603,
729
+ "eval_steps_per_second": 0.652,
730
+ "step": 4000
731
+ },
732
+ {
733
+ "epoch": 4.586802605494194,
734
+ "grad_norm": 1.501741886138916,
735
+ "learning_rate": 4.741837509491268e-05,
736
+ "loss": 0.3787,
737
+ "step": 4050
738
+ },
739
+ {
740
+ "epoch": 4.643443783630699,
741
+ "grad_norm": 3.1166610717773438,
742
+ "learning_rate": 4.552012148823083e-05,
743
+ "loss": 0.3726,
744
+ "step": 4100
745
+ },
746
+ {
747
+ "epoch": 4.700084961767205,
748
+ "grad_norm": 2.083258867263794,
749
+ "learning_rate": 4.362186788154898e-05,
750
+ "loss": 0.364,
751
+ "step": 4150
752
+ },
753
+ {
754
+ "epoch": 4.75672613990371,
755
+ "grad_norm": 1.941104769706726,
756
+ "learning_rate": 4.1723614274867124e-05,
757
+ "loss": 0.3914,
758
+ "step": 4200
759
+ },
760
+ {
761
+ "epoch": 4.75672613990371,
762
+ "eval_loss": 0.5698277354240417,
763
+ "eval_runtime": 604.4852,
764
+ "eval_samples_per_second": 2.596,
765
+ "eval_steps_per_second": 0.65,
766
+ "step": 4200
767
+ },
768
+ {
769
+ "epoch": 4.813367318040215,
770
+ "grad_norm": 1.896347165107727,
771
+ "learning_rate": 3.982536066818527e-05,
772
+ "loss": 0.3706,
773
+ "step": 4250
774
+ },
775
+ {
776
+ "epoch": 4.8700084961767205,
777
+ "grad_norm": 1.9356690645217896,
778
+ "learning_rate": 3.792710706150342e-05,
779
+ "loss": 0.3735,
780
+ "step": 4300
781
+ },
782
+ {
783
+ "epoch": 4.926649674313226,
784
+ "grad_norm": 2.048717975616455,
785
+ "learning_rate": 3.6028853454821566e-05,
786
+ "loss": 0.3775,
787
+ "step": 4350
788
+ },
789
+ {
790
+ "epoch": 4.983290852449731,
791
+ "grad_norm": 1.8730669021606445,
792
+ "learning_rate": 3.413059984813971e-05,
793
+ "loss": 0.3671,
794
+ "step": 4400
795
+ },
796
+ {
797
+ "epoch": 4.983290852449731,
798
+ "eval_loss": 0.5636136531829834,
799
+ "eval_runtime": 604.9156,
800
+ "eval_samples_per_second": 2.594,
801
+ "eval_steps_per_second": 0.65,
802
+ "step": 4400
803
+ },
804
+ {
805
+ "epoch": 5.039648824695553,
806
+ "grad_norm": 1.3539544343948364,
807
+ "learning_rate": 3.223234624145786e-05,
808
+ "loss": 0.328,
809
+ "step": 4450
810
+ },
811
+ {
812
+ "epoch": 5.096290002832059,
813
+ "grad_norm": 1.5452523231506348,
814
+ "learning_rate": 3.0334092634776008e-05,
815
+ "loss": 0.32,
816
+ "step": 4500
817
+ },
818
+ {
819
+ "epoch": 5.152931180968564,
820
+ "grad_norm": 1.3977546691894531,
821
+ "learning_rate": 2.843583902809415e-05,
822
+ "loss": 0.3084,
823
+ "step": 4550
824
+ },
825
+ {
826
+ "epoch": 5.20957235910507,
827
+ "grad_norm": 4.15449333190918,
828
+ "learning_rate": 2.6537585421412302e-05,
829
+ "loss": 0.3017,
830
+ "step": 4600
831
+ },
832
+ {
833
+ "epoch": 5.20957235910507,
834
+ "eval_loss": 0.5834115743637085,
835
+ "eval_runtime": 603.5666,
836
+ "eval_samples_per_second": 2.6,
837
+ "eval_steps_per_second": 0.651,
838
+ "step": 4600
839
+ },
840
+ {
841
+ "epoch": 5.266213537241574,
842
+ "grad_norm": 1.6772358417510986,
843
+ "learning_rate": 2.463933181473045e-05,
844
+ "loss": 0.3023,
845
+ "step": 4650
846
+ },
847
+ {
848
+ "epoch": 5.32285471537808,
849
+ "grad_norm": 1.5398720502853394,
850
+ "learning_rate": 2.2741078208048596e-05,
851
+ "loss": 0.3061,
852
+ "step": 4700
853
+ },
854
+ {
855
+ "epoch": 5.379495893514585,
856
+ "grad_norm": 1.567535638809204,
857
+ "learning_rate": 2.0842824601366744e-05,
858
+ "loss": 0.3143,
859
+ "step": 4750
860
+ },
861
+ {
862
+ "epoch": 5.43613707165109,
863
+ "grad_norm": 1.6017929315567017,
864
+ "learning_rate": 1.894457099468489e-05,
865
+ "loss": 0.3009,
866
+ "step": 4800
867
+ },
868
+ {
869
+ "epoch": 5.43613707165109,
870
+ "eval_loss": 0.5849186778068542,
871
+ "eval_runtime": 604.7855,
872
+ "eval_samples_per_second": 2.594,
873
+ "eval_steps_per_second": 0.65,
874
+ "step": 4800
875
+ },
876
+ {
877
+ "epoch": 5.492778249787595,
878
+ "grad_norm": 1.815103530883789,
879
+ "learning_rate": 1.7046317388003038e-05,
880
+ "loss": 0.3196,
881
+ "step": 4850
882
+ },
883
+ {
884
+ "epoch": 5.549419427924101,
885
+ "grad_norm": 1.6697149276733398,
886
+ "learning_rate": 1.5148063781321184e-05,
887
+ "loss": 0.301,
888
+ "step": 4900
889
+ },
890
+ {
891
+ "epoch": 5.606060606060606,
892
+ "grad_norm": 1.9685876369476318,
893
+ "learning_rate": 1.3249810174639332e-05,
894
+ "loss": 0.3275,
895
+ "step": 4950
896
+ },
897
+ {
898
+ "epoch": 5.662701784197111,
899
+ "grad_norm": 1.4504376649856567,
900
+ "learning_rate": 1.135155656795748e-05,
901
+ "loss": 0.3089,
902
+ "step": 5000
903
+ },
904
+ {
905
+ "epoch": 5.662701784197111,
906
+ "eval_loss": 0.5848227739334106,
907
+ "eval_runtime": 604.1032,
908
+ "eval_samples_per_second": 2.597,
909
+ "eval_steps_per_second": 0.651,
910
+ "step": 5000
911
+ },
912
+ {
913
+ "epoch": 5.7193429623336165,
914
+ "grad_norm": 2.6677732467651367,
915
+ "learning_rate": 9.453302961275627e-06,
916
+ "loss": 0.3178,
917
+ "step": 5050
918
+ },
919
+ {
920
+ "epoch": 5.775984140470122,
921
+ "grad_norm": 2.2549753189086914,
922
+ "learning_rate": 7.555049354593774e-06,
923
+ "loss": 0.2891,
924
+ "step": 5100
925
+ },
926
+ {
927
+ "epoch": 5.8326253186066275,
928
+ "grad_norm": 1.5250205993652344,
929
+ "learning_rate": 5.656795747911921e-06,
930
+ "loss": 0.3122,
931
+ "step": 5150
932
+ },
933
+ {
934
+ "epoch": 5.889266496743132,
935
+ "grad_norm": 1.8577101230621338,
936
+ "learning_rate": 3.758542141230068e-06,
937
+ "loss": 0.3032,
938
+ "step": 5200
939
+ },
940
+ {
941
+ "epoch": 5.889266496743132,
942
+ "eval_loss": 0.5855553150177002,
943
+ "eval_runtime": 603.8918,
944
+ "eval_samples_per_second": 2.598,
945
+ "eval_steps_per_second": 0.651,
946
+ "step": 5200
947
+ },
948
+ {
949
+ "epoch": 5.945907674879638,
950
+ "grad_norm": 1.511374592781067,
951
+ "learning_rate": 1.8602885345482157e-06,
952
+ "loss": 0.3278,
953
+ "step": 5250
954
+ }
955
+ ],
956
+ "logging_steps": 50,
957
+ "max_steps": 5298,
958
+ "num_input_tokens_seen": 0,
959
+ "num_train_epochs": 6,
960
+ "save_steps": 200,
961
+ "stateful_callbacks": {
962
+ "TrainerControl": {
963
+ "args": {
964
+ "should_epoch_stop": false,
965
+ "should_evaluate": false,
966
+ "should_log": false,
967
+ "should_save": true,
968
+ "should_training_stop": true
969
+ },
970
+ "attributes": {}
971
+ }
972
+ },
973
+ "total_flos": 9.169929616696749e+17,
974
+ "train_batch_size": 4,
975
+ "trial_name": null,
976
+ "trial_params": null
977
+ }
checkpoint-5298/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e9daeff4f7649949e91566fac7256a9010f7454bfc785ed8b3dcfee3bac4529
3
+ size 5688
preprocessor_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_pan_and_scan": null,
5
+ "do_rescale": true,
6
+ "do_resize": true,
7
+ "image_mean": [
8
+ 0.5,
9
+ 0.5,
10
+ 0.5
11
+ ],
12
+ "image_processor_type": "Gemma3ImageProcessor",
13
+ "image_seq_length": 256,
14
+ "image_std": [
15
+ 0.5,
16
+ 0.5,
17
+ 0.5
18
+ ],
19
+ "pan_and_scan_max_num_crops": null,
20
+ "pan_and_scan_min_crop_size": null,
21
+ "pan_and_scan_min_ratio_to_activate": null,
22
+ "processor_class": "Gemma3Processor",
23
+ "resample": 2,
24
+ "rescale_factor": 0.00392156862745098,
25
+ "size": {
26
+ "height": 896,
27
+ "width": 896
28
+ }
29
+ }
processor_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "image_seq_length": 256,
3
+ "processor_class": "Gemma3Processor"
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boi_token": "<start_of_image>",
3
+ "bos_token": {
4
+ "content": "<bos>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "eoi_token": "<end_of_image>",
11
+ "eos_token": {
12
+ "content": "<end_of_turn>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "image_token": "<image_soft_token>",
19
+ "pad_token": {
20
+ "content": "<pad>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "unk_token": {
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ }
33
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
3
+ size 33384568
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
3
+ size 4689074
tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff