dibend commited on
Commit
ddd2d15
1 Parent(s): 39dc771

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -50,10 +50,10 @@ def train_predict_wrapper(ticker, start_date, end_date, prediction_days):
50
  iface = gr.Interface(
51
  fn=train_predict_wrapper,
52
  inputs=[
53
- gr.inputs.Textbox(label="Ticker Symbol"),
54
- gr.inputs.Textbox(label="Start Date (YYYY-MM-DD)"),
55
- gr.inputs.Textbox(label="End Date (YYYY-MM-DD)"),
56
- gr.inputs.Slider(minimum=1, maximum=30, step=1, default=5, label="Prediction Days")
57
  ],
58
  outputs="plot"
59
  )
 
50
  iface = gr.Interface(
51
  fn=train_predict_wrapper,
52
  inputs=[
53
+ gr.Textbox(label="Ticker Symbol"),
54
+ gr.Textbox(label="Start Date (YYYY-MM-DD)"),
55
+ gr.Textbox(label="End Date (YYYY-MM-DD)"),
56
+ gr.Slider(minimum=1, maximum=30, step=1, label="Prediction Days")
57
  ],
58
  outputs="plot"
59
  )