Instructions to use Eomts/Mistral7b_test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Eomts/Mistral7b_test with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.2") model = PeftModel.from_pretrained(base_model, "Eomts/Mistral7b_test") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,7 +20,9 @@ This model is a fine-tuned version of [mistralai/Mistral-7B-Instruct-v0.2](https
|
|
| 20 |
|
| 21 |
## Model description
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Intended uses & limitations
|
| 26 |
|
|
|
|
| 20 |
|
| 21 |
## Model description
|
| 22 |
|
| 23 |
+
This model is for personal study.</br>
|
| 24 |
+
I based on Ali Mobarekati's script, "Fine-Tuning Mistral 7b in Google Colab with QLoRA (complete guide)"</br>
|
| 25 |
+
Here's url : https://medium.com/@codersama/fine-tuning-mistral-7b-in-google-colab-with-qlora-complete-guide-60e12d437cca</br>
|
| 26 |
|
| 27 |
## Intended uses & limitations
|
| 28 |
|