richardr1126 commited on
Commit
e38b480
·
1 Parent(s): 340d82e

More updates

Browse files
Files changed (1) hide show
  1. app-ngrok.py +24 -9
app-ngrok.py CHANGED
@@ -33,7 +33,7 @@ def format(text):
33
 
34
  return final_query_markdown
35
 
36
- def generate(input_message: str, db_info="", temperature=0.3, top_p=0.9, top_k=0, repetition_penalty=1.08):
37
  # Format the user's input message
38
  messages = f"Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n\n### Instruction:\n\nConvert text to sql: {input_message} {db_info}\n\n### Response:\n\n"
39
 
@@ -49,7 +49,7 @@ def generate(input_message: str, db_info="", temperature=0.3, top_p=0.9, top_k=0
49
  "max_length": 512,
50
  "rep_pen": repetition_penalty,
51
  "sampler_order": [6,0,1,3,4,2,5],
52
- "stop_sequence": ["###", "Result"],
53
  }
54
  headers = {
55
  "Content-Type": "application/json",
@@ -64,7 +64,10 @@ def generate(input_message: str, db_info="", temperature=0.3, top_p=0.9, top_k=0
64
  if response_text and response_text[-1] == ".":
65
  response_text = response_text[:-1]
66
 
67
- return format(response_text)
 
 
 
68
 
69
  except Exception as e:
70
  print(f'Error occurred: {str(e)}')
@@ -84,14 +87,16 @@ with gr.Blocks(theme='gradio/soft') as demo:
84
  input_text = gr.Textbox(lines=3, placeholder='Write your question here...', label='NL Input')
85
  db_info = gr.Textbox(lines=4, placeholder='Example: | table_01 : column_01 , column_02 | table_02 : column_01 , column_02 | ...', label='Database Info')
86
 
87
- with gr.Accordion("Hyperparameters", open=False):
88
- temperature = gr.Slider(label="Temperature", minimum=0.0, maximum=1.0, value=0.3, step=0.1)
89
  top_p = gr.Slider(label="Top-p (nucleus sampling)", minimum=0.0, maximum=1.0, value=0.9, step=0.01)
90
  top_k = gr.Slider(label="Top-k", minimum=0, maximum=200, value=0, step=1)
91
  repetition_penalty = gr.Slider(label="Repetition Penalty", minimum=1.0, maximum=2.0, value=1.08, step=0.01)
 
 
92
 
93
  run_button = gr.Button("Generate SQL", variant="primary")
94
- run_button.click(fn=generate, inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty], outputs=output_box, api_name="txt2sql")
95
 
96
  info = gr.HTML(f"""
97
  <p>🌐 Leveraging the <a href='https://huggingface.co/{quantized_model}'><strong>4-bit GGML version</strong></a> of <a href='https://huggingface.co/{merged_model}'><strong>{merged_model}</strong></a> model.</p>
@@ -102,11 +107,21 @@ with gr.Blocks(theme='gradio/soft') as demo:
102
  with gr.Accordion("Examples", open=True):
103
  examples = gr.Examples([
104
  ["What is the average, minimum, and maximum age of all singers from France?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
 
 
 
 
 
 
 
 
 
105
  ["Show location and name for all stadiums with a capacity between 5000 and 10000.", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
106
  ["What are the number of concerts that occurred in the stadium with the largest capacity ?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
107
- ["How many male singers performed in concerts in the year 2023?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
108
- ["List the names of all singers who performed in a concert with the theme 'Rock'", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"]
109
- ], inputs=[input_text, db_info, 0.0, top_p, top_k, repetition_penalty], fn=generate, cache_examples=False if platform.system() == "Windows" or platform.system() == "Darwin" else True, outputs=output_box)
 
110
 
111
 
112
  readme_content = requests.get(f"https://huggingface.co/{merged_model}/raw/main/README.md").text
 
33
 
34
  return final_query_markdown
35
 
36
+ def generate(input_message: str, db_info="", temperature=0.5, top_p=0.9, top_k=0, repetition_penalty=1.08, format_sql=True, stop_sequence="###,Explanation"):
37
  # Format the user's input message
38
  messages = f"Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.\n\n### Instruction:\n\nConvert text to sql: {input_message} {db_info}\n\n### Response:\n\n"
39
 
 
49
  "max_length": 512,
50
  "rep_pen": repetition_penalty,
51
  "sampler_order": [6,0,1,3,4,2,5],
52
+ "stop_sequence": stop_sequence.split(",").append("###"),
53
  }
54
  headers = {
55
  "Content-Type": "application/json",
 
64
  if response_text and response_text[-1] == ".":
65
  response_text = response_text[:-1]
66
 
67
+ if format_sql:
68
+ return format(response_text)
69
+ else:
70
+ return response_text
71
 
72
  except Exception as e:
73
  print(f'Error occurred: {str(e)}')
 
87
  input_text = gr.Textbox(lines=3, placeholder='Write your question here...', label='NL Input')
88
  db_info = gr.Textbox(lines=4, placeholder='Example: | table_01 : column_01 , column_02 | table_02 : column_01 , column_02 | ...', label='Database Info')
89
 
90
+ with gr.Accordion("Options", open=False):
91
+ temperature = gr.Slider(label="Temperature", minimum=0.0, maximum=1.0, value=0.5, step=0.1)
92
  top_p = gr.Slider(label="Top-p (nucleus sampling)", minimum=0.0, maximum=1.0, value=0.9, step=0.01)
93
  top_k = gr.Slider(label="Top-k", minimum=0, maximum=200, value=0, step=1)
94
  repetition_penalty = gr.Slider(label="Repetition Penalty", minimum=1.0, maximum=2.0, value=1.08, step=0.01)
95
+ format_sql = gr.Checkbox(label="Format SQL + Remove Skeleton", value=True, interactive=True)
96
+ stop_sequence = gr.Textbox(lines=1, value="Explanation,Results,Note", label='Extra Stop Sequence')
97
 
98
  run_button = gr.Button("Generate SQL", variant="primary")
99
+ run_button.click(fn=generate, inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], outputs=output_box, api_name="txt2sql")
100
 
101
  info = gr.HTML(f"""
102
  <p>🌐 Leveraging the <a href='https://huggingface.co/{quantized_model}'><strong>4-bit GGML version</strong></a> of <a href='https://huggingface.co/{merged_model}'><strong>{merged_model}</strong></a> model.</p>
 
107
  with gr.Accordion("Examples", open=True):
108
  examples = gr.Examples([
109
  ["What is the average, minimum, and maximum age of all singers from France?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
110
+ ["How many students have dogs?", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid | pets.pettype = 'Dog' |"],
111
+ ["What is the average weight of pets owned by students?", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid |"],
112
+ ["How many male singers performed in concerts in the year 2023?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
113
+ ["How many students have pets heavier than 10 kg?", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid | pets.weight > 10 |"],
114
+ ], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], fn=generate, cache_examples=False if platform.system() == "Windows" or platform.system() == "Darwin" else True, outputs=output_box)
115
+
116
+ with gr.Accordion("More Examples", open=False):
117
+ examples = gr.Examples([
118
+ ["For students who have pets, how many pets does each student have? List their ids instead of names.", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid |"],
119
  ["Show location and name for all stadiums with a capacity between 5000 and 10000.", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
120
  ["What are the number of concerts that occurred in the stadium with the largest capacity ?", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
121
+ ["Which student has the oldest pet?", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid |"],
122
+ ["List the names of all singers who performed in a concert with the theme 'Rock'", "| stadium : stadium_id , location , name , capacity , highest , lowest , average | singer : singer_id , name , country , song_name , song_release_year , age , is_male | concert : concert_id , concert_name , theme , stadium_id , year | singer_in_concert : concert_id , singer_id | concert.stadium_id = stadium.stadium_id | singer_in_concert.singer_id = singer.singer_id | singer_in_concert.concert_id = concert.concert_id |"],
123
+ ["List all students who don't have pets.", "| student : stuid , lname , fname , age , sex , major , advisor , city_code | has_pet : stuid , petid | pets : petid , pettype , pet_age , weight | has_pet.stuid = student.stuid | has_pet.petid = pets.petid |"],
124
+ ], inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], fn=generate, cache_examples=False, outputs=output_box)
125
 
126
 
127
  readme_content = requests.get(f"https://huggingface.co/{merged_model}/raw/main/README.md").text