TK17250 commited on
Commit
30333d7
·
verified ·
1 Parent(s): 6b15558

Create adapter_config.json

Browse files
Files changed (1) hide show
  1. adapter_config.json +19 -0
adapter_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model_name_or_path": "Qwen/Qwen2.5-7B",
3
+ "peft_type": "LORA",
4
+ "task_type": "CAUSAL_LM",
5
+ "inference_mode": true,
6
+ "r": 32,
7
+ "lora_alpha": 32,
8
+ "lora_dropout": 0.0,
9
+ "bias": "none",
10
+ "target_modules": [
11
+ "q_proj",
12
+ "k_proj",
13
+ "v_proj",
14
+ "o_proj",
15
+ "gate_proj",
16
+ "up_proj",
17
+ "down_proj"
18
+ ]
19
+ }