jkeyyy commited on
Commit
8592450
verified
1 Parent(s): f4847bf

Create adapter_config.json

Browse files
Files changed (1) hide show
  1. adapter_config.json +21 -0
adapter_config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "adapter_type": "lora",
3
+ "peft_type": "LORA",
4
+ "base_model_name_or_path": "meta-llama/Meta-Llama-3.1-70B-Instruct",
5
+ "r": 16,
6
+ "lora_alpha": 64,
7
+ "lora_dropout": 0.1,
8
+ "target_modules": [
9
+ "q_proj",
10
+ "up_proj",
11
+ "o_proj",
12
+ "k_proj",
13
+ "down_proj",
14
+ "gate_proj",
15
+ "v_proj"
16
+ ],
17
+ "bias": "none",
18
+ "task_type": "CAUSAL_LM",
19
+ "fan_in_fan_out": false,
20
+ "modules_to_save": null
21
+ }