alex17cmbs commited on
Commit
7bfdca3
·
verified ·
1 Parent(s): 97870a4

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "transformer",
3
+ "base_model_name_or_path": "mistralai/Mistral-7B-v0.1",
4
+ "task_type": "CAUSAL_LM",
5
+ "bias": "none",
6
+ "fan_in_fan_out": false,
7
+ "inference_mode": true,
8
+ "init_lora_weights": true,
9
+ "layer_replication": null,
10
+ "lora_alpha": 64,
11
+ "lora_dropout": 0.1,
12
+ "peft_type": "LORA",
13
+ "r": 64,
14
+ "megatron_core": "megatron.core",
15
+ "use_dora": false,
16
+ "use_rslora": false,
17
+ "target_modules": [
18
+ "gate_proj",
19
+ "o_proj",
20
+ "k_proj",
21
+ "q_proj",
22
+ "v_proj"
23
+ ],
24
+ "auto_mapping": null,
25
+ "layers_pattern": null,
26
+ "layers_to_transform": null,
27
+ "loftq_config": {},
28
+ "alpha_pattern": {},
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "megatron_config": null,
32
+ "modules_to_save": null
33
+ }