TuanScientist commited on
Commit
59a1ae2
·
1 Parent(s): 28e569e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -10
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.1,
38
  )
39
 
40
- m.fit(df, freq='D', epochs=10, validate_each_epoch=True, valid_p=0.2) # Specify number of epochs and validation parameters
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
- fig = m.plot(forecast)
48
- path = "forecast_plot.png"
49
- fig.savefig(path)
 
 
 
 
 
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
- return path, disclaimer
 
52
 
53
 
54
  if __name__ == "__main__":
55
  dropdown = gr.inputs.Dropdown(["VNIndex"], label="Choose an option", default="VNIndex")
56
- image_output = gr.outputs.Image(type="file", label="Forecast Plot")
57
- disclaimer_output = gr.outputs.Textbox(label="Disclaimer")
58
- interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=[image_output, disclaimer_output], title="Dự báo VN Index 30 ngày tới")
59
- interface.launch(share=True)
 
 
 
 
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