Text Generation
Transformers
Safetensors
t5
text2text-generation
sql
text-to-sql
wikisql
text-generation-inference
How to use from
SGLangUse 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 "RealMati/t2sql_v6_structured" \
--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": "RealMati/t2sql_v6_structured",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'Quick Links
T2SQL V6 Structured - Text to SQL
Fine-tuned T5 model that converts natural language questions to SQL queries.
Usage
from transformers import pipeline
pipe = pipeline("text2text-generation", model="RealMati/t2sql_v6_structured")
result = pipe("translate to SQL: list all users older than 18 | schema: users(id, name, age, email)")
print(result[0]["generated_text"])
Training
- Base model: T5-base
- Dataset: WikiSQL (56k train / 8k val / 15k test)
- Task: Natural language to structured SQL output
- Downloads last month
- 4
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "RealMati/t2sql_v6_structured" \ --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": "RealMati/t2sql_v6_structured", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'