├── .gitignore ├── LICENSE ├── Readme.md ├── data └── stock_data.csv ├── figure ├── continue_predict_high_with_pytorch.png ├── continue_predict_low_with_pytorch.png ├── predict_high_with_keras.png ├── predict_high_with_pytorch.png ├── predict_high_with_tensorflow.png ├── predict_low_with_keras.png ├── predict_low_with_pytorch.png └── predict_low_with_tensorflow.png ├── main.py ├── model ├── __init__.py ├── model_keras.py ├── model_pytorch.py └── model_tensorflow.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/Readme.md -------------------------------------------------------------------------------- /data/stock_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/data/stock_data.csv -------------------------------------------------------------------------------- /figure/continue_predict_high_with_pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/continue_predict_high_with_pytorch.png -------------------------------------------------------------------------------- /figure/continue_predict_low_with_pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/continue_predict_low_with_pytorch.png -------------------------------------------------------------------------------- /figure/predict_high_with_keras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_high_with_keras.png -------------------------------------------------------------------------------- /figure/predict_high_with_pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_high_with_pytorch.png -------------------------------------------------------------------------------- /figure/predict_high_with_tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_high_with_tensorflow.png -------------------------------------------------------------------------------- /figure/predict_low_with_keras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_low_with_keras.png -------------------------------------------------------------------------------- /figure/predict_low_with_pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_low_with_pytorch.png -------------------------------------------------------------------------------- /figure/predict_low_with_tensorflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/figure/predict_low_with_tensorflow.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/model_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/model/model_keras.py -------------------------------------------------------------------------------- /model/model_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/model/model_pytorch.py -------------------------------------------------------------------------------- /model/model_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/model/model_tensorflow.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hichenway/stock_predict_with_LSTM/HEAD/requirements.txt --------------------------------------------------------------------------------