TuanScientist commited on
Commit
acb65af
1 Parent(s): 192ecd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -46,9 +46,11 @@ def predict_vn_index(option=None):
46
  fig2 = m.plot_latest_forecast(forecast) # Replace this line with code to generate the second image
47
  fig2_path = "forecast_plot2.png"
48
  fig2.savefig(fig2_path)
49
- disclaimer = "Dự đoán được thực hiện bởi thuật toán AI học sâu (Deep Learning), và học tăng cường dữ liệu bởi đội ngũ AI Consultant. Dữ liệu được cập nhật mới sau 17h của ngày giao dịch. 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."
 
 
50
 
51
- return fig1_path, fig2_path, disclaimer
52
 
53
 
54
  if __name__ == "__main__":
@@ -56,6 +58,7 @@ if __name__ == "__main__":
56
  outputs = [
57
  gr.outputs.Image(type="filepath", label="Lịch sử VNIndex và dự đoán"),
58
  gr.outputs.Image(type="filepath", label="Dự đoán VNIndex cho 30 ngày tới"),
 
59
  gr.outputs.Textbox(label="Disclaimer")
60
  ]
61
  interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=outputs, title="Dự báo VN Index 30 ngày tới")
 
46
  fig2 = m.plot_latest_forecast(forecast) # Replace this line with code to generate the second image
47
  fig2_path = "forecast_plot2.png"
48
  fig2.savefig(fig2_path)
49
+ description = "Dự đoán được thực hiện bởi thuật toán AI học sâu (Deep Learning), và học tăng cường dữ liệu bởi đội ngũ AI Consultant. Dữ liệu được cập nhật mới sau 17h của ngày giao dịch."
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
+ return fig1_path, fig2_path, description, disclaimer
54
 
55
 
56
  if __name__ == "__main__":
 
58
  outputs = [
59
  gr.outputs.Image(type="filepath", label="Lịch sử VNIndex và dự đoán"),
60
  gr.outputs.Image(type="filepath", label="Dự đoán VNIndex cho 30 ngày tới"),
61
+ gr.outputs.Textbox(label="Mô tả"),
62
  gr.outputs.Textbox(label="Disclaimer")
63
  ]
64
  interface = gr.Interface(fn=predict_vn_index, inputs=dropdown, outputs=outputs, title="Dự báo VN Index 30 ngày tới")