stinoco commited on
Commit
a7f1694
·
1 Parent(s): d1a9040

added dataframe to demo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ with gr.Blocks() as demo:
19
  with gr.Row():
20
  serie = gr.Dropdown(choices = ['SOM', 'Volumen'], value = 'SOM', label = 'Serie', info = 'Choose the serie to forecast')
21
  periods = gr.Slider(minimum = 1, maximum = 12, step = 1, value = 3, label = 'Months', info = 'How many months to forecast')
22
- percent_change = gr.Slider(minimum = -100, maximum = 100, step = 5, value = -5, label = '% Change vs Last Year', info = "Price change vs last year")
23
 
24
  with gr.Row():
25
  dataframe = gr.Dataframe(label = 'Predicted values')
 
19
  with gr.Row():
20
  serie = gr.Dropdown(choices = ['SOM', 'Volumen'], value = 'SOM', label = 'Serie', info = 'Choose the serie to forecast')
21
  periods = gr.Slider(minimum = 1, maximum = 12, step = 1, value = 3, label = 'Months', info = 'How many months to forecast')
22
+ percent_change = gr.Slider(minimum = -100, maximum = 100, step = 5, value = -5, label = 'Price Change', info = "Price change vs last year (%)")
23
 
24
  with gr.Row():
25
  dataframe = gr.Dataframe(label = 'Predicted values')