Spaces:
Sleeping
Sleeping
Commit
·
59a1ae2
1
Parent(s):
28e569e
Update app.py
Browse files
app.py
CHANGED
@@ -34,29 +34,39 @@ m = CustomNeuralProphet(
|
|
34 |
unknown_data_normalization=True,
|
35 |
seasonality_mode="multiplicative",
|
36 |
drop_missing=True,
|
37 |
-
learning_rate=0.
|
38 |
)
|
39 |
|
40 |
-
m.fit(df, freq='D'
|
41 |
|
42 |
future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
|
43 |
forecast = m.predict(future)
|
44 |
|
45 |
|
46 |
def predict_vn_index(option=None):
|
47 |
-
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
50 |
disclaimer = "Quý khách chỉ xem đây là tham khảo, công ty không chịu bất cứ trách nhiệm nào về tình trạng đầu tư của quý khách."
|
51 |
-
|
|
|
52 |
|
53 |
|
54 |
if __name__ == "__main__":
|
55 |
dropdown = gr.inputs.Dropdown(["VNIndex"], label="Choose an option", default="VNIndex")
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
|
61 |
|
62 |
|
|
|
34 |
unknown_data_normalization=True,
|
35 |
seasonality_mode="multiplicative",
|
36 |
drop_missing=True,
|
37 |
+
learning_rate=0.03,
|
38 |
)
|
39 |
|
40 |
+
m.fit(df, freq='D')
|
41 |
|
42 |
future = m.make_future_dataframe(df, periods=30, n_historic_predictions=True)
|
43 |
forecast = m.predict(future)
|
44 |
|
45 |
|
46 |
def predict_vn_index(option=None):
|
47 |
+
fig1 = m.plot(forecast)
|
48 |
+
fig1_path = "forecast_plot1.png"
|
49 |
+
fig1.savefig(fig1_path)
|
50 |
+
|
51 |
+
# Add code to generate the second image (fig2)
|
52 |
+
fig2 = m.plot_latest_forecast(forecast) # Replace this line with code to generate the second image
|
53 |
+
fig2_path = "forecast_plot2.png"
|
54 |
+
fig2.savefig(fig2_path)
|
55 |
disclaimer = "Quý khách chỉ xem đây là tham khảo, công ty không chịu bất cứ trách nhiệm nào về tình trạng đầu tư của quý khách."
|
56 |
+
|
57 |
+
return fig1_path, fig2_path, disclaimer
|
58 |
|
59 |
|
60 |
if __name__ == "__main__":
|
61 |
dropdown = gr.inputs.Dropdown(["VNIndex"], label="Choose an option", default="VNIndex")
|
62 |
+
outputs = [
|
63 |
+
gr.outputs.Image(type="filepath", label="First Image"),
|
64 |
+
gr.outputs.Image(type="filepath", label="Second Image"),
|
65 |
+
gr.outputs.Textbox(label="Disclaimer")
|
66 |
+
]
|
67 |
+
interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=outputs, title="Dự báo VN Index 30 ngày tới")
|
68 |
+
interface.launch()
|
69 |
+
|
70 |
|
71 |
|
72 |
|