├── .gitignore ├── CNN ├── CNNStockNumber.py ├── CNNStockText.py ├── Cnn.py ├── DataHelper.py ├── News.py └── OriginData.py ├── Database ├── VMysql.py └── prediction.sql ├── Ensemble └── Ensemble.py ├── FetchBindex ├── BindexSpider.py ├── api.py ├── browser.py ├── city.py ├── config.ini ├── config.py ├── img_model │ ├── ,.png │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── img_util.py ├── out │ └── cookie.txt ├── requirements.txt ├── task.txt └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── log.cpython-35.pyc │ └── log.py ├── LSTM ├── LSTMStockOrigin.py ├── OriginData.py └── remark │ ├── LSTMStockBindex.py │ ├── LSTMStockNews.py │ └── LSTMStockOrigin.py ├── README.md ├── Spider ├── Analyse.py ├── NewsSpider.py ├── StockSpider.py └── tool.py ├── ensemble_temp.bat └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | run_data -------------------------------------------------------------------------------- /CNN/CNNStockNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/CNNStockNumber.py -------------------------------------------------------------------------------- /CNN/CNNStockText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/CNNStockText.py -------------------------------------------------------------------------------- /CNN/Cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/Cnn.py -------------------------------------------------------------------------------- /CNN/DataHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/DataHelper.py -------------------------------------------------------------------------------- /CNN/News.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/News.py -------------------------------------------------------------------------------- /CNN/OriginData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/CNN/OriginData.py -------------------------------------------------------------------------------- /Database/VMysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Database/VMysql.py -------------------------------------------------------------------------------- /Database/prediction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Database/prediction.sql -------------------------------------------------------------------------------- /Ensemble/Ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Ensemble/Ensemble.py -------------------------------------------------------------------------------- /FetchBindex/BindexSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/BindexSpider.py -------------------------------------------------------------------------------- /FetchBindex/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/api.py -------------------------------------------------------------------------------- /FetchBindex/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/browser.py -------------------------------------------------------------------------------- /FetchBindex/city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/city.py -------------------------------------------------------------------------------- /FetchBindex/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/config.ini -------------------------------------------------------------------------------- /FetchBindex/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/config.py -------------------------------------------------------------------------------- /FetchBindex/img_model/,.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/,.png -------------------------------------------------------------------------------- /FetchBindex/img_model/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/0.png -------------------------------------------------------------------------------- /FetchBindex/img_model/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/1.png -------------------------------------------------------------------------------- /FetchBindex/img_model/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/2.png -------------------------------------------------------------------------------- /FetchBindex/img_model/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/3.png -------------------------------------------------------------------------------- /FetchBindex/img_model/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/4.png -------------------------------------------------------------------------------- /FetchBindex/img_model/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/5.png -------------------------------------------------------------------------------- /FetchBindex/img_model/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/6.png -------------------------------------------------------------------------------- /FetchBindex/img_model/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/7.png -------------------------------------------------------------------------------- /FetchBindex/img_model/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/8.png -------------------------------------------------------------------------------- /FetchBindex/img_model/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_model/9.png -------------------------------------------------------------------------------- /FetchBindex/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/img_util.py -------------------------------------------------------------------------------- /FetchBindex/out/cookie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/out/cookie.txt -------------------------------------------------------------------------------- /FetchBindex/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/requirements.txt -------------------------------------------------------------------------------- /FetchBindex/task.txt: -------------------------------------------------------------------------------- 1 | 世界杯 2 | 国家 3 | 白酒 4 | 学生 5 | 上海 6 | 深圳 7 | 银行 8 | 利息 -------------------------------------------------------------------------------- /FetchBindex/utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /FetchBindex/utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /FetchBindex/utils/__pycache__/log.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/utils/__pycache__/log.cpython-35.pyc -------------------------------------------------------------------------------- /FetchBindex/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/FetchBindex/utils/log.py -------------------------------------------------------------------------------- /LSTM/LSTMStockOrigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/LSTM/LSTMStockOrigin.py -------------------------------------------------------------------------------- /LSTM/OriginData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/LSTM/OriginData.py -------------------------------------------------------------------------------- /LSTM/remark/LSTMStockBindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/LSTM/remark/LSTMStockBindex.py -------------------------------------------------------------------------------- /LSTM/remark/LSTMStockNews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/LSTM/remark/LSTMStockNews.py -------------------------------------------------------------------------------- /LSTM/remark/LSTMStockOrigin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/LSTM/remark/LSTMStockOrigin.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /Spider/Analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Spider/Analyse.py -------------------------------------------------------------------------------- /Spider/NewsSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Spider/NewsSpider.py -------------------------------------------------------------------------------- /Spider/StockSpider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Spider/StockSpider.py -------------------------------------------------------------------------------- /Spider/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/Spider/tool.py -------------------------------------------------------------------------------- /ensemble_temp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/ensemble_temp.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vietsDeng/Stock-Prediction/HEAD/main.py --------------------------------------------------------------------------------