xferdie commited on
Commit
83fc20e
·
verified ·
1 Parent(s): b2fc3fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,8 +72,8 @@ def stockprice(stockname,number_of_samples):
72
  return pred_df,plt.gcf()
73
 
74
  interface = gr.Interface(fn = stockprice,
75
- inputs = [gr.inputs.Textbox(lines=1, placeholder="Enter STOCK-TICKER", default="FB", label="STOCKNAME"),
76
- gr.inputs.Slider(minimum=0, maximum=150, step=1, default=5, label="Number of Sample to Predict")],
77
  outputs = ["dataframe","plot"],
78
  description="LSTM STOCK PREDICTION")
79
 
 
72
  return pred_df,plt.gcf()
73
 
74
  interface = gr.Interface(fn = stockprice,
75
+ inputs = [gr.Textbox(lines=1, placeholder="Enter STOCK-TICKER", default="FB", label="STOCKNAME"),
76
+ gr.Slider(minimum=0, maximum=150, step=1, default=5, label="Number of Sample to Predict")],
77
  outputs = ["dataframe","plot"],
78
  description="LSTM STOCK PREDICTION")
79