├── Model ├── cnn.h5 ├── cnn_lstm.h5 ├── cnn_lstm.json ├── cnn_lstm_best.h5 ├── cnn_lstm_final.h5 ├── cnn_lstm_final.json ├── lstm.h5 ├── lstm.json ├── sae.h5 └── sae.json ├── PeMS ├── PEMS.zip └── data_preprocess.py ├── README.md ├── cnn_lstm_final.py ├── cnn_lstm_param.py ├── compare.py ├── images ├── cnn_lstm.png └── threemodels.png ├── input_data.py ├── lstm.py └── sae.py /Model/cnn.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn.h5 -------------------------------------------------------------------------------- /Model/cnn_lstm.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn_lstm.h5 -------------------------------------------------------------------------------- /Model/cnn_lstm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn_lstm.json -------------------------------------------------------------------------------- /Model/cnn_lstm_best.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn_lstm_best.h5 -------------------------------------------------------------------------------- /Model/cnn_lstm_final.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn_lstm_final.h5 -------------------------------------------------------------------------------- /Model/cnn_lstm_final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/cnn_lstm_final.json -------------------------------------------------------------------------------- /Model/lstm.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/lstm.h5 -------------------------------------------------------------------------------- /Model/lstm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/lstm.json -------------------------------------------------------------------------------- /Model/sae.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/sae.h5 -------------------------------------------------------------------------------- /Model/sae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/Model/sae.json -------------------------------------------------------------------------------- /PeMS/PEMS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/PeMS/PEMS.zip -------------------------------------------------------------------------------- /PeMS/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/PeMS/data_preprocess.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/README.md -------------------------------------------------------------------------------- /cnn_lstm_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/cnn_lstm_final.py -------------------------------------------------------------------------------- /cnn_lstm_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/cnn_lstm_param.py -------------------------------------------------------------------------------- /compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/compare.py -------------------------------------------------------------------------------- /images/cnn_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/images/cnn_lstm.png -------------------------------------------------------------------------------- /images/threemodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/images/threemodels.png -------------------------------------------------------------------------------- /input_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/input_data.py -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/lstm.py -------------------------------------------------------------------------------- /sae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbychovip/TrafficFlowPrediction/HEAD/sae.py --------------------------------------------------------------------------------