Update app.py
Browse files
app.py
CHANGED
@@ -3,9 +3,9 @@ import torch
|
|
3 |
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
4 |
import gradio as gr
|
5 |
|
6 |
-
title = """# 🙋🏻♂️Welcome to 🌟Tonic's Defog 🌬️🌁🌫️SqlCoder-
|
7 |
-
You can use this Space to test out the current model [defog/
|
8 |
-
You can also use
|
9 |
Join us : 🌟TeamTonic🌟 is always making cool demos! Join our active builder's🛠️community 👻[![Let's build the future of AI together! 🚀🤖](https://discordapp.com/api/guilds/1109943800132010065/widget.png)](https://discord.gg/GWpVpekp) On 🤗Huggingface: [TeamTonic](https://huggingface.co/TeamTonic) & [MultiTransformer](https://huggingface.co/MultiTransformer) On 🌐Github: [Polytonic](https://github.com/tonic-ai) & contribute to 🌟 [Poly](https://github.com/tonic-ai/poly) 🤗Big thanks to Yuvi Sharma and all the folks at huggingface for the community grant 🤗
|
10 |
"""
|
11 |
|
@@ -70,14 +70,14 @@ def generate_sql(question):
|
|
70 |
return sql_query_generator.run_inference(question)
|
71 |
|
72 |
def main():
|
73 |
-
model_name = "defog/
|
74 |
sql_query_generator = SQLQueryGenerator(model_name)
|
75 |
|
76 |
with gr.Blocks() as demo:
|
77 |
gr.Markdown(title)
|
78 |
question = gr.Textbox(label="Enter your question")
|
79 |
submit = gr.Button("Generate SQL Query")
|
80 |
-
output = gr.Textbox(label="🌬️🌁🌫️SqlCoder-
|
81 |
submit.click(fn=generate_sql, inputs=question, outputs=output)
|
82 |
|
83 |
demo.launch()
|
|
|
3 |
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
4 |
import gradio as gr
|
5 |
|
6 |
+
title = """# 🙋🏻♂️Welcome to 🌟Tonic's Defog 🌬️🌁🌫️SqlCoder-2
|
7 |
+
You can use this Space to test out the current model [defog/sqlcoder2](https://huggingface.co/defog/sqlcoder2). [defog/sqlcoder2](https://huggingface.co/defog/sqlcoder2) is a 15B parameter model that doesn't outperform gpt-4 and gpt-4-turbo for natural language to SQL generation tasks on our sql-eval framework, and significantly outperforms all popular open-source models.
|
8 |
+
You can also use efog 🌬️🌁🌫️SqlCoder by cloning this space. 🧬🔬🔍 Simply click here: <a style="display:inline-block" href="https://huggingface.co/spaces/Tonic/sqlcoder2?duplicate=true"><img src="https://img.shields.io/badge/-Duplicate%20Space-blue?labelColor=white&style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAP5JREFUOE+lk7FqAkEURY+ltunEgFXS2sZGIbXfEPdLlnxJyDdYB62sbbUKpLbVNhyYFzbrrA74YJlh9r079973psed0cvUD4A+4HoCjsA85X0Dfn/RBLBgBDxnQPfAEJgBY+A9gALA4tcbamSzS4xq4FOQAJgCDwV2CPKV8tZAJcAjMMkUe1vX+U+SMhfAJEHasQIWmXNN3abzDwHUrgcRGmYcgKe0bxrblHEB4E/pndMazNpSZGcsZdBlYJcEL9Afo75molJyM2FxmPgmgPqlWNLGfwZGG6UiyEvLzHYDmoPkDDiNm9JR9uboiONcBXrpY1qmgs21x1QwyZcpvxt9NS09PlsPAAAAAElFTkSuQmCC&logoWidth=14" alt="Duplicate Space"></a></h3>
|
9 |
Join us : 🌟TeamTonic🌟 is always making cool demos! Join our active builder's🛠️community 👻[![Let's build the future of AI together! 🚀🤖](https://discordapp.com/api/guilds/1109943800132010065/widget.png)](https://discord.gg/GWpVpekp) On 🤗Huggingface: [TeamTonic](https://huggingface.co/TeamTonic) & [MultiTransformer](https://huggingface.co/MultiTransformer) On 🌐Github: [Polytonic](https://github.com/tonic-ai) & contribute to 🌟 [Poly](https://github.com/tonic-ai/poly) 🤗Big thanks to Yuvi Sharma and all the folks at huggingface for the community grant 🤗
|
10 |
"""
|
11 |
|
|
|
70 |
return sql_query_generator.run_inference(question)
|
71 |
|
72 |
def main():
|
73 |
+
model_name = "defog/sqlcoder2"
|
74 |
sql_query_generator = SQLQueryGenerator(model_name)
|
75 |
|
76 |
with gr.Blocks() as demo:
|
77 |
gr.Markdown(title)
|
78 |
question = gr.Textbox(label="Enter your question")
|
79 |
submit = gr.Button("Generate SQL Query")
|
80 |
+
output = gr.Textbox(label="🌬️🌁🌫️SqlCoder-2")
|
81 |
submit.click(fn=generate_sql, inputs=question, outputs=output)
|
82 |
|
83 |
demo.launch()
|