Update adapter_config.json
Browse files- adapter_config.json +11 -9
adapter_config.json
CHANGED
@@ -1,17 +1,19 @@
|
|
1 |
{
|
2 |
"base_model_name_or_path": "openai/whisper-large-v2",
|
3 |
-
"bias": "none",
|
4 |
-
"fan_in_fan_out": false,
|
5 |
-
"inference_mode": true,
|
6 |
-
"init_lora_weights": true,
|
7 |
-
"lora_alpha": 64,
|
8 |
-
"lora_dropout": 0.05,
|
9 |
-
"modules_to_save": null,
|
10 |
"peft_type": "LORA",
|
|
|
11 |
"r": 32,
|
|
|
|
|
12 |
"target_modules": [
|
13 |
"q_proj",
|
14 |
-
"
|
|
|
|
|
15 |
],
|
16 |
-
"
|
|
|
|
|
|
|
|
|
17 |
}
|
|
|
1 |
{
|
2 |
"base_model_name_or_path": "openai/whisper-large-v2",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
"peft_type": "LORA",
|
4 |
+
"task_type": "SEQ_2_SEQ_LM",
|
5 |
"r": 32,
|
6 |
+
"lora_alpha": 64,
|
7 |
+
"lora_dropout": 0.1,
|
8 |
"target_modules": [
|
9 |
"q_proj",
|
10 |
+
"k_proj",
|
11 |
+
"v_proj",
|
12 |
+
"o_proj"
|
13 |
],
|
14 |
+
"modules_to_save": [],
|
15 |
+
"bias": "none",
|
16 |
+
"fan_in_fan_out": false,
|
17 |
+
"inference_mode": true,
|
18 |
+
"init_lora_weights": true
|
19 |
}
|