univa-JASON commited on
Commit
21ca048
·
1 Parent(s): 642fc48

first commit

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,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ - en
5
+ tags:
6
+ - chemistry
7
+ - biology
8
+ - toxicology
9
+ license: apache-2.0
10
+ base_model: Qwen/Qwen3-14B
11
+ ---
12
+
13
+ # Blowfish
14
+
15
+ ## Introduction
16
+
17
+ **Blowfish는 **분자 독성 예측**을 수행하기 위해 개발된 대형 언어 모델(LLM)입니다.
18
+
19
+ **Qwen3-14B**를 기반으로 파인튜닝(Fine-tuning)되었으며, 단순한 이진 분류를 넘어 **Chain-of-Thought (CoT)** 방식을 통해 독성 판정의 화학적/생물학적 근거를 논리적으로 설명합니다.
20
+
21
+ 사용자가 입력한 **SMILES**, **Cell Line**, **Bio Assay**, 그리고 **주요 RDKit Features**을 종합적으로 분석하여 최종적으로 독성 여부(`독성` / `비독성`)를 판단합니다.
22
+
23
+ ### 주요 특징
24
+ * **Base Model:** Qwen3-14B
25
+ * **Task:** 이진 독성 예측 (Binary Toxicity Prediction) 및 분자 구조 분석
26
+ * **Language:** 한국어 (시스템 지시문), 영어 (화학적 추론 및 답변)
27
+ * **Input Data:**
28
+ - SMILES Code
29
+ - Cell Line / Cell Type
30
+ - Bio Assay Name
31
+ - RDKit Features (SHAP Value 기준 상/하위 Feature 각 3개)
32
+
33
+ ---
34
+
35
+ ## 프롬프트 형식
36
+
37
+ 모델의 성능을 최적화하기 위해 학습 시 사용된 프롬프트 형식을 준수해야 합니다.
38
+
39
+ ### 시스템 프롬프트 (System Prompt)
40
+ > "당신은 분자 독성 예측에 특화된 화학정보학/독성학 전문가입니다. 사용자는 독성/비독성에 영향을 많이 끼치는 Feature 3개씩을 제공합니다... (중략) ... tool call을 사용하지 마세요."
41
+
42
+ ### 사용자 입력 템플릿 (User Input Template)
43
+
44
+ ```
45
+ SMILES: {smiles_code}
46
+ Cell Line: {cell_line}
47
+ Bio Assay Name: {endpoint_category}
48
+ Feature NL: {feature_NL_description}
49
+ Feature Descript: {feature_detailed_description}
50
+
51
+ {cot_instruction}
52
+ ```
53
+
54
+ ---
55
+
56
+ # Inference
57
+
58
+ ## requirements
59
+ ```bash
60
+ pip install transformers torch accelerate
61
+ ```
62
+
63
+ ## Usage with transformers
64
+
65
+ ```python
66
+ import torch
67
+ from transformers import AutoModelForCausalLM, AutoTokenizer
68
+
69
+ # 1. 모델 및 토크나이저 로드
70
+ model_id = "TeamUNIVA/Blowfish"
71
+
72
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
73
+ model = AutoModelForCausalLM.from_pretrained(
74
+ model_id,
75
+ torch_dtype=torch.bfloat16,
76
+ device_map="auto"
77
+ )
78
+
79
+ # 2. 시스템 프롬프트 정의
80
+ system_prompt = (
81
+ "당신은 분자 독성 예측에 특화된 화학정보학/독성학 전문가입니다.\n"
82
+ "사용자는 독성/비독성에 영향을 많이 끼치는 Feature 3개씩을 제공합니다.\n\n"
83
+ "입력(사용자가 제공):\n"
84
+ "- SMILES\n- Cell Type\n- Cell Line\n- Bio Assay Name\n"
85
+ "- 독성에 끼치는 영향이 큰 상위 3개 RDKit Feature\n"
86
+ "- 비독성에 끼치는 영향이 큰 상위 3개 RDKit Feature\n\n"
87
+ "수행 과업(Tasks):\n"
88
+ "SMILES 구조 분석\n"
89
+ "- 고리(방향족/지방족), 헤테로원자, 전하 중심, 반응성 모티프, H-결합 공여/수용기 등을\n"
90
+ " SMILES에서 직접 관찰 가능한 범위로만 기술.\n\n"
91
+ "Cell Type, Cell Line, Assay Name 특징 분석 및 SMILES와 연결\n\n"
92
+ "RDKit feature 분석\n"
93
+ "- 각 feature가 의미하는 바와 일반적 독성 리스크에 주는 영향 요약.\n"
94
+ "- 가능한 경우 Assay 맥락(예: ARE 산화스트레스)과 연결.\n\n"
95
+ "종합 판단(최종 결론)\n"
96
+ "- (1) SMILES 모티프, (2) Cell line/Cell type + Assay 맥락, (3) RDKit feature를 통합해\n"
97
+ " 독성 여부를 이진으로 판단.\n\n"
98
+ "출력 규칙:\n"
99
+ "- 본문은 영어로 작성.\n"
100
+ "- 마지막 줄에 아래 중 하나만 단독 표기:\n"
101
+ "<answer>toxic</answer>\n"
102
+ "<answer>nontoxic</answer>\n\n"
103
+ )
104
+
105
+ # 3. 입력 데이터 예시
106
+ smiles_code = "O=C(O)/C=C/C(=O)O.O=C(O)/C=C/C(=O)O.O=C(O)/C=C/C(=O)O.CN(C)CCN(Cc1cccs1)c2ccccn2.CN(C)CCN(Cc1cccs1)c2ccccn2"
107
+ cell_line = "HepG2 (Liver)"
108
+ feature_NL = "Top toxic features: ... / Top non-toxic features: ...",
109
+ feature_descript = "Detailed feature descriptions"
110
+ bio_assay = "AhR"
111
+ instruction = "화합물 O=C(O)/C=C/C(=O)O.O=C(O)/C=C/C(=O)O.O=C(O)/C=C/C(=O)O.CN(C)CCN(Cc1cccs1)c2ccccn2.CN(C)CCN(Cc1cccs1)c2ccccn2의 독성/비독성 여부를 판단하시오."
112
+
113
+
114
+ # 4. 프롬프트 구성
115
+ user_content = (
116
+ f"SMILES: {smiles_code}\n"
117
+ f"Cell Line: {cell_line}\n"
118
+ f"Bio Assay Name: {bio_assay}\n"
119
+ f"Feature NL: {feature_NL}\n"
120
+ f"Feature Descript: {feature_descript}\n\n"
121
+ f"{instruction}"
122
+ )
123
+
124
+ # 5. 채팅 템플릿 적용 및 생성
125
+ messages = [
126
+ {"role": "system", "content": system_prompt},
127
+ {"role": "user", "content": user_content}
128
+ ]
129
+
130
+ text = tokenizer.apply_chat_template(
131
+ messages,
132
+ tokenize=False,
133
+ add_generation_prompt=True
134
+ )
135
+
136
+ inputs = tokenizer([text], return_tensors="pt").to(model.device)
137
+
138
+ outputs = model.generate(
139
+ **inputs,
140
+ max_new_tokens=8192,
141
+ temperature=0.7,
142
+ top_p=0.8,
143
+ do_sample=True
144
+ )
145
+
146
+ # 6. 결과 디코딩
147
+ response = tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True)
148
+ print(response)
149
+ ```
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
+ }
args.json ADDED
@@ -0,0 +1,393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "output_dir": "/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539",
3
+ "overwrite_output_dir": false,
4
+ "do_train": false,
5
+ "do_eval": false,
6
+ "do_predict": false,
7
+ "eval_strategy": "steps",
8
+ "prediction_loss_only": false,
9
+ "per_device_train_batch_size": 1,
10
+ "per_device_eval_batch_size": 1,
11
+ "per_gpu_train_batch_size": null,
12
+ "per_gpu_eval_batch_size": null,
13
+ "gradient_accumulation_steps": 4,
14
+ "eval_accumulation_steps": null,
15
+ "eval_delay": 0,
16
+ "torch_empty_cache_steps": null,
17
+ "learning_rate": 5e-06,
18
+ "weight_decay": 0.1,
19
+ "adam_beta1": 0.9,
20
+ "adam_beta2": 0.95,
21
+ "adam_epsilon": 1e-08,
22
+ "max_grad_norm": 1.0,
23
+ "num_train_epochs": 3.0,
24
+ "max_steps": -1,
25
+ "lr_scheduler_type": "cosine",
26
+ "lr_scheduler_kwargs": null,
27
+ "warmup_ratio": 0.03,
28
+ "warmup_steps": 0,
29
+ "log_level": "passive",
30
+ "log_level_replica": "warning",
31
+ "log_on_each_node": true,
32
+ "logging_dir": "/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539/runs",
33
+ "logging_strategy": "steps",
34
+ "logging_first_step": true,
35
+ "logging_steps": 1,
36
+ "logging_nan_inf_filter": true,
37
+ "save_strategy": "steps",
38
+ "save_steps": 250.0,
39
+ "save_total_limit": 3,
40
+ "save_safetensors": true,
41
+ "save_on_each_node": false,
42
+ "save_only_model": true,
43
+ "restore_callback_states_from_checkpoint": false,
44
+ "no_cuda": false,
45
+ "use_cpu": false,
46
+ "use_mps_device": false,
47
+ "seed": 42,
48
+ "data_seed": 42,
49
+ "jit_mode_eval": false,
50
+ "bf16": true,
51
+ "fp16": false,
52
+ "fp16_opt_level": "O1",
53
+ "half_precision_backend": "auto",
54
+ "bf16_full_eval": false,
55
+ "fp16_full_eval": false,
56
+ "tf32": null,
57
+ "local_rank": 0,
58
+ "ddp_backend": null,
59
+ "tpu_num_cores": null,
60
+ "tpu_metrics_debug": false,
61
+ "debug": null,
62
+ "dataloader_drop_last": false,
63
+ "eval_steps": 50.0,
64
+ "dataloader_num_workers": 4,
65
+ "dataloader_prefetch_factor": null,
66
+ "past_index": -1,
67
+ "run_name": "/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539",
68
+ "disable_tqdm": null,
69
+ "remove_unused_columns": true,
70
+ "label_names": null,
71
+ "load_best_model_at_end": false,
72
+ "metric_for_best_model": "loss",
73
+ "greater_is_better": false,
74
+ "ignore_data_skip": false,
75
+ "fsdp": [],
76
+ "fsdp_min_num_params": 0,
77
+ "fsdp_config": null,
78
+ "fsdp_transformer_layer_cls_to_wrap": null,
79
+ "accelerator_config": {
80
+ "dispatch_batches": false
81
+ },
82
+ "parallelism_config": null,
83
+ "deepspeed": {
84
+ "train_batch_size": "auto",
85
+ "train_micro_batch_size_per_gpu": "auto",
86
+ "gradient_accumulation_steps": "auto",
87
+ "gradient_clipping": "auto",
88
+ "zero_optimization": {
89
+ "stage": 3,
90
+ "offload_optimizer": {
91
+ "device": "cpu",
92
+ "pin_memory": true
93
+ },
94
+ "offload_param": {
95
+ "device": "cpu",
96
+ "pin_memory": true
97
+ },
98
+ "overlap_comm": true,
99
+ "contiguous_gradients": true,
100
+ "sub_group_size": 1000000000.0,
101
+ "reduce_bucket_size": "auto",
102
+ "stage3_prefetch_bucket_size": "auto",
103
+ "stage3_param_persistence_threshold": "auto",
104
+ "stage3_max_live_parameters": 1000000000.0,
105
+ "stage3_max_reuse_distance": 1000000000.0,
106
+ "stage3_gather_16bit_weights_on_model_save": true
107
+ },
108
+ "bf16": {
109
+ "enabled": "auto"
110
+ },
111
+ "fp16": {
112
+ "enabled": "auto"
113
+ }
114
+ },
115
+ "label_smoothing_factor": 0.0,
116
+ "optim": "adamw_torch",
117
+ "optim_args": null,
118
+ "adafactor": false,
119
+ "group_by_length": false,
120
+ "length_column_name": "length",
121
+ "report_to": [
122
+ "mlflow"
123
+ ],
124
+ "project": "huggingface",
125
+ "trackio_space_id": "trackio",
126
+ "ddp_find_unused_parameters": null,
127
+ "ddp_bucket_cap_mb": null,
128
+ "ddp_broadcast_buffers": null,
129
+ "dataloader_pin_memory": true,
130
+ "dataloader_persistent_workers": false,
131
+ "skip_memory_metrics": true,
132
+ "use_legacy_prediction_loop": false,
133
+ "push_to_hub": false,
134
+ "resume_from_checkpoint": null,
135
+ "hub_model_id": null,
136
+ "hub_strategy": "every_save",
137
+ "hub_token": null,
138
+ "hub_private_repo": null,
139
+ "hub_always_push": false,
140
+ "hub_revision": null,
141
+ "gradient_checkpointing": true,
142
+ "gradient_checkpointing_kwargs": null,
143
+ "include_inputs_for_metrics": false,
144
+ "include_for_metrics": [],
145
+ "eval_do_concat_batches": true,
146
+ "fp16_backend": "auto",
147
+ "push_to_hub_model_id": null,
148
+ "push_to_hub_organization": null,
149
+ "push_to_hub_token": null,
150
+ "mp_parameters": "",
151
+ "auto_find_batch_size": false,
152
+ "full_determinism": false,
153
+ "torchdynamo": null,
154
+ "ray_scope": "last",
155
+ "ddp_timeout": 18000000,
156
+ "torch_compile": false,
157
+ "torch_compile_backend": null,
158
+ "torch_compile_mode": null,
159
+ "include_tokens_per_second": false,
160
+ "include_num_input_tokens_seen": false,
161
+ "neftune_noise_alpha": null,
162
+ "optim_target_modules": null,
163
+ "batch_eval_metrics": false,
164
+ "eval_on_start": false,
165
+ "use_liger_kernel": false,
166
+ "liger_kernel_config": null,
167
+ "eval_use_gather_object": false,
168
+ "average_tokens_across_devices": true,
169
+ "sortish_sampler": false,
170
+ "predict_with_generate": false,
171
+ "generation_max_length": null,
172
+ "generation_num_beams": null,
173
+ "generation_config": null,
174
+ "tuner_backend": "peft",
175
+ "vit_gradient_checkpointing": null,
176
+ "router_aux_loss_coef": 0.0,
177
+ "enable_dft_loss": false,
178
+ "enable_channel_loss": false,
179
+ "check_model": true,
180
+ "acc_strategy": "token",
181
+ "train_dataloader_shuffle": true,
182
+ "max_epochs": null,
183
+ "aligner_lr": null,
184
+ "vit_lr": null,
185
+ "use_logits_to_keep": null,
186
+ "ds3_gather_for_generation": true,
187
+ "resume_only_model": false,
188
+ "optimizer": null,
189
+ "loss_type": null,
190
+ "eval_metric": null,
191
+ "callbacks": [],
192
+ "early_stop_interval": null,
193
+ "eval_use_evalscope": false,
194
+ "eval_dataset": [],
195
+ "eval_dataset_args": null,
196
+ "eval_limit": null,
197
+ "eval_generation_config": null,
198
+ "extra_eval_args": null,
199
+ "tuner_type": "full",
200
+ "use_galore": false,
201
+ "galore_target_modules": null,
202
+ "galore_rank": 128,
203
+ "galore_update_proj_gap": 50,
204
+ "galore_scale": 1.0,
205
+ "galore_proj_type": "std",
206
+ "galore_optim_per_parameter": false,
207
+ "galore_with_embedding": false,
208
+ "galore_quantization": false,
209
+ "galore_proj_quant": false,
210
+ "galore_proj_bits": 4,
211
+ "galore_proj_group_size": 256,
212
+ "galore_cos_threshold": 0.4,
213
+ "galore_gamma_proj": 2,
214
+ "galore_queue_size": 5,
215
+ "lisa_activated_layers": 0,
216
+ "lisa_step_interval": 20,
217
+ "use_flash_ckpt": false,
218
+ "use_ray": false,
219
+ "ray_exp_name": null,
220
+ "device_groups": null,
221
+ "model": "/home/raid/models/Qwen3-14B",
222
+ "model_type": "qwen3",
223
+ "model_revision": null,
224
+ "task_type": "causal_lm",
225
+ "torch_dtype": "bfloat16",
226
+ "attn_impl": "flash_attn",
227
+ "experts_impl": null,
228
+ "new_special_tokens": [],
229
+ "num_labels": null,
230
+ "problem_type": null,
231
+ "rope_scaling": null,
232
+ "device_map": null,
233
+ "max_memory": {},
234
+ "max_model_len": null,
235
+ "local_repo_path": null,
236
+ "init_strategy": null,
237
+ "template": "qwen3",
238
+ "system": null,
239
+ "max_length": 4779,
240
+ "truncation_strategy": "delete",
241
+ "max_pixels": null,
242
+ "agent_template": null,
243
+ "norm_bbox": null,
244
+ "use_chat_template": true,
245
+ "padding_side": "right",
246
+ "padding_free": false,
247
+ "loss_scale": "default",
248
+ "sequence_parallel_size": 1,
249
+ "template_backend": "swift",
250
+ "response_prefix": null,
251
+ "enable_thinking": null,
252
+ "add_non_thinking_prefix": true,
253
+ "dataset": [
254
+ "/mnt/storage/25TOXMC/train_data.json"
255
+ ],
256
+ "val_dataset": [],
257
+ "cached_dataset": [],
258
+ "cached_val_dataset": [],
259
+ "split_dataset_ratio": 0.01,
260
+ "dataset_num_proc": 4,
261
+ "load_from_cache_file": true,
262
+ "dataset_shuffle": true,
263
+ "val_dataset_shuffle": false,
264
+ "streaming": false,
265
+ "interleave_prob": null,
266
+ "stopping_strategy": "first_exhausted",
267
+ "shuffle_buffer_size": 1000,
268
+ "download_mode": "reuse_dataset_if_exists",
269
+ "columns": {},
270
+ "strict": false,
271
+ "model_name": null,
272
+ "model_author": null,
273
+ "custom_dataset_info": [],
274
+ "quant_method": null,
275
+ "quant_bits": null,
276
+ "hqq_axis": null,
277
+ "bnb_4bit_compute_dtype": "bfloat16",
278
+ "bnb_4bit_quant_type": "nf4",
279
+ "bnb_4bit_use_double_quant": true,
280
+ "bnb_4bit_quant_storage": null,
281
+ "max_new_tokens": 64,
282
+ "temperature": 0.0,
283
+ "top_k": null,
284
+ "top_p": null,
285
+ "repetition_penalty": null,
286
+ "num_beams": 1,
287
+ "stream": false,
288
+ "stop_words": [],
289
+ "logprobs": false,
290
+ "top_logprobs": null,
291
+ "structured_outputs_regex": null,
292
+ "train_type": "full",
293
+ "adapters": [],
294
+ "external_plugins": [],
295
+ "custom_register_path": [],
296
+ "model_kwargs": {},
297
+ "load_args": false,
298
+ "load_data_args": false,
299
+ "packing": false,
300
+ "packing_length": null,
301
+ "packing_num_proc": 1,
302
+ "lazy_tokenize": false,
303
+ "use_hf": false,
304
+ "ignore_args_error": false,
305
+ "use_swift_lora": false,
306
+ "freeze_parameters": [],
307
+ "freeze_parameters_regex": null,
308
+ "freeze_parameters_ratio": 0.0,
309
+ "trainable_parameters": [],
310
+ "trainable_parameters_regex": null,
311
+ "freeze_llm": false,
312
+ "freeze_vit": true,
313
+ "freeze_aligner": true,
314
+ "target_modules": [
315
+ "all-linear"
316
+ ],
317
+ "target_regex": null,
318
+ "target_parameters": null,
319
+ "modules_to_save": [],
320
+ "lora_rank": 8,
321
+ "lora_alpha": 32,
322
+ "lora_dropout": 0.05,
323
+ "lora_bias": "none",
324
+ "lora_dtype": null,
325
+ "lorap_lr_ratio": null,
326
+ "use_rslora": false,
327
+ "use_dora": false,
328
+ "lora_ga_batch_size": 2,
329
+ "lora_ga_iters": 2,
330
+ "lora_ga_max_length": 1024,
331
+ "lora_ga_direction": "ArB2r",
332
+ "lora_ga_scale": "stable",
333
+ "lora_ga_stable_gamma": 16,
334
+ "init_weights": true,
335
+ "fourier_n_frequency": 2000,
336
+ "fourier_scaling": 300.0,
337
+ "boft_block_size": 4,
338
+ "boft_block_num": 0,
339
+ "boft_n_butterfly_factor": 1,
340
+ "boft_dropout": 0.0,
341
+ "vera_rank": 256,
342
+ "vera_projection_prng_key": 0,
343
+ "vera_dropout": 0.0,
344
+ "vera_d_initial": 0.1,
345
+ "adapter_act": "gelu",
346
+ "adapter_length": 128,
347
+ "adalora_target_r": 8,
348
+ "adalora_init_r": 12,
349
+ "adalora_tinit": 0,
350
+ "adalora_tfinal": 0,
351
+ "adalora_deltaT": 1,
352
+ "adalora_beta1": 0.85,
353
+ "adalora_beta2": 0.85,
354
+ "adalora_orth_reg_weight": 0.5,
355
+ "llamapro_num_new_blocks": 4,
356
+ "llamapro_num_groups": null,
357
+ "reft_layer_key": null,
358
+ "reft_layers": null,
359
+ "reft_rank": 4,
360
+ "reft_intervention_type": "LoreftIntervention",
361
+ "reft_args": null,
362
+ "swanlab_token": null,
363
+ "swanlab_project": "ms-swift",
364
+ "swanlab_workspace": null,
365
+ "swanlab_exp_name": null,
366
+ "swanlab_notification_method": null,
367
+ "swanlab_webhook_url": null,
368
+ "swanlab_secret": null,
369
+ "swanlab_sender_email": null,
370
+ "swanlab_receiver_email": null,
371
+ "swanlab_smtp_server": null,
372
+ "swanlab_smtp_port": null,
373
+ "swanlab_email_language": "zh",
374
+ "swanlab_mode": "cloud",
375
+ "add_version": true,
376
+ "create_checkpoint_symlink": false,
377
+ "zero_hpz_partition_size": null,
378
+ "deepspeed_autotp_size": null,
379
+ "swift_version": "4.0.0.dev0",
380
+ "ckpt_dir": null,
381
+ "rank": 0,
382
+ "global_world_size": 3,
383
+ "local_world_size": 3,
384
+ "model_suffix": "Qwen3-14B",
385
+ "model_info": "ModelInfo(model_type='qwen3', model_dir='/home/raid/models/Qwen3-14B', torch_dtype=torch.bfloat16, max_model_len=40960, quant_method=None, quant_bits=None, rope_scaling=None, is_moe_model=False, is_multimodal=False, config=None, task_type='causal_lm', num_labels=None)",
386
+ "model_meta": "ModelMeta(model_type='qwen3', model_groups=[ModelGroup(models=[Model(ms_model_id='Qwen/Qwen3-0.6B-Base', hf_model_id='Qwen/Qwen3-0.6B-Base', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-1.7B-Base', hf_model_id='Qwen/Qwen3-1.7B-Base', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B-Base', hf_model_id='Qwen/Qwen3-4B-Base', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-8B-Base', hf_model_id='Qwen/Qwen3-8B-Base', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-14B-Base', hf_model_id='Qwen/Qwen3-14B-Base', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-0.6B', hf_model_id='Qwen/Qwen3-0.6B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-1.7B', hf_model_id='Qwen/Qwen3-1.7B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B', hf_model_id='Qwen/Qwen3-4B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-8B', hf_model_id='Qwen/Qwen3-8B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-14B', hf_model_id='Qwen/Qwen3-14B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-32B', hf_model_id='Qwen/Qwen3-32B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-0.6B-FP8', hf_model_id='Qwen/Qwen3-0.6B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-1.7B-FP8', hf_model_id='Qwen/Qwen3-1.7B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B-FP8', hf_model_id='Qwen/Qwen3-4B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-8B-FP8', hf_model_id='Qwen/Qwen3-8B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-14B-FP8', hf_model_id='Qwen/Qwen3-14B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-32B-FP8', hf_model_id='Qwen/Qwen3-32B-FP8', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B-AWQ', hf_model_id='Qwen/Qwen3-4B-AWQ', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-8B-AWQ', hf_model_id='Qwen/Qwen3-8B-AWQ', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-14B-AWQ', hf_model_id='Qwen/Qwen3-14B-AWQ', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-32B-AWQ', hf_model_id='Qwen/Qwen3-32B-AWQ', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='swift/Qwen3-32B-AWQ', hf_model_id=None, model_path=None, ms_revision=None, hf_revision=None)], template='qwen3', ignore_patterns=None, requires=None, tags=[]), ModelGroup(models=[Model(ms_model_id='deepseek-ai/DeepSeek-R1-0528-Qwen3-8B', hf_model_id='deepseek-ai/DeepSeek-R1-0528-Qwen3-8B', model_path=None, ms_revision=None, hf_revision=None)], template='deepseek_r1', ignore_patterns=None, requires=None, tags=[]), ModelGroup(models=[Model(ms_model_id='Qwen/Qwen3Guard-Gen-0.6B', hf_model_id='Qwen/Qwen3Guard-Gen-0.6B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3Guard-Gen-4B', hf_model_id='Qwen/Qwen3Guard-Gen-4B', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3Guard-Gen-8B', hf_model_id='Qwen/Qwen3Guard-Gen-8B', model_path=None, ms_revision=None, hf_revision=None)], template='qwen3_guard', ignore_patterns=None, requires=None, tags=[]), ModelGroup(models=[Model(ms_model_id='Qwen/Qwen3-4B-Thinking-2507', hf_model_id='Qwen/Qwen3-4B-Thinking-2507', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B-Thinking-2507-FP8', hf_model_id='Qwen/Qwen3-4B-Thinking-2507-FP8', model_path=None, ms_revision=None, hf_revision=None)], template='qwen3_thinking', ignore_patterns=None, requires=None, tags=[]), ModelGroup(models=[Model(ms_model_id='Qwen/Qwen3-4B-Instruct-2507', hf_model_id='Qwen/Qwen3-4B-Instruct-2507', model_path=None, ms_revision=None, hf_revision=None), Model(ms_model_id='Qwen/Qwen3-4B-Instruct-2507-FP8', hf_model_id='Qwen/Qwen3-4B-Instruct-2507-FP8', model_path=None, ms_revision=None, hf_revision=None)], template='qwen3_nothinking', ignore_patterns=None, requires=None, tags=[])], loader=<class 'swift.model.register.ModelLoader'>, template='qwen3', model_arch=ModelKeys(arch_name='llama', embedding='model.embed_tokens', module_list='model.layers', lm_head='lm_head', q_proj='model.layers.{}.self_attn.q_proj', k_proj='model.layers.{}.self_attn.k_proj', v_proj='model.layers.{}.self_attn.v_proj', o_proj='model.layers.{}.self_attn.o_proj', attention='model.layers.{}.self_attn', mlp='model.layers.{}.mlp', down_proj='model.layers.{}.mlp.down_proj', qkv_proj=None, qk_proj=None, qa_proj=None, qb_proj=None, kv_proj=None, kva_proj=None, kvb_proj=None), architectures=['Qwen3ForCausalLM'], additional_saved_files=[], torch_dtype=None, is_multimodal=False, is_reward=False, task_type=None, ignore_patterns=None, requires=['transformers>=4.51'], tags=[])",
387
+ "model_dir": "/home/raid/models/Qwen3-14B",
388
+ "template_meta": "Qwen3MixedTemplateMeta(template_type='qwen3', prefix=[], prompt=['<|im_start|>user\\n{{QUERY}}<|im_end|>\\n<|im_start|>assistant\\n'], chat_sep=['<|im_end|>\\n'], suffix=['<|im_end|>\\n'], template_cls=<class 'swift.template.base.Template'>, system_prefix=['<|im_start|>system\\n{{SYSTEM}}<|im_end|>\\n'], default_system=None, auto_add_bos=False, stop_words=['<|endoftext|>'], agent_template='hermes', is_thinking=True, thinking_prefix='', non_thinking_prefix='<think>\\n\\n</think>\\n\\n', history_thinking_prefix='')",
389
+ "_val_dataset_exists": true,
390
+ "hub": "<class 'swift.hub.hub.MSHub'>",
391
+ "evaluation_strategy": "steps",
392
+ "training_args": "Seq2SeqTrainingArguments(output_dir='/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539', overwrite_output_dir=False, do_train=False, do_eval=True, do_predict=False, eval_strategy=<IntervalStrategy.STEPS: 'steps'>, prediction_loss_only=False, per_device_train_batch_size=1, per_device_eval_batch_size=1, per_gpu_train_batch_size=None, per_gpu_eval_batch_size=None, gradient_accumulation_steps=4, eval_accumulation_steps=None, eval_delay=0, torch_empty_cache_steps=None, learning_rate=5e-06, weight_decay=0.1, adam_beta1=0.9, adam_beta2=0.95, adam_epsilon=1e-08, max_grad_norm=1.0, num_train_epochs=3.0, max_steps=-1, lr_scheduler_type=<SchedulerType.COSINE: 'cosine'>, lr_scheduler_kwargs=None, warmup_ratio=0.03, warmup_steps=0, log_level='passive', log_level_replica='warning', log_on_each_node=True, logging_dir='/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539/runs', logging_strategy=<IntervalStrategy.STEPS: 'steps'>, logging_first_step=True, logging_steps=1, logging_nan_inf_filter=True, save_strategy=<SaveStrategy.STEPS: 'steps'>, save_steps=250, save_total_limit=3, save_safetensors=True, save_on_each_node=False, save_only_model=True, restore_callback_states_from_checkpoint=False, no_cuda=False, use_cpu=False, use_mps_device=False, seed=42, data_seed=42, jit_mode_eval=False, bf16=True, fp16=False, fp16_opt_level='O1', half_precision_backend='auto', bf16_full_eval=False, fp16_full_eval=False, tf32=None, local_rank=0, ddp_backend=None, tpu_num_cores=None, tpu_metrics_debug=False, debug=[], dataloader_drop_last=False, eval_steps=50, dataloader_num_workers=4, dataloader_prefetch_factor=2, past_index=-1, run_name='/home/raid/models/25Blowfish_v1.1.5/v1-20260204-180539', disable_tqdm=False, remove_unused_columns=False, label_names=None, load_best_model_at_end=False, metric_for_best_model='loss', greater_is_better=False, ignore_data_skip=False, fsdp=[], fsdp_min_num_params=0, fsdp_config={'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}, fsdp_transformer_layer_cls_to_wrap=None, accelerator_config=AcceleratorConfig(split_batches=False, dispatch_batches=False, even_batches=True, use_seedable_sampler=True, non_blocking=False, gradient_accumulation_kwargs=None, use_configured_state=False), parallelism_config=None, deepspeed={'train_batch_size': 'auto', 'train_micro_batch_size_per_gpu': 'auto', 'gradient_accumulation_steps': 'auto', 'gradient_clipping': 'auto', 'zero_optimization': {'stage': 3, 'offload_optimizer': {'device': 'cpu', 'pin_memory': True}, 'offload_param': {'device': 'cpu', 'pin_memory': True}, 'overlap_comm': True, 'contiguous_gradients': True, 'sub_group_size': 1000000000.0, 'reduce_bucket_size': 'auto', 'stage3_prefetch_bucket_size': 'auto', 'stage3_param_persistence_threshold': 'auto', 'stage3_max_live_parameters': 1000000000.0, 'stage3_max_reuse_distance': 1000000000.0, 'stage3_gather_16bit_weights_on_model_save': True}, 'bf16': {'enabled': 'auto'}, 'fp16': {'enabled': 'auto'}}, label_smoothing_factor=0.0, optim=<OptimizerNames.ADAMW_TORCH: 'adamw_torch'>, optim_args=None, adafactor=False, group_by_length=False, length_column_name='length', report_to=['mlflow'], project='huggingface', trackio_space_id='trackio', ddp_find_unused_parameters=None, ddp_bucket_cap_mb=None, ddp_broadcast_buffers=None, dataloader_pin_memory=True, dataloader_persistent_workers=False, skip_memory_metrics=True, use_legacy_prediction_loop=False, push_to_hub=False, resume_from_checkpoint=None, hub_model_id=None, hub_strategy=<HubStrategy.EVERY_SAVE: 'every_save'>, hub_token=None, hub_private_repo=None, hub_always_push=False, hub_revision=None, gradient_checkpointing=True, gradient_checkpointing_kwargs=None, include_inputs_for_metrics=False, include_for_metrics=[], eval_do_concat_batches=True, fp16_backend='auto', push_to_hub_model_id=None, push_to_hub_organization=None, push_to_hub_token=None, mp_parameters='', auto_find_batch_size=False, full_determinism=False, torchdynamo=None, ray_scope='last', ddp_timeout=18000000, torch_compile=False, torch_compile_backend=None, torch_compile_mode=None, include_tokens_per_second=None, include_num_input_tokens_seen=None, neftune_noise_alpha=None, optim_target_modules=None, batch_eval_metrics=False, eval_on_start=False, use_liger_kernel=False, liger_kernel_config=None, eval_use_gather_object=False, average_tokens_across_devices=None, sortish_sampler=False, predict_with_generate=False, generation_max_length=None, generation_num_beams=None, generation_config=None, tuner_backend='peft', vit_gradient_checkpointing=True, router_aux_loss_coef=0.0, enable_dft_loss=False, enable_channel_loss=False, check_model=True, acc_strategy='token', train_dataloader_shuffle=True, max_epochs=None, aligner_lr=None, vit_lr=None, use_logits_to_keep=None, ds3_gather_for_generation=True, resume_only_model=False, optimizer=None, loss_type=None, eval_metric=None, callbacks=[], early_stop_interval=None, eval_use_evalscope=False, eval_dataset=[], eval_dataset_args=None, eval_limit=None, eval_generation_config=None, extra_eval_args=None, tuner_type='full', use_galore=False, galore_target_modules=None, galore_rank=128, galore_update_proj_gap=50, galore_scale=1.0, galore_proj_type='std', galore_optim_per_parameter=False, galore_with_embedding=False, galore_quantization=False, galore_proj_quant=False, galore_proj_bits=4, galore_proj_group_size=256, galore_cos_threshold=0.4, galore_gamma_proj=2, galore_queue_size=5, lisa_activated_layers=0, lisa_step_interval=20, use_flash_ckpt=False)"
393
+ }
chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 5120,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 17408,
14
+ "layer_types": [
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention",
51
+ "full_attention",
52
+ "full_attention",
53
+ "full_attention",
54
+ "full_attention"
55
+ ],
56
+ "max_position_embeddings": 40960,
57
+ "max_window_layers": 40,
58
+ "model_type": "qwen3",
59
+ "num_attention_heads": 40,
60
+ "num_hidden_layers": 40,
61
+ "num_key_value_heads": 8,
62
+ "pad_token_id": 151643,
63
+ "rms_norm_eps": 1e-06,
64
+ "rope_scaling": null,
65
+ "rope_theta": 1000000,
66
+ "sliding_window": null,
67
+ "tie_word_embeddings": false,
68
+ "transformers_version": "4.57.6",
69
+ "use_cache": false,
70
+ "use_sliding_window": false,
71
+ "vocab_size": 151936
72
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "temperature": 0.6,
10
+ "top_k": 20,
11
+ "top_p": 0.95,
12
+ "transformers_version": "4.57.6"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ca79e6c81f06efbac44254673403739166f4922a40ed482a2210eac3531de87
3
+ size 4984780784
model-00002-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36d8420a8d8968e2550adea063ff1e6e045beb95f759eed976cf5f54abd98704
3
+ size 4980892048
model-00003-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc9b636b0209848cefa0e54b9f4eafd671fe094f2b6b6dd865e9139c79331be7
3
+ size 4928485104
model-00004-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f40b73048ade57b68b1c1396b508f68c76f76e7bcde850c91465d73f812af48
3
+ size 4980892112
model-00005-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8384c43a888ffa80cd2740183f95a5d4109fc155b51c532f7328dc49238f861
3
+ size 4928485104
model-00006-of-00006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91a7fcf1610257acf8b78f90cfde4890ec1f555c0af3434d9ea406e2f9a85dea
3
+ size 4733130504
model.safetensors.index.json ADDED
@@ -0,0 +1,451 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 424960,
4
+ "total_size": 29536614400
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00006-of-00006.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00006.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00006.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
14
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
17
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00006.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
25
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
28
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
30
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
31
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00006.safetensors",
32
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
33
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
34
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
35
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
36
+ "model.layers.10.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
37
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
38
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
39
+ "model.layers.10.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
40
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
41
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
42
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00006.safetensors",
43
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
44
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
45
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
46
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
47
+ "model.layers.11.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
48
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
49
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
50
+ "model.layers.11.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
51
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
52
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
53
+ "model.layers.12.input_layernorm.weight": "model-00003-of-00006.safetensors",
54
+ "model.layers.12.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
55
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
56
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
57
+ "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
58
+ "model.layers.12.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
59
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
60
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
61
+ "model.layers.12.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
62
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
63
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
64
+ "model.layers.13.input_layernorm.weight": "model-00003-of-00006.safetensors",
65
+ "model.layers.13.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
66
+ "model.layers.13.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
67
+ "model.layers.13.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
68
+ "model.layers.13.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
69
+ "model.layers.13.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
70
+ "model.layers.13.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
71
+ "model.layers.13.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
72
+ "model.layers.13.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
73
+ "model.layers.13.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
74
+ "model.layers.13.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
75
+ "model.layers.14.input_layernorm.weight": "model-00003-of-00006.safetensors",
76
+ "model.layers.14.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
77
+ "model.layers.14.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
78
+ "model.layers.14.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
79
+ "model.layers.14.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
80
+ "model.layers.14.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
81
+ "model.layers.14.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
82
+ "model.layers.14.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
83
+ "model.layers.14.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
84
+ "model.layers.14.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
85
+ "model.layers.14.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
86
+ "model.layers.15.input_layernorm.weight": "model-00003-of-00006.safetensors",
87
+ "model.layers.15.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
88
+ "model.layers.15.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
89
+ "model.layers.15.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
90
+ "model.layers.15.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
91
+ "model.layers.15.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
92
+ "model.layers.15.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
93
+ "model.layers.15.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
94
+ "model.layers.15.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
95
+ "model.layers.15.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
96
+ "model.layers.15.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
97
+ "model.layers.16.input_layernorm.weight": "model-00003-of-00006.safetensors",
98
+ "model.layers.16.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
99
+ "model.layers.16.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
100
+ "model.layers.16.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
101
+ "model.layers.16.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
102
+ "model.layers.16.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
103
+ "model.layers.16.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
104
+ "model.layers.16.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
105
+ "model.layers.16.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
106
+ "model.layers.16.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
107
+ "model.layers.16.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
108
+ "model.layers.17.input_layernorm.weight": "model-00003-of-00006.safetensors",
109
+ "model.layers.17.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
110
+ "model.layers.17.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
111
+ "model.layers.17.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
112
+ "model.layers.17.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
113
+ "model.layers.17.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
114
+ "model.layers.17.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
115
+ "model.layers.17.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
116
+ "model.layers.17.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
117
+ "model.layers.17.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
118
+ "model.layers.17.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
119
+ "model.layers.18.input_layernorm.weight": "model-00003-of-00006.safetensors",
120
+ "model.layers.18.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
121
+ "model.layers.18.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
122
+ "model.layers.18.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
123
+ "model.layers.18.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
124
+ "model.layers.18.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
125
+ "model.layers.18.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
126
+ "model.layers.18.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
127
+ "model.layers.18.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
128
+ "model.layers.18.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
129
+ "model.layers.18.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
130
+ "model.layers.19.input_layernorm.weight": "model-00003-of-00006.safetensors",
131
+ "model.layers.19.mlp.down_proj.weight": "model-00003-of-00006.safetensors",
132
+ "model.layers.19.mlp.gate_proj.weight": "model-00003-of-00006.safetensors",
133
+ "model.layers.19.mlp.up_proj.weight": "model-00003-of-00006.safetensors",
134
+ "model.layers.19.post_attention_layernorm.weight": "model-00003-of-00006.safetensors",
135
+ "model.layers.19.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
136
+ "model.layers.19.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
137
+ "model.layers.19.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
138
+ "model.layers.19.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
139
+ "model.layers.19.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
140
+ "model.layers.19.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
141
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00006.safetensors",
142
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
143
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
144
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
145
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
146
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
147
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
148
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
149
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
150
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
151
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
152
+ "model.layers.20.input_layernorm.weight": "model-00004-of-00006.safetensors",
153
+ "model.layers.20.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
154
+ "model.layers.20.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
155
+ "model.layers.20.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
156
+ "model.layers.20.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
157
+ "model.layers.20.self_attn.k_norm.weight": "model-00003-of-00006.safetensors",
158
+ "model.layers.20.self_attn.k_proj.weight": "model-00003-of-00006.safetensors",
159
+ "model.layers.20.self_attn.o_proj.weight": "model-00003-of-00006.safetensors",
160
+ "model.layers.20.self_attn.q_norm.weight": "model-00003-of-00006.safetensors",
161
+ "model.layers.20.self_attn.q_proj.weight": "model-00003-of-00006.safetensors",
162
+ "model.layers.20.self_attn.v_proj.weight": "model-00003-of-00006.safetensors",
163
+ "model.layers.21.input_layernorm.weight": "model-00004-of-00006.safetensors",
164
+ "model.layers.21.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
165
+ "model.layers.21.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
166
+ "model.layers.21.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
167
+ "model.layers.21.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
168
+ "model.layers.21.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
169
+ "model.layers.21.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
170
+ "model.layers.21.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
171
+ "model.layers.21.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
172
+ "model.layers.21.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
173
+ "model.layers.21.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
174
+ "model.layers.22.input_layernorm.weight": "model-00004-of-00006.safetensors",
175
+ "model.layers.22.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
176
+ "model.layers.22.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
177
+ "model.layers.22.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
178
+ "model.layers.22.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
179
+ "model.layers.22.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
180
+ "model.layers.22.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
181
+ "model.layers.22.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
182
+ "model.layers.22.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
183
+ "model.layers.22.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
184
+ "model.layers.22.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
185
+ "model.layers.23.input_layernorm.weight": "model-00004-of-00006.safetensors",
186
+ "model.layers.23.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
187
+ "model.layers.23.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
188
+ "model.layers.23.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
189
+ "model.layers.23.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
190
+ "model.layers.23.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
191
+ "model.layers.23.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
192
+ "model.layers.23.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
193
+ "model.layers.23.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
194
+ "model.layers.23.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
195
+ "model.layers.23.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
196
+ "model.layers.24.input_layernorm.weight": "model-00004-of-00006.safetensors",
197
+ "model.layers.24.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
198
+ "model.layers.24.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
199
+ "model.layers.24.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
200
+ "model.layers.24.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
201
+ "model.layers.24.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
202
+ "model.layers.24.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
203
+ "model.layers.24.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
204
+ "model.layers.24.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
205
+ "model.layers.24.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
206
+ "model.layers.24.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
207
+ "model.layers.25.input_layernorm.weight": "model-00004-of-00006.safetensors",
208
+ "model.layers.25.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
209
+ "model.layers.25.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
210
+ "model.layers.25.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
211
+ "model.layers.25.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
212
+ "model.layers.25.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
213
+ "model.layers.25.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
214
+ "model.layers.25.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
215
+ "model.layers.25.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
216
+ "model.layers.25.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
217
+ "model.layers.25.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
218
+ "model.layers.26.input_layernorm.weight": "model-00004-of-00006.safetensors",
219
+ "model.layers.26.mlp.down_proj.weight": "model-00004-of-00006.safetensors",
220
+ "model.layers.26.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
221
+ "model.layers.26.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
222
+ "model.layers.26.post_attention_layernorm.weight": "model-00004-of-00006.safetensors",
223
+ "model.layers.26.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
224
+ "model.layers.26.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
225
+ "model.layers.26.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
226
+ "model.layers.26.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
227
+ "model.layers.26.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
228
+ "model.layers.26.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
229
+ "model.layers.27.input_layernorm.weight": "model-00005-of-00006.safetensors",
230
+ "model.layers.27.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
231
+ "model.layers.27.mlp.gate_proj.weight": "model-00004-of-00006.safetensors",
232
+ "model.layers.27.mlp.up_proj.weight": "model-00004-of-00006.safetensors",
233
+ "model.layers.27.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
234
+ "model.layers.27.self_attn.k_norm.weight": "model-00004-of-00006.safetensors",
235
+ "model.layers.27.self_attn.k_proj.weight": "model-00004-of-00006.safetensors",
236
+ "model.layers.27.self_attn.o_proj.weight": "model-00004-of-00006.safetensors",
237
+ "model.layers.27.self_attn.q_norm.weight": "model-00004-of-00006.safetensors",
238
+ "model.layers.27.self_attn.q_proj.weight": "model-00004-of-00006.safetensors",
239
+ "model.layers.27.self_attn.v_proj.weight": "model-00004-of-00006.safetensors",
240
+ "model.layers.28.input_layernorm.weight": "model-00005-of-00006.safetensors",
241
+ "model.layers.28.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
242
+ "model.layers.28.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
243
+ "model.layers.28.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
244
+ "model.layers.28.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
245
+ "model.layers.28.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
246
+ "model.layers.28.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
247
+ "model.layers.28.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
248
+ "model.layers.28.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
249
+ "model.layers.28.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
250
+ "model.layers.28.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
251
+ "model.layers.29.input_layernorm.weight": "model-00005-of-00006.safetensors",
252
+ "model.layers.29.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
253
+ "model.layers.29.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
254
+ "model.layers.29.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
255
+ "model.layers.29.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
256
+ "model.layers.29.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
257
+ "model.layers.29.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
258
+ "model.layers.29.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
259
+ "model.layers.29.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
260
+ "model.layers.29.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
261
+ "model.layers.29.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
262
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00006.safetensors",
263
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
264
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
265
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
266
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
267
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
268
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
269
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
270
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
271
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
273
+ "model.layers.30.input_layernorm.weight": "model-00005-of-00006.safetensors",
274
+ "model.layers.30.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
275
+ "model.layers.30.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
276
+ "model.layers.30.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
277
+ "model.layers.30.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
278
+ "model.layers.30.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
279
+ "model.layers.30.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
280
+ "model.layers.30.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
281
+ "model.layers.30.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
282
+ "model.layers.30.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
283
+ "model.layers.30.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
284
+ "model.layers.31.input_layernorm.weight": "model-00005-of-00006.safetensors",
285
+ "model.layers.31.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
286
+ "model.layers.31.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
287
+ "model.layers.31.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
288
+ "model.layers.31.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
289
+ "model.layers.31.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
290
+ "model.layers.31.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
291
+ "model.layers.31.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
292
+ "model.layers.31.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
293
+ "model.layers.31.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
294
+ "model.layers.31.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
295
+ "model.layers.32.input_layernorm.weight": "model-00005-of-00006.safetensors",
296
+ "model.layers.32.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
297
+ "model.layers.32.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
298
+ "model.layers.32.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
299
+ "model.layers.32.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
300
+ "model.layers.32.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
301
+ "model.layers.32.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
302
+ "model.layers.32.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
303
+ "model.layers.32.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
304
+ "model.layers.32.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
305
+ "model.layers.32.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
306
+ "model.layers.33.input_layernorm.weight": "model-00005-of-00006.safetensors",
307
+ "model.layers.33.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
308
+ "model.layers.33.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
309
+ "model.layers.33.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
310
+ "model.layers.33.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
311
+ "model.layers.33.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
312
+ "model.layers.33.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
313
+ "model.layers.33.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
314
+ "model.layers.33.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
315
+ "model.layers.33.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
316
+ "model.layers.33.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
317
+ "model.layers.34.input_layernorm.weight": "model-00005-of-00006.safetensors",
318
+ "model.layers.34.mlp.down_proj.weight": "model-00005-of-00006.safetensors",
319
+ "model.layers.34.mlp.gate_proj.weight": "model-00005-of-00006.safetensors",
320
+ "model.layers.34.mlp.up_proj.weight": "model-00005-of-00006.safetensors",
321
+ "model.layers.34.post_attention_layernorm.weight": "model-00005-of-00006.safetensors",
322
+ "model.layers.34.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
323
+ "model.layers.34.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
324
+ "model.layers.34.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
325
+ "model.layers.34.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
326
+ "model.layers.34.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
327
+ "model.layers.34.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
328
+ "model.layers.35.input_layernorm.weight": "model-00006-of-00006.safetensors",
329
+ "model.layers.35.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
330
+ "model.layers.35.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
331
+ "model.layers.35.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
332
+ "model.layers.35.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
333
+ "model.layers.35.self_attn.k_norm.weight": "model-00005-of-00006.safetensors",
334
+ "model.layers.35.self_attn.k_proj.weight": "model-00005-of-00006.safetensors",
335
+ "model.layers.35.self_attn.o_proj.weight": "model-00005-of-00006.safetensors",
336
+ "model.layers.35.self_attn.q_norm.weight": "model-00005-of-00006.safetensors",
337
+ "model.layers.35.self_attn.q_proj.weight": "model-00005-of-00006.safetensors",
338
+ "model.layers.35.self_attn.v_proj.weight": "model-00005-of-00006.safetensors",
339
+ "model.layers.36.input_layernorm.weight": "model-00006-of-00006.safetensors",
340
+ "model.layers.36.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
341
+ "model.layers.36.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
342
+ "model.layers.36.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
343
+ "model.layers.36.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
344
+ "model.layers.36.self_attn.k_norm.weight": "model-00006-of-00006.safetensors",
345
+ "model.layers.36.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
346
+ "model.layers.36.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
347
+ "model.layers.36.self_attn.q_norm.weight": "model-00006-of-00006.safetensors",
348
+ "model.layers.36.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
349
+ "model.layers.36.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
350
+ "model.layers.37.input_layernorm.weight": "model-00006-of-00006.safetensors",
351
+ "model.layers.37.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
352
+ "model.layers.37.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
353
+ "model.layers.37.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
354
+ "model.layers.37.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
355
+ "model.layers.37.self_attn.k_norm.weight": "model-00006-of-00006.safetensors",
356
+ "model.layers.37.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
357
+ "model.layers.37.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
358
+ "model.layers.37.self_attn.q_norm.weight": "model-00006-of-00006.safetensors",
359
+ "model.layers.37.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
360
+ "model.layers.37.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
361
+ "model.layers.38.input_layernorm.weight": "model-00006-of-00006.safetensors",
362
+ "model.layers.38.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
363
+ "model.layers.38.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
364
+ "model.layers.38.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
365
+ "model.layers.38.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
366
+ "model.layers.38.self_attn.k_norm.weight": "model-00006-of-00006.safetensors",
367
+ "model.layers.38.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
368
+ "model.layers.38.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
369
+ "model.layers.38.self_attn.q_norm.weight": "model-00006-of-00006.safetensors",
370
+ "model.layers.38.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
371
+ "model.layers.38.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
372
+ "model.layers.39.input_layernorm.weight": "model-00006-of-00006.safetensors",
373
+ "model.layers.39.mlp.down_proj.weight": "model-00006-of-00006.safetensors",
374
+ "model.layers.39.mlp.gate_proj.weight": "model-00006-of-00006.safetensors",
375
+ "model.layers.39.mlp.up_proj.weight": "model-00006-of-00006.safetensors",
376
+ "model.layers.39.post_attention_layernorm.weight": "model-00006-of-00006.safetensors",
377
+ "model.layers.39.self_attn.k_norm.weight": "model-00006-of-00006.safetensors",
378
+ "model.layers.39.self_attn.k_proj.weight": "model-00006-of-00006.safetensors",
379
+ "model.layers.39.self_attn.o_proj.weight": "model-00006-of-00006.safetensors",
380
+ "model.layers.39.self_attn.q_norm.weight": "model-00006-of-00006.safetensors",
381
+ "model.layers.39.self_attn.q_proj.weight": "model-00006-of-00006.safetensors",
382
+ "model.layers.39.self_attn.v_proj.weight": "model-00006-of-00006.safetensors",
383
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00006.safetensors",
384
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00006.safetensors",
385
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00006.safetensors",
386
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00006.safetensors",
387
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00006.safetensors",
388
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
389
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
390
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
391
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
392
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
393
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
394
+ "model.layers.5.input_layernorm.weight": "model-00002-of-00006.safetensors",
395
+ "model.layers.5.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
396
+ "model.layers.5.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
397
+ "model.layers.5.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
398
+ "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
399
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00006.safetensors",
400
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00006.safetensors",
401
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00006.safetensors",
402
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00006.safetensors",
403
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00006.safetensors",
404
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00006.safetensors",
405
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00006.safetensors",
406
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
407
+ "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
408
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
409
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
410
+ "model.layers.6.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
411
+ "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
412
+ "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
413
+ "model.layers.6.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
414
+ "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
415
+ "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
416
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00006.safetensors",
417
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
418
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
419
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
420
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
421
+ "model.layers.7.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
422
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
423
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
424
+ "model.layers.7.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
425
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
426
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
427
+ "model.layers.8.input_layernorm.weight": "model-00002-of-00006.safetensors",
428
+ "model.layers.8.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
429
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
430
+ "model.layers.8.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
431
+ "model.layers.8.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
432
+ "model.layers.8.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
433
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
434
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
435
+ "model.layers.8.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
436
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
437
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
438
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00006.safetensors",
439
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00006.safetensors",
440
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00006.safetensors",
441
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00006.safetensors",
442
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00006.safetensors",
443
+ "model.layers.9.self_attn.k_norm.weight": "model-00002-of-00006.safetensors",
444
+ "model.layers.9.self_attn.k_proj.weight": "model-00002-of-00006.safetensors",
445
+ "model.layers.9.self_attn.o_proj.weight": "model-00002-of-00006.safetensors",
446
+ "model.layers.9.self_attn.q_norm.weight": "model-00002-of-00006.safetensors",
447
+ "model.layers.9.self_attn.q_proj.weight": "model-00002-of-00006.safetensors",
448
+ "model.layers.9.self_attn.v_proj.weight": "model-00002-of-00006.safetensors",
449
+ "model.norm.weight": "model-00006-of-00006.safetensors"
450
+ }
451
+ }
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": "<|endoftext|>",
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,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbeeeb126985c38c4c5257cf9df01863feafabbc3ea1ec8b8e76cb5914abc767
3
+ size 8888
vocab.json ADDED
The diff for this file is too large to render. See raw diff