Text Generation
PEFT
Safetensors
English
qlora
lora
structured-output
CFGauss commited on
Commit
83984a9
·
verified ·
1 Parent(s): 2784836

Upload LoRA adapter (README written by author)

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ 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
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Qwen/Qwen3-4B-Instruct-2507
3
+ datasets:
4
+ - u-10bei/structured_data_with_cot_dataset_512_v2
5
+ - u-10bei/structured_data_with_cot_dataset_512_v4
6
+ - u-10bei/structured_data_with_cot_dataset_512_v5
7
+
8
+
9
+ language:
10
+ - en
11
+ license: apache-2.0
12
+ library_name: peft
13
+ pipeline_tag: text-generation
14
+ tags:
15
+ - qlora
16
+ - lora
17
+ - structured-output
18
+ ---
19
+
20
+ qwer3-4b-instruct-output-ver_7
21
+
22
+ This repository provides a **LoRA adapter** fine-tuned from
23
+ **Qwen/Qwen3-4B-Instruct-2507** using **QLoRA (4-bit, Unsloth)**.
24
+
25
+ This repository contains **LoRA adapter weights only**.
26
+ The base model must be loaded separately.
27
+
28
+ ## Training Objective
29
+
30
+ This adapter is trained to improve **structured output accuracy**
31
+ (JSON / YAML / XML / TOML / CSV).
32
+
33
+ Loss is applied only to the final assistant output,
34
+ while intermediate reasoning (Chain-of-Thought) is masked.
35
+
36
+ ## Training Configuration
37
+
38
+ - Base model: Qwen/Qwen3-4B-Instruct-2507
39
+ - Method: QLoRA (4-bit)
40
+ - Max sequence length: 1024
41
+ - Epochs: 3
42
+ - Learning rate: 1e-04
43
+ - LoRA: r=8, alpha=16
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from transformers import AutoModelForCausalLM, AutoTokenizer
49
+ from peft import PeftModel
50
+ import torch
51
+
52
+ base = "Qwen/Qwen3-4B-Instruct-2507"
53
+ adapter = "your_id/your-repo"
54
+
55
+ tokenizer = AutoTokenizer.from_pretrained(base)
56
+ model = AutoModelForCausalLM.from_pretrained(
57
+ base,
58
+ torch_dtype=torch.float16,
59
+ device_map="auto",
60
+ )
61
+ model = PeftModel.from_pretrained(model, adapter)
62
+ ```
63
+
64
+ ## Sources & Terms (IMPORTANT)
65
+
66
+ Training data: u-10bei/structured_data_with_cot_dataset_512_v2
67
+
68
+ Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License.
69
+ Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.
adapter_config.json ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "Qwen3ForCausalLM",
7
+ "parent_library": "transformers.models.qwen3.modeling_qwen3",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit",
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
+ "megatron_config": null,
27
+ "megatron_core": "megatron.core",
28
+ "modules_to_save": null,
29
+ "peft_type": "LORA",
30
+ "peft_version": "0.18.1",
31
+ "qalora_group_size": 16,
32
+ "r": 8,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "down_proj",
37
+ "q_proj",
38
+ "k_proj",
39
+ "v_proj",
40
+ "gate_proj",
41
+ "up_proj",
42
+ "o_proj"
43
+ ],
44
+ "target_parameters": null,
45
+ "task_type": "CAUSAL_LM",
46
+ "trainable_token_indices": null,
47
+ "use_dora": false,
48
+ "use_qalora": false,
49
+ "use_rslora": false
50
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7c20f0321633a0fb5c54e738e8affbd9ea2220002469b245b507f295383de9f
3
+ size 66126768
added_tokens.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>",
5
+ "<|object_ref_start|>",
6
+ "<|object_ref_end|>",
7
+ "<|box_start|>",
8
+ "<|box_end|>",
9
+ "<|quad_start|>",
10
+ "<|quad_end|>",
11
+ "<|vision_start|>",
12
+ "<|vision_end|>",
13
+ "<|vision_pad|>",
14
+ "<|image_pad|>",
15
+ "<|video_pad|>"
16
+ ],
17
+ "eos_token": {
18
+ "content": "<|im_end|>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "pad_token": {
25
+ "content": "<|vision_pad|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 262144,
235
+ "pad_token": "<|vision_pad|>",
236
+ "padding_side": "right",
237
+ "split_special_tokens": false,
238
+ "tokenizer_class": "Qwen2Tokenizer",
239
+ "unk_token": null
240
+ }
trainer_state.json ADDED
@@ -0,0 +1,292 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.8941877794336811,
6
+ "eval_steps": 50,
7
+ "global_step": 300,
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.029806259314456036,
14
+ "grad_norm": 0.7608007788658142,
15
+ "learning_rate": 8.910891089108911e-06,
16
+ "loss": 0.9165,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.05961251862891207,
21
+ "grad_norm": 0.5924040675163269,
22
+ "learning_rate": 1.8811881188118814e-05,
23
+ "loss": 0.6788,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.08941877794336811,
28
+ "grad_norm": 0.6122109293937683,
29
+ "learning_rate": 2.871287128712871e-05,
30
+ "loss": 0.7894,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.11922503725782414,
35
+ "grad_norm": 0.2688486874103546,
36
+ "learning_rate": 3.861386138613862e-05,
37
+ "loss": 0.6559,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.14903129657228018,
42
+ "grad_norm": 0.2745978534221649,
43
+ "learning_rate": 4.851485148514851e-05,
44
+ "loss": 0.6485,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.14903129657228018,
49
+ "eval_loss": 0.5835313200950623,
50
+ "eval_runtime": 21.704,
51
+ "eval_samples_per_second": 13.039,
52
+ "eval_steps_per_second": 6.543,
53
+ "step": 50
54
+ },
55
+ {
56
+ "epoch": 0.17883755588673622,
57
+ "grad_norm": 0.16949200630187988,
58
+ "learning_rate": 5.8415841584158416e-05,
59
+ "loss": 0.4923,
60
+ "step": 60
61
+ },
62
+ {
63
+ "epoch": 0.20864381520119224,
64
+ "grad_norm": 0.24523590505123138,
65
+ "learning_rate": 6.831683168316833e-05,
66
+ "loss": 0.4495,
67
+ "step": 70
68
+ },
69
+ {
70
+ "epoch": 0.23845007451564829,
71
+ "grad_norm": 0.26742103695869446,
72
+ "learning_rate": 7.821782178217822e-05,
73
+ "loss": 0.5639,
74
+ "step": 80
75
+ },
76
+ {
77
+ "epoch": 0.26825633383010433,
78
+ "grad_norm": 0.29816722869873047,
79
+ "learning_rate": 8.811881188118812e-05,
80
+ "loss": 0.3953,
81
+ "step": 90
82
+ },
83
+ {
84
+ "epoch": 0.29806259314456035,
85
+ "grad_norm": 0.19821330904960632,
86
+ "learning_rate": 9.801980198019803e-05,
87
+ "loss": 0.3853,
88
+ "step": 100
89
+ },
90
+ {
91
+ "epoch": 0.29806259314456035,
92
+ "eval_loss": 0.4391556978225708,
93
+ "eval_runtime": 21.5445,
94
+ "eval_samples_per_second": 13.136,
95
+ "eval_steps_per_second": 6.591,
96
+ "step": 100
97
+ },
98
+ {
99
+ "epoch": 0.32786885245901637,
100
+ "grad_norm": 0.2450932264328003,
101
+ "learning_rate": 9.998080547518606e-05,
102
+ "loss": 0.3644,
103
+ "step": 110
104
+ },
105
+ {
106
+ "epoch": 0.35767511177347244,
107
+ "grad_norm": 0.44731152057647705,
108
+ "learning_rate": 9.990285297503122e-05,
109
+ "loss": 0.509,
110
+ "step": 120
111
+ },
112
+ {
113
+ "epoch": 0.38748137108792846,
114
+ "grad_norm": 0.2764962613582611,
115
+ "learning_rate": 9.976503628272744e-05,
116
+ "loss": 0.4084,
117
+ "step": 130
118
+ },
119
+ {
120
+ "epoch": 0.4172876304023845,
121
+ "grad_norm": 0.37768784165382385,
122
+ "learning_rate": 9.95675207251941e-05,
123
+ "loss": 0.3479,
124
+ "step": 140
125
+ },
126
+ {
127
+ "epoch": 0.44709388971684055,
128
+ "grad_norm": 0.3421232998371124,
129
+ "learning_rate": 9.931054324498228e-05,
130
+ "loss": 0.3088,
131
+ "step": 150
132
+ },
133
+ {
134
+ "epoch": 0.44709388971684055,
135
+ "eval_loss": 0.3867914080619812,
136
+ "eval_runtime": 21.5663,
137
+ "eval_samples_per_second": 13.122,
138
+ "eval_steps_per_second": 6.584,
139
+ "step": 150
140
+ },
141
+ {
142
+ "epoch": 0.47690014903129657,
143
+ "grad_norm": 0.3965997099876404,
144
+ "learning_rate": 9.899441211603495e-05,
145
+ "loss": 0.3033,
146
+ "step": 160
147
+ },
148
+ {
149
+ "epoch": 0.5067064083457526,
150
+ "grad_norm": 0.40676477551460266,
151
+ "learning_rate": 9.861950657387711e-05,
152
+ "loss": 0.469,
153
+ "step": 170
154
+ },
155
+ {
156
+ "epoch": 0.5365126676602087,
157
+ "grad_norm": 0.2048766016960144,
158
+ "learning_rate": 9.818627636067932e-05,
159
+ "loss": 0.4264,
160
+ "step": 180
161
+ },
162
+ {
163
+ "epoch": 0.5663189269746647,
164
+ "grad_norm": 0.24298368394374847,
165
+ "learning_rate": 9.769524118574038e-05,
166
+ "loss": 0.3619,
167
+ "step": 190
168
+ },
169
+ {
170
+ "epoch": 0.5961251862891207,
171
+ "grad_norm": 0.22604210674762726,
172
+ "learning_rate": 9.714699010203644e-05,
173
+ "loss": 0.3244,
174
+ "step": 200
175
+ },
176
+ {
177
+ "epoch": 0.5961251862891207,
178
+ "eval_loss": 0.3654942810535431,
179
+ "eval_runtime": 21.4485,
180
+ "eval_samples_per_second": 13.194,
181
+ "eval_steps_per_second": 6.621,
182
+ "step": 200
183
+ },
184
+ {
185
+ "epoch": 0.6259314456035767,
186
+ "grad_norm": 0.28323236107826233,
187
+ "learning_rate": 9.654218079958453e-05,
188
+ "loss": 0.3522,
189
+ "step": 210
190
+ },
191
+ {
192
+ "epoch": 0.6557377049180327,
193
+ "grad_norm": 0.09385296702384949,
194
+ "learning_rate": 9.588153881646781e-05,
195
+ "loss": 0.3867,
196
+ "step": 220
197
+ },
198
+ {
199
+ "epoch": 0.6855439642324889,
200
+ "grad_norm": 0.252581387758255,
201
+ "learning_rate": 9.516585666846975e-05,
202
+ "loss": 0.3195,
203
+ "step": 230
204
+ },
205
+ {
206
+ "epoch": 0.7153502235469449,
207
+ "grad_norm": 0.15952186286449432,
208
+ "learning_rate": 9.439599289836034e-05,
209
+ "loss": 0.339,
210
+ "step": 240
211
+ },
212
+ {
213
+ "epoch": 0.7451564828614009,
214
+ "grad_norm": 0.35795724391937256,
215
+ "learning_rate": 9.357287104597576e-05,
216
+ "loss": 0.4031,
217
+ "step": 250
218
+ },
219
+ {
220
+ "epoch": 0.7451564828614009,
221
+ "eval_loss": 0.35539424419403076,
222
+ "eval_runtime": 21.4478,
223
+ "eval_samples_per_second": 13.195,
224
+ "eval_steps_per_second": 6.621,
225
+ "step": 250
226
+ },
227
+ {
228
+ "epoch": 0.7749627421758569,
229
+ "grad_norm": 0.2801375687122345,
230
+ "learning_rate": 9.269747854032652e-05,
231
+ "loss": 0.3129,
232
+ "step": 260
233
+ },
234
+ {
235
+ "epoch": 0.8047690014903129,
236
+ "grad_norm": 0.43305742740631104,
237
+ "learning_rate": 9.177086551506306e-05,
238
+ "loss": 0.2951,
239
+ "step": 270
240
+ },
241
+ {
242
+ "epoch": 0.834575260804769,
243
+ "grad_norm": 0.2499503493309021,
244
+ "learning_rate": 9.07941435487202e-05,
245
+ "loss": 0.4211,
246
+ "step": 280
247
+ },
248
+ {
249
+ "epoch": 0.8643815201192251,
250
+ "grad_norm": 0.47500255703926086,
251
+ "learning_rate": 8.97684843312512e-05,
252
+ "loss": 0.446,
253
+ "step": 290
254
+ },
255
+ {
256
+ "epoch": 0.8941877794336811,
257
+ "grad_norm": 0.23257675766944885,
258
+ "learning_rate": 8.869511825845132e-05,
259
+ "loss": 0.2706,
260
+ "step": 300
261
+ },
262
+ {
263
+ "epoch": 0.8941877794336811,
264
+ "eval_loss": 0.3487342596054077,
265
+ "eval_runtime": 21.4555,
266
+ "eval_samples_per_second": 13.19,
267
+ "eval_steps_per_second": 6.618,
268
+ "step": 300
269
+ }
270
+ ],
271
+ "logging_steps": 10,
272
+ "max_steps": 1008,
273
+ "num_input_tokens_seen": 0,
274
+ "num_train_epochs": 3,
275
+ "save_steps": 50,
276
+ "stateful_callbacks": {
277
+ "TrainerControl": {
278
+ "args": {
279
+ "should_epoch_stop": false,
280
+ "should_evaluate": false,
281
+ "should_log": false,
282
+ "should_save": true,
283
+ "should_training_stop": false
284
+ },
285
+ "attributes": {}
286
+ }
287
+ },
288
+ "total_flos": 5.537254492345958e+16,
289
+ "train_batch_size": 2,
290
+ "trial_name": null,
291
+ "trial_params": null
292
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff