Spaces:
Sleeping
Sleeping
UPDATED
Browse files
app.py
CHANGED
@@ -57,8 +57,7 @@ with gr.Blocks() as demo:
|
|
57 |
"""
|
58 |
# NSE Stock Price Trend Prediction
|
59 |
## Select the Stock from Dropdown Menu to get One Week Prediction.
|
60 |
-
|
61 |
-
Disclaimer : This model is for Informative Purpose Only, and doesn't support any particular Stock.
|
62 |
"""
|
63 |
|
64 |
)
|
@@ -85,7 +84,14 @@ with gr.Blocks() as demo:
|
|
85 |
|
86 |
with gr.Row():
|
87 |
forecast_plot = gr.Plot(label = 'Forecast Plot')
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
|
91 |
submit_btn.click(get_forecast, inputs=dropdown, outputs=forecast_plot)
|
|
|
57 |
"""
|
58 |
# NSE Stock Price Trend Prediction
|
59 |
## Select the Stock from Dropdown Menu to get One Week Prediction.
|
60 |
+
|
|
|
61 |
"""
|
62 |
|
63 |
)
|
|
|
84 |
|
85 |
with gr.Row():
|
86 |
forecast_plot = gr.Plot(label = 'Forecast Plot')
|
87 |
+
|
88 |
+
|
89 |
+
gr.Markdown(
|
90 |
+
"""
|
91 |
+
Disclaimer : This model is for Informative Purpose Only, and doesn't support any particular Stock.
|
92 |
+
"""
|
93 |
+
|
94 |
+
)
|
95 |
|
96 |
|
97 |
submit_btn.click(get_forecast, inputs=dropdown, outputs=forecast_plot)
|