├── .gitignore ├── README.md ├── data ├── chosenStations.pkl ├── meta.npy ├── minmax_normalized_laplacian.npy ├── othernetwork │ ├── meta.npy │ ├── minmax_normalized_laplacian.npy │ ├── stationDists.csv │ ├── station_coords.npy │ └── targets.npy ├── station_coords.npy └── targets.npy ├── graph_maker.py ├── helper_functions.py ├── main_cnn.py ├── main_gcn.py ├── only_gnnblock.png └── procedure.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/README.md -------------------------------------------------------------------------------- /data/chosenStations.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/chosenStations.pkl -------------------------------------------------------------------------------- /data/meta.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/meta.npy -------------------------------------------------------------------------------- /data/minmax_normalized_laplacian.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/minmax_normalized_laplacian.npy -------------------------------------------------------------------------------- /data/othernetwork/meta.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/othernetwork/meta.npy -------------------------------------------------------------------------------- /data/othernetwork/minmax_normalized_laplacian.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/othernetwork/minmax_normalized_laplacian.npy -------------------------------------------------------------------------------- /data/othernetwork/stationDists.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/othernetwork/stationDists.csv -------------------------------------------------------------------------------- /data/othernetwork/station_coords.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/othernetwork/station_coords.npy -------------------------------------------------------------------------------- /data/othernetwork/targets.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/othernetwork/targets.npy -------------------------------------------------------------------------------- /data/station_coords.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/station_coords.npy -------------------------------------------------------------------------------- /data/targets.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/data/targets.npy -------------------------------------------------------------------------------- /graph_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/graph_maker.py -------------------------------------------------------------------------------- /helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/helper_functions.py -------------------------------------------------------------------------------- /main_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/main_cnn.py -------------------------------------------------------------------------------- /main_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/main_gcn.py -------------------------------------------------------------------------------- /only_gnnblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/only_gnnblock.png -------------------------------------------------------------------------------- /procedure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StefanBloemheuvel/GCNTimeseriesRegression/HEAD/procedure.png --------------------------------------------------------------------------------