├── .gitattributes ├── .idea ├── 3D-DGCN.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── dataset.py ├── flow ├── flow_bike_nyc_irregular.json └── flow_bike_nyc_regular.json ├── gcn.py ├── main.py ├── path ├── irregular_path.npy └── regular_path.npy └── poi ├── irregular_feature.npy ├── irregular_idx.npy ├── irregular_label.npy ├── irregular_weight.npy ├── regular_feature.npy ├── regular_idx.npy ├── regular_label.npy └── regular_weight.npy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/3D-DGCN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.idea/3D-DGCN.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/dataset.py -------------------------------------------------------------------------------- /flow/flow_bike_nyc_irregular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/flow/flow_bike_nyc_irregular.json -------------------------------------------------------------------------------- /flow/flow_bike_nyc_regular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/flow/flow_bike_nyc_regular.json -------------------------------------------------------------------------------- /gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/gcn.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/main.py -------------------------------------------------------------------------------- /path/irregular_path.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/path/irregular_path.npy -------------------------------------------------------------------------------- /path/regular_path.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/path/regular_path.npy -------------------------------------------------------------------------------- /poi/irregular_feature.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/irregular_feature.npy -------------------------------------------------------------------------------- /poi/irregular_idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/irregular_idx.npy -------------------------------------------------------------------------------- /poi/irregular_label.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/irregular_label.npy -------------------------------------------------------------------------------- /poi/irregular_weight.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/irregular_weight.npy -------------------------------------------------------------------------------- /poi/regular_feature.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/regular_feature.npy -------------------------------------------------------------------------------- /poi/regular_idx.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/regular_idx.npy -------------------------------------------------------------------------------- /poi/regular_label.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/regular_label.npy -------------------------------------------------------------------------------- /poi/regular_weight.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIBLAB/3D-DGCN/HEAD/poi/regular_weight.npy --------------------------------------------------------------------------------