anonhossain1710 commited on
Commit
e9ffa53
1 Parent(s): 1e63ac4

This file was asking while using in google Colab

Browse files
Files changed (1) hide show
  1. config.json +20 -0
config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model_name_or_path": "LyliaEngine/Sinozick_Style_XL_Pony", #base model to apply LoRA to
3
+ "bias": "none",
4
+ "fan_in_fan_out": false,
5
+ "inference_mode": true,
6
+ "init_lora_weights": true,
7
+ "layers_pattern": null,
8
+ "layers_to_transform": null,
9
+ "lora_alpha": 32,
10
+ "lora_dropout": 0.05,
11
+ "modules_to_save": null,
12
+ "peft_type": "LORA", #PEFT method type
13
+ "r": 16,
14
+ "revision": null,
15
+ "target_modules": [
16
+ "q_proj", #model modules to apply LoRA to (query and value projection layers)
17
+ "v_proj"
18
+ ],
19
+ "task_type": "CAUSAL_LM" #type of task to train model on
20
+ }