Update app.py
Browse files
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.
|
101 |
-
end_date_input = gr.
|
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,
|