Instructions to use themanas021/Mistral-MetaMath-camel_math01 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use themanas021/Mistral-MetaMath-camel_math01 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("TheBloke/MetaMath-Mistral-7B-GPTQ") model = PeftModel.from_pretrained(base_model, "themanas021/Mistral-MetaMath-camel_math01") - Notebooks
- Google Colab
- Kaggle
Commit ·
a08ee1a
1
Parent(s): 1daa0a9
Update adapter_config.json
Browse files- adapter_config.json +2 -1
adapter_config.json
CHANGED
|
@@ -24,5 +24,6 @@
|
|
| 24 |
"k_proj",
|
| 25 |
"o_proj"
|
| 26 |
],
|
| 27 |
-
"task_type": "CAUSAL_LM"
|
|
|
|
| 28 |
}
|
|
|
|
| 24 |
"k_proj",
|
| 25 |
"o_proj"
|
| 26 |
],
|
| 27 |
+
"task_type": "CAUSAL_LM",
|
| 28 |
+
"disable_exllama": true
|
| 29 |
}
|