Instructions to use kanxxyc/Mistral-7B-SQLTuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use kanxxyc/Mistral-7B-SQLTuned with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.1") model = PeftModel.from_pretrained(base_model, "kanxxyc/Mistral-7B-SQLTuned") - Notebooks
- Google Colab
- Kaggle
kankankiki commited on
Commit ·
afe4d0f
1
Parent(s): 39d4dac
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,7 +9,7 @@ base_model: mistralai/Mistral-7B-Instruct-v0.1
|
|
| 9 |
This is a chat model specialized for SQL,
|
| 10 |
which has been fine-tuned based on the 'Mistral-7B-Instruct-v0.1' using 'sql-create-context' datasets.
|
| 11 |
|
| 12 |
-
SQLに特化したMistral-7Bモデルです(
|
| 13 |
|
| 14 |
## Training procedure
|
| 15 |
|
|
|
|
| 9 |
This is a chat model specialized for SQL,
|
| 10 |
which has been fine-tuned based on the 'Mistral-7B-Instruct-v0.1' using 'sql-create-context' datasets.
|
| 11 |
|
| 12 |
+
SQLに特化したMistral-7Bモデルです(普段のクエリ書くために作りました、よろしければ試してみてください)
|
| 13 |
|
| 14 |
## Training procedure
|
| 15 |
|