Instructions to use AhmedSSoliman/Mistral-Instruct-SQL-Generation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use AhmedSSoliman/Mistral-Instruct-SQL-Generation 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, "AhmedSSoliman/Mistral-Instruct-SQL-Generation") - Notebooks
- Google Colab
- Kaggle
Commit ·
a7b762f
1
Parent(s): 2cdb77d
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
base_model: mistralai/Mistral-7B-Instruct-v0.1
|
| 4 |
-
pipeline_tag:
|
| 5 |
datasets:
|
| 6 |
- bugdaryan/sql-create-context-instruction
|
| 7 |
tags:
|
|
@@ -45,4 +45,4 @@ question = 'Show names for all employees with salary more than the average.'
|
|
| 45 |
generatedSql=predict_SQL(table, question)
|
| 46 |
print(generatedSql)
|
| 47 |
|
| 48 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
base_model: mistralai/Mistral-7B-Instruct-v0.1
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
datasets:
|
| 6 |
- bugdaryan/sql-create-context-instruction
|
| 7 |
tags:
|
|
|
|
| 45 |
generatedSql=predict_SQL(table, question)
|
| 46 |
print(generatedSql)
|
| 47 |
|
| 48 |
+
```
|