File size: 668 Bytes
5132d2c d7473da 5132d2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
---
pipeline_tag: text-generation
library_name: transformers
tags:
- t5
- text2text-generation
- sql
- text-to-sql
- wikisql
---
# T2SQL V6 Structured - Text to SQL
Fine-tuned T5 model that converts natural language questions to SQL queries.
## Usage
```python
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
|