Abhisesh7 commited on
Commit
efc13b6
·
verified ·
1 Parent(s): 3b2fc3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -97,8 +97,8 @@ stock_tickers = ['AAPL', 'MSFT', 'GOOGL', 'AMZN', 'FB', 'TSLA', 'NFLX', 'NVDA',
97
 
98
  # Create Gradio Interface
99
  ticker_input = gr.Dropdown(choices=stock_tickers, label="Select Stock Ticker")
100
- start_date_input = gr.inputs.Date(label="Start Date") # Corrected date input
101
- end_date_input = gr.inputs.Date(label="End Date") # Corrected date input
102
 
103
  iface = gr.Interface(
104
  fn=stock_prediction_app,
 
97
 
98
  # Create Gradio Interface
99
  ticker_input = gr.Dropdown(choices=stock_tickers, label="Select Stock Ticker")
100
+ start_date_input = gr.Date(label="Start Date") # Corrected date input
101
+ end_date_input = gr.Date(label="End Date") # Corrected date input
102
 
103
  iface = gr.Interface(
104
  fn=stock_prediction_app,