adityakorade
commited on
Commit
•
2ef2bf5
1
Parent(s):
56be16d
Upload LlamaForCausalLM
Browse files- adapter_config.json +3 -3
- generation_config.json +9 -0
adapter_config.json
CHANGED
@@ -20,13 +20,13 @@
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": "unsloth",
|
22 |
"target_modules": [
|
23 |
-
"q_proj",
|
24 |
-
"gate_proj",
|
25 |
"up_proj",
|
26 |
"down_proj",
|
27 |
"o_proj",
|
|
|
28 |
"v_proj",
|
29 |
-
"k_proj"
|
|
|
30 |
],
|
31 |
"task_type": "CAUSAL_LM",
|
32 |
"use_dora": false,
|
|
|
20 |
"rank_pattern": {},
|
21 |
"revision": "unsloth",
|
22 |
"target_modules": [
|
|
|
|
|
23 |
"up_proj",
|
24 |
"down_proj",
|
25 |
"o_proj",
|
26 |
+
"q_proj",
|
27 |
"v_proj",
|
28 |
+
"k_proj",
|
29 |
+
"gate_proj"
|
30 |
],
|
31 |
"task_type": "CAUSAL_LM",
|
32 |
"use_dora": false,
|
generation_config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 128000,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": 128001,
|
5 |
+
"max_length": 4096,
|
6 |
+
"temperature": 0.6,
|
7 |
+
"top_p": 0.9,
|
8 |
+
"transformers_version": "4.41.2"
|
9 |
+
}
|