Instructions to use OxxoCodes/InkubaLM-Instruct-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use OxxoCodes/InkubaLM-Instruct-test with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("lelapa/InkubaLM-0.4B") model = PeftModel.from_pretrained(base_model, "OxxoCodes/InkubaLM-Instruct-test") - Notebooks
- Google Colab
- Kaggle
Update adapter_config.json
#1
by Atnafu - opened
- adapter_config.json +1 -1
adapter_config.json
CHANGED
|
@@ -34,7 +34,7 @@
|
|
| 34 |
"up_proj",
|
| 35 |
"k_proj"
|
| 36 |
],
|
| 37 |
-
"task_type":
|
| 38 |
"use_dora": false,
|
| 39 |
"use_rslora": false
|
| 40 |
}
|
|
|
|
| 34 |
"up_proj",
|
| 35 |
"k_proj"
|
| 36 |
],
|
| 37 |
+
"task_type": CAUSAL_LM,
|
| 38 |
"use_dora": false,
|
| 39 |
"use_rslora": false
|
| 40 |
}
|