Heisenberg08 commited on
Commit
646f8ee
·
1 Parent(s): 8db772b

changed font size

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -35,8 +35,8 @@ def predict_query(input_sentence,max_len=40,temp=0.7):
35
  # ('Predictive writing',"None"),index=1)
36
 
37
 
38
- st.title("Text2SQL")
39
- st.write('### Generate SQL Query with Natural Language sentence')
40
  st.markdown("Creator: [Pranav Kushare] (https://github.com/Pranav082001)")
41
 
42
  st.sidebar.markdown(
@@ -56,7 +56,7 @@ temp = st.sidebar.slider(label='Temperature (Creativity)', min_value=0.0, max_va
56
  # do_sample=st.checkbox("do_sample")
57
  # print(max_len)
58
  sentence = st.text_area('Input your sentence here:')
59
- st.markdown('### Example: "Calculate Average Salary of Employee"')
60
  Enter=st.button("Generate")
61
  clear=st.button("Clear")
62
 
 
35
  # ('Predictive writing',"None"),index=1)
36
 
37
 
38
+ st.title("Text2SQL")
39
+ st.write('# Generate SQL Query with Natural Language sentence')
40
  st.markdown("Creator: [Pranav Kushare] (https://github.com/Pranav082001)")
41
 
42
  st.sidebar.markdown(
 
56
  # do_sample=st.checkbox("do_sample")
57
  # print(max_len)
58
  sentence = st.text_area('Input your sentence here:')
59
+ st.markdown('# Example: "Find Average Salary of Employees"')
60
  Enter=st.button("Generate")
61
  clear=st.button("Clear")
62