RyanDev1st commited on
Commit
b8c00df
verified
1 Parent(s): 87d15f3

Update adapter_config.json

Browse files
Files changed (1) hide show
  1. adapter_config.json +14 -29
adapter_config.json CHANGED
@@ -1,34 +1,19 @@
1
  {
2
- "alpha_pattern": {},
3
- "auto_mapping": null,
4
  "base_model_name_or_path": "google/gemma-3-27b-it",
5
- "bias": "none",
6
- "corda_config": null,
7
- "eva_config": null,
8
- "exclude_modules": null,
9
- "fan_in_fan_out": null,
10
- "inference_mode": true,
11
- "init_lora_weights": true,
12
- "layer_replication": null,
13
- "layers_pattern": null,
14
- "layers_to_transform": null,
15
- "loftq_config": {},
16
- "lora_alpha": 8,
17
- "lora_bias": false,
18
- "lora_dropout": 0.05,
19
- "megatron_config": null,
20
- "megatron_core": "megatron.core",
21
- "modules_to_save": null,
22
  "peft_type": "LORA",
23
- "qalora_group_size": 16,
24
- "r": 4,
25
- "rank_pattern": {},
26
- "revision": null,
27
- "target_modules": "model.language_model.layers.[\\d]+.(mlp|cross_attn|self_attn).(up|down|gate|q|k|v|o)_proj",
28
- "target_parameters": [],
29
  "task_type": "CAUSAL_LM",
30
- "trainable_token_indices": null,
31
- "use_dora": false,
32
- "use_qalora": false,
33
- "use_rslora": false
 
 
 
 
 
 
 
 
 
 
34
  }
 
1
  {
 
 
2
  "base_model_name_or_path": "google/gemma-3-27b-it",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "peft_type": "LORA",
 
 
 
 
 
 
4
  "task_type": "CAUSAL_LM",
5
+ "r": 4,
6
+ "lora_alpha": 8,
7
+ "lora_dropout": 0.05,
8
+ "bias": "none",
9
+ "target_modules": [
10
+ "q_proj",
11
+ "k_proj",
12
+ "v_proj",
13
+ "o_proj",
14
+ "gate_proj",
15
+ "up_proj",
16
+ "down_proj"
17
+ ],
18
+ "inference_mode": true
19
  }