Instructions to use makyash/rtl_synthesis with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use makyash/rtl_synthesis with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/codellama-7b-bnb-4bit") model = PeftModel.from_pretrained(base_model, "makyash/rtl_synthesis") - Notebooks
- Google Colab
- Kaggle
Mohammad Akyash commited on
Upload adapter_config.json with huggingface_hub
Browse files- adapter_config.json +3 -3
adapter_config.json
CHANGED
|
@@ -21,12 +21,12 @@
|
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
"o_proj",
|
| 24 |
-
"up_proj",
|
| 25 |
"k_proj",
|
|
|
|
|
|
|
| 26 |
"q_proj",
|
| 27 |
-
"down_proj",
|
| 28 |
"gate_proj",
|
| 29 |
-
"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|
|
|
|
| 21 |
"revision": null,
|
| 22 |
"target_modules": [
|
| 23 |
"o_proj",
|
|
|
|
| 24 |
"k_proj",
|
| 25 |
+
"v_proj",
|
| 26 |
+
"up_proj",
|
| 27 |
"q_proj",
|
|
|
|
| 28 |
"gate_proj",
|
| 29 |
+
"down_proj"
|
| 30 |
],
|
| 31 |
"task_type": "CAUSAL_LM",
|
| 32 |
"use_dora": false,
|