Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,23 +1,35 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import pipeline
|
|
|
3 |
|
4 |
-
# Load
|
5 |
-
|
6 |
-
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
return sql_query
|
12 |
|
13 |
-
#
|
|
|
|
|
|
|
14 |
interface = gr.Interface(
|
15 |
fn=generate_sql,
|
16 |
-
inputs=gr.Textbox(
|
17 |
-
outputs=
|
18 |
-
|
19 |
-
|
|
|
20 |
)
|
21 |
|
|
|
22 |
if __name__ == "__main__":
|
23 |
-
interface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
|
3 |
+
from datasets import load_dataset
|
4 |
|
5 |
+
# Load tokenizer and model
|
6 |
+
tokenizer = AutoTokenizer.from_pretrained("hrshtsharma2012/NL2SQL-Picard-final")
|
7 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("hrshtsharma2012/NL2SQL-Picard-final")
|
8 |
|
9 |
+
# Initialize the pipeline
|
10 |
+
nl2sql_pipeline = pipeline("text2text-generation", model=model, tokenizer=tokenizer)
|
11 |
+
|
12 |
+
# Load a part of the Spider dataset
|
13 |
+
spider_dataset = load_dataset("spider", split='train[:5]')
|
14 |
+
|
15 |
+
def generate_sql(query):
|
16 |
+
results = nl2sql_pipeline(query)
|
17 |
+
sql_query = results[0]['generated_text']
|
18 |
return sql_query
|
19 |
|
20 |
+
# Use examples from the Spider dataset
|
21 |
+
example_questions = [(question['question'],) for question in spider_dataset]
|
22 |
+
|
23 |
+
# Create a Gradio interface
|
24 |
interface = gr.Interface(
|
25 |
fn=generate_sql,
|
26 |
+
inputs=gr.Textbox(lines=2, placeholder="Enter your natural language query here..."),
|
27 |
+
outputs="text",
|
28 |
+
examples=example_questions,
|
29 |
+
title="NL to SQL with Picard",
|
30 |
+
description="This model converts natural language queries into SQL using the Spider dataset. Try one of the example questions or enter your own!"
|
31 |
)
|
32 |
|
33 |
+
# Launch the app
|
34 |
if __name__ == "__main__":
|
35 |
+
interface.launch()
|