├── GCN.py ├── MyLSTM.py ├── README.md ├── baseline.py ├── data ├── sz_adj.csv └── sz_speed.csv ├── data_process.py └── main.py /GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/GCN.py -------------------------------------------------------------------------------- /MyLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/MyLSTM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/README.md -------------------------------------------------------------------------------- /baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/baseline.py -------------------------------------------------------------------------------- /data/sz_adj.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/data/sz_adj.csv -------------------------------------------------------------------------------- /data/sz_speed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/data/sz_speed.csv -------------------------------------------------------------------------------- /data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/data_process.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhikaiiii/traffic-prediction/HEAD/main.py --------------------------------------------------------------------------------