Instructions to use kirankotha/mistral7b-sql-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kirankotha/mistral7b-sql-model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="kirankotha/mistral7b-sql-model")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("kirankotha/mistral7b-sql-model") model = AutoModelForCausalLM.from_pretrained("kirankotha/mistral7b-sql-model") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use kirankotha/mistral7b-sql-model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kirankotha/mistral7b-sql-model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kirankotha/mistral7b-sql-model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/kirankotha/mistral7b-sql-model
- SGLang
How to use kirankotha/mistral7b-sql-model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "kirankotha/mistral7b-sql-model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kirankotha/mistral7b-sql-model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "kirankotha/mistral7b-sql-model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kirankotha/mistral7b-sql-model", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use kirankotha/mistral7b-sql-model with Docker Model Runner:
docker model run hf.co/kirankotha/mistral7b-sql-model
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,15 +1,44 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
from
|
| 10 |
import torch
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
tags:
|
| 5 |
+
- mistral
|
| 6 |
+
- text-to-sql
|
| 7 |
+
- sql
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
base_model: mistralai/Mistral-7B-v0.1
|
| 12 |
+
---
|
| 13 |
|
| 14 |
+
# Mistral-7B SQL (fine-tuned)
|
| 15 |
|
| 16 |
+
Fine-tuned Mistral-7B for Text-to-SQL on `b-mc2/sql-create-context`.
|
| 17 |
|
| 18 |
+
## Usage (Transformers)
|
| 19 |
+
|
| 20 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 21 |
import torch
|
| 22 |
|
| 23 |
+
model_id = "kirankotha/mistral7b-sql-model"
|
| 24 |
+
tok = AutoTokenizer.from_pretrained(model_id)
|
| 25 |
+
mdl = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", torch_dtype=torch.float16)
|
| 26 |
+
|
| 27 |
+
prompt = (
|
| 28 |
+
"You are a text-to-SQL model.
|
| 29 |
+
"
|
| 30 |
+
"### Input:
|
| 31 |
+
"
|
| 32 |
+
"Which product has the highest price?
|
| 33 |
+
"
|
| 34 |
+
"### Context:
|
| 35 |
+
"
|
| 36 |
+
"CREATE TABLE products (id INTEGER, name TEXT, price REAL)
|
| 37 |
+
"
|
| 38 |
+
"### Response:
|
| 39 |
+
"
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
ids = tok(prompt, return_tensors="pt").to(mdl.device)
|
| 43 |
+
out = mdl.generate(**ids, max_new_tokens=100, do_sample=False, pad_token_id=tok.pad_token_id)
|
| 44 |
+
print(tok.decode(out[0], skip_special_tokens=True))
|