Sagar Thacker commited on
Commit
ea8d11f
·
1 Parent(s): 22fca73

updated app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -109,10 +109,10 @@ def cal_result(alpha, month):
109
 
110
  with gr.Blocks() as demo:
111
  with gr.Row():
112
- alpha = gr.Dropdown(choices=["0.1", "0.05", "0.01"], label="Significance level", info="The significance level for the confidence intervals.", value="0.05", name="alpha")
113
- month = gr.Dropdown(choices=["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"], label="Forecast period", info="The number of months to forecast.", value="12", name="period")
114
 
115
- submit = gr.Button(text="Submit", label="Submit", type="submit")
116
 
117
  daily = gr.Plot()
118
 
 
109
 
110
  with gr.Blocks() as demo:
111
  with gr.Row():
112
+ alpha = gr.Dropdown(choices=["0.1", "0.05", "0.01"], label="Significance level", info="The significance level for the confidence intervals.", value="0.05")
113
+ month = gr.Dropdown(choices=["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"], label="Forecast period", info="The number of months to forecast.", value="12")
114
 
115
+ submit = gr.Button(text="Submit")
116
 
117
  daily = gr.Plot()
118