Upload LlamaForCausalLM
Browse files- adapter_config.json +3 -3
- generation_config.json +12 -0
adapter_config.json
CHANGED
@@ -25,11 +25,11 @@
|
|
25 |
"target_modules": [
|
26 |
"down_proj",
|
27 |
"up_proj",
|
28 |
-
"q_proj",
|
29 |
"v_proj",
|
30 |
"gate_proj",
|
31 |
-
"
|
32 |
-
"k_proj"
|
|
|
33 |
],
|
34 |
"task_type": "CAUSAL_LM",
|
35 |
"use_dora": false,
|
|
|
25 |
"target_modules": [
|
26 |
"down_proj",
|
27 |
"up_proj",
|
|
|
28 |
"v_proj",
|
29 |
"gate_proj",
|
30 |
+
"q_proj",
|
31 |
+
"k_proj",
|
32 |
+
"o_proj"
|
33 |
],
|
34 |
"task_type": "CAUSAL_LM",
|
35 |
"use_dora": false,
|
generation_config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 128000,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
128001,
|
6 |
+
128008,
|
7 |
+
128009
|
8 |
+
],
|
9 |
+
"temperature": 0.6,
|
10 |
+
"top_p": 0.9,
|
11 |
+
"transformers_version": "4.48.1"
|
12 |
+
}
|