How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="RealMati/t2sql_v6_structured")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("RealMati/t2sql_v6_structured")
model = AutoModelForSeq2SeqLM.from_pretrained("RealMati/t2sql_v6_structured", device_map="auto")
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
11
Safetensors
Model size
0.2B params
Tensor type
F32
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Space using RealMati/t2sql_v6_structured 1