parole-study-viper commited on
Commit
5383e66
·
verified ·
1 Parent(s): 6ed4adf

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +20 -0
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "peft",
3
+ "peft_type": "LORA",
4
+ "base_model_name_or_path": "lmstudio-community/gemma-3-27b-it-GGUF",
5
+ "task_type": "CAUSAL_LM",
6
+ "inference_mode": false,
7
+ "r": 16,
8
+ "lora_alpha": 16,
9
+ "lora_dropout": 0.05,
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
+ "description": "LoRA-fine-tuned adapter for Gemma 3 converting natural language queries into SQL"
20
+ }