zgrgr commited on
Commit
56faddc
·
verified ·
1 Parent(s): 5c81c9e

Create config.json

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