NLP-SQL / README.md
Omkar1872's picture
Upload 3 files
a22c47e verified
|
raw
history blame
739 Bytes

🧠 Natural Language β†’ SQL Generator App

This app converts natural language questions into SQL queries and runs them directly on your uploaded CSV data.

πŸš€ Features

  • Upload any CSV file
  • Ask questions in plain English
  • Auto-generates SQL queries
  • Executes SQL and shows the result instantly
  • Runs 100% on Hugging Face β€” no API keys required

🧩 Tech Stack

  • Python 🐍
  • Transformers (Hugging Face)
  • Gradio (UI)
  • SQLite + Pandas

🧠 Model Used

mrm8488/t5-base-finetuned-wikiSQL

πŸͺ„ Example

Input:

Show employees older than 25

Output SQL:

SELECT * FROM data_table WHERE age > 25;