Text Generation
PEFT
Safetensors
English
qlora
lora
structured-output
CFGauss commited on
Commit
d1dcd9a
·
verified ·
1 Parent(s): 5f03c92

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
+ <【課題】ここは自分で記入して下さい>
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: 4
42
+ - Learning rate: 2e-04
43
+ - LoRA: r=64, alpha=128
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": 128,
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": 64,
33
+ "rank_pattern": {},
34
+ "revision": null,
35
+ "target_modules": [
36
+ "o_proj",
37
+ "up_proj",
38
+ "q_proj",
39
+ "v_proj",
40
+ "down_proj",
41
+ "gate_proj",
42
+ "k_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:ca6afdd83e4710474233862d9358257c07e6d59b9b0d90e854b6dee7ccd343d9
3
+ size 528550256
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,335 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0417287630402385,
6
+ "eval_steps": 50,
7
+ "global_step": 350,
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": 2.8659629606409e-05,
15
+ "learning_rate": 1.3333333333333333e-05,
16
+ "loss": 1.0016,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.05961251862891207,
21
+ "grad_norm": 1.3777846106677316e-05,
22
+ "learning_rate": 2.814814814814815e-05,
23
+ "loss": 0.59,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.08941877794336811,
28
+ "grad_norm": 7.97840766608715e-06,
29
+ "learning_rate": 4.296296296296296e-05,
30
+ "loss": 0.6772,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.11922503725782414,
35
+ "grad_norm": 6.855416359030642e-06,
36
+ "learning_rate": 5.7777777777777776e-05,
37
+ "loss": 0.6207,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.14903129657228018,
42
+ "grad_norm": 8.57202394399792e-06,
43
+ "learning_rate": 7.25925925925926e-05,
44
+ "loss": 0.6395,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.14903129657228018,
49
+ "eval_loss": 0.5846871733665466,
50
+ "eval_runtime": 87.5403,
51
+ "eval_samples_per_second": 3.233,
52
+ "eval_steps_per_second": 1.622,
53
+ "step": 50
54
+ },
55
+ {
56
+ "epoch": 0.17883755588673622,
57
+ "grad_norm": 3.3820235785242403e-06,
58
+ "learning_rate": 8.740740740740741e-05,
59
+ "loss": 0.4937,
60
+ "step": 60
61
+ },
62
+ {
63
+ "epoch": 0.20864381520119224,
64
+ "grad_norm": 5.906346359552117e-06,
65
+ "learning_rate": 0.00010222222222222222,
66
+ "loss": 0.467,
67
+ "step": 70
68
+ },
69
+ {
70
+ "epoch": 0.23845007451564829,
71
+ "grad_norm": 5.968211553408764e-06,
72
+ "learning_rate": 0.00011703703703703704,
73
+ "loss": 0.6052,
74
+ "step": 80
75
+ },
76
+ {
77
+ "epoch": 0.26825633383010433,
78
+ "grad_norm": 6.654247954429593e-06,
79
+ "learning_rate": 0.00013185185185185186,
80
+ "loss": 0.4269,
81
+ "step": 90
82
+ },
83
+ {
84
+ "epoch": 0.29806259314456035,
85
+ "grad_norm": 1.4780930541746784e-05,
86
+ "learning_rate": 0.00014666666666666666,
87
+ "loss": 0.4415,
88
+ "step": 100
89
+ },
90
+ {
91
+ "epoch": 0.29806259314456035,
92
+ "eval_loss": 0.49561959505081177,
93
+ "eval_runtime": 86.7616,
94
+ "eval_samples_per_second": 3.262,
95
+ "eval_steps_per_second": 1.637,
96
+ "step": 100
97
+ },
98
+ {
99
+ "epoch": 0.32786885245901637,
100
+ "grad_norm": 5.26007761436631e-06,
101
+ "learning_rate": 0.0001614814814814815,
102
+ "loss": 0.4201,
103
+ "step": 110
104
+ },
105
+ {
106
+ "epoch": 0.35767511177347244,
107
+ "grad_norm": 1.0745498912001494e-05,
108
+ "learning_rate": 0.0001762962962962963,
109
+ "loss": 0.5687,
110
+ "step": 120
111
+ },
112
+ {
113
+ "epoch": 0.38748137108792846,
114
+ "grad_norm": 9.13943767955061e-06,
115
+ "learning_rate": 0.00019111111111111114,
116
+ "loss": 0.4544,
117
+ "step": 130
118
+ },
119
+ {
120
+ "epoch": 0.4172876304023845,
121
+ "grad_norm": 9.74733575276332e-06,
122
+ "learning_rate": 0.00019999459826567048,
123
+ "loss": 0.3984,
124
+ "step": 140
125
+ },
126
+ {
127
+ "epoch": 0.44709388971684055,
128
+ "grad_norm": 7.19069566912367e-06,
129
+ "learning_rate": 0.00019993383545625465,
130
+ "loss": 0.3551,
131
+ "step": 150
132
+ },
133
+ {
134
+ "epoch": 0.44709388971684055,
135
+ "eval_loss": 0.44105133414268494,
136
+ "eval_runtime": 86.7076,
137
+ "eval_samples_per_second": 3.264,
138
+ "eval_steps_per_second": 1.638,
139
+ "step": 150
140
+ },
141
+ {
142
+ "epoch": 0.47690014903129657,
143
+ "grad_norm": 5.66791504752473e-06,
144
+ "learning_rate": 0.00019980559883241722,
145
+ "loss": 0.3437,
146
+ "step": 160
147
+ },
148
+ {
149
+ "epoch": 0.5067064083457526,
150
+ "grad_norm": 9.916246199281886e-06,
151
+ "learning_rate": 0.0001996099749775874,
152
+ "loss": 0.533,
153
+ "step": 170
154
+ },
155
+ {
156
+ "epoch": 0.5365126676602087,
157
+ "grad_norm": 6.7572823354566935e-06,
158
+ "learning_rate": 0.00019934709597403352,
159
+ "loss": 0.4875,
160
+ "step": 180
161
+ },
162
+ {
163
+ "epoch": 0.5663189269746647,
164
+ "grad_norm": 2.7519972718437202e-05,
165
+ "learning_rate": 0.00019901713931368332,
166
+ "loss": 0.4088,
167
+ "step": 190
168
+ },
169
+ {
170
+ "epoch": 0.5961251862891207,
171
+ "grad_norm": 6.2564413383370265e-06,
172
+ "learning_rate": 0.00019862032777828405,
173
+ "loss": 0.3734,
174
+ "step": 200
175
+ },
176
+ {
177
+ "epoch": 0.5961251862891207,
178
+ "eval_loss": 0.416751503944397,
179
+ "eval_runtime": 86.855,
180
+ "eval_samples_per_second": 3.258,
181
+ "eval_steps_per_second": 1.635,
182
+ "step": 200
183
+ },
184
+ {
185
+ "epoch": 0.6259314456035767,
186
+ "grad_norm": 6.829235189798055e-06,
187
+ "learning_rate": 0.00019815692928898347,
188
+ "loss": 0.4013,
189
+ "step": 210
190
+ },
191
+ {
192
+ "epoch": 0.6557377049180327,
193
+ "grad_norm": 2.6349375730205793e-06,
194
+ "learning_rate": 0.00019762725672543371,
195
+ "loss": 0.439,
196
+ "step": 220
197
+ },
198
+ {
199
+ "epoch": 0.6855439642324889,
200
+ "grad_norm": 6.470134849223541e-06,
201
+ "learning_rate": 0.00019703166771453952,
202
+ "loss": 0.3611,
203
+ "step": 230
204
+ },
205
+ {
206
+ "epoch": 0.7153502235469449,
207
+ "grad_norm": 4.913066732115112e-06,
208
+ "learning_rate": 0.0001963705643889941,
209
+ "loss": 0.3843,
210
+ "step": 240
211
+ },
212
+ {
213
+ "epoch": 0.7451564828614009,
214
+ "grad_norm": 8.839782822178677e-06,
215
+ "learning_rate": 0.00019564439311576512,
216
+ "loss": 0.4593,
217
+ "step": 250
218
+ },
219
+ {
220
+ "epoch": 0.7451564828614009,
221
+ "eval_loss": 0.3998318612575531,
222
+ "eval_runtime": 86.6219,
223
+ "eval_samples_per_second": 3.267,
224
+ "eval_steps_per_second": 1.639,
225
+ "step": 250
226
+ },
227
+ {
228
+ "epoch": 0.7749627421758569,
229
+ "grad_norm": 6.905674126755912e-06,
230
+ "learning_rate": 0.00019485364419471454,
231
+ "loss": 0.3549,
232
+ "step": 260
233
+ },
234
+ {
235
+ "epoch": 0.8047690014903129,
236
+ "grad_norm": 1.1015033123840112e-05,
237
+ "learning_rate": 0.00019399885152755558,
238
+ "loss": 0.33,
239
+ "step": 270
240
+ },
241
+ {
242
+ "epoch": 0.834575260804769,
243
+ "grad_norm": 7.4981344369007275e-06,
244
+ "learning_rate": 0.00019308059225737014,
245
+ "loss": 0.464,
246
+ "step": 280
247
+ },
248
+ {
249
+ "epoch": 0.8643815201192251,
250
+ "grad_norm": 1.2525980309874285e-05,
251
+ "learning_rate": 0.00019209948637893088,
252
+ "loss": 0.4893,
253
+ "step": 290
254
+ },
255
+ {
256
+ "epoch": 0.8941877794336811,
257
+ "grad_norm": 8.533593245374504e-06,
258
+ "learning_rate": 0.00019105619632008982,
259
+ "loss": 0.3002,
260
+ "step": 300
261
+ },
262
+ {
263
+ "epoch": 0.8941877794336811,
264
+ "eval_loss": 0.38659366965293884,
265
+ "eval_runtime": 86.718,
266
+ "eval_samples_per_second": 3.263,
267
+ "eval_steps_per_second": 1.637,
268
+ "step": 300
269
+ },
270
+ {
271
+ "epoch": 0.9239940387481371,
272
+ "grad_norm": 6.511543233500561e-06,
273
+ "learning_rate": 0.0001899514264945173,
274
+ "loss": 0.3519,
275
+ "step": 310
276
+ },
277
+ {
278
+ "epoch": 0.9538002980625931,
279
+ "grad_norm": 9.529394446872175e-06,
280
+ "learning_rate": 0.00018878592282609228,
281
+ "loss": 0.2376,
282
+ "step": 320
283
+ },
284
+ {
285
+ "epoch": 0.9836065573770492,
286
+ "grad_norm": 5.924814558966318e-06,
287
+ "learning_rate": 0.00018756047224526606,
288
+ "loss": 0.3868,
289
+ "step": 330
290
+ },
291
+ {
292
+ "epoch": 1.0119225037257824,
293
+ "grad_norm": 7.456989806087222e-06,
294
+ "learning_rate": 0.0001862759021577385,
295
+ "loss": 0.4924,
296
+ "step": 340
297
+ },
298
+ {
299
+ "epoch": 1.0417287630402385,
300
+ "grad_norm": 8.004604751477018e-06,
301
+ "learning_rate": 0.00018493307988580652,
302
+ "loss": 0.3768,
303
+ "step": 350
304
+ },
305
+ {
306
+ "epoch": 1.0417287630402385,
307
+ "eval_loss": 0.3797300159931183,
308
+ "eval_runtime": 86.5928,
309
+ "eval_samples_per_second": 3.268,
310
+ "eval_steps_per_second": 1.64,
311
+ "step": 350
312
+ }
313
+ ],
314
+ "logging_steps": 10,
315
+ "max_steps": 1344,
316
+ "num_input_tokens_seen": 0,
317
+ "num_train_epochs": 4,
318
+ "save_steps": 50,
319
+ "stateful_callbacks": {
320
+ "TrainerControl": {
321
+ "args": {
322
+ "should_epoch_stop": false,
323
+ "should_evaluate": false,
324
+ "should_log": false,
325
+ "should_save": true,
326
+ "should_training_stop": false
327
+ },
328
+ "attributes": {}
329
+ }
330
+ },
331
+ "total_flos": 6.971853201788314e+16,
332
+ "train_batch_size": 2,
333
+ "trial_name": null,
334
+ "trial_params": null
335
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff