├── .gitignore ├── README.md ├── data ├── DC │ └── DC.json ├── TMS │ └── TMS.json ├── TaFeng │ └── TaFeng.json ├── TaoBao │ └── TaoBao.json └── statistic_data.py ├── model ├── aggregate_nodes_temporal_feature.py ├── global_gated_update.py ├── masked_self_attention.py ├── temporal_set_prediction.py └── weighted_graph_conv.py ├── results └── .gitkeep ├── runs └── .gitkeep ├── save_model_folder └── .gitkeep ├── test └── testing_model.py ├── train ├── train_main.py └── train_model.py └── utils ├── config.json ├── data_container.py ├── load_config.py ├── loss.py ├── metric.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/README.md -------------------------------------------------------------------------------- /data/DC/DC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/data/DC/DC.json -------------------------------------------------------------------------------- /data/TMS/TMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/data/TMS/TMS.json -------------------------------------------------------------------------------- /data/TaFeng/TaFeng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/data/TaFeng/TaFeng.json -------------------------------------------------------------------------------- /data/TaoBao/TaoBao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/data/TaoBao/TaoBao.json -------------------------------------------------------------------------------- /data/statistic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/data/statistic_data.py -------------------------------------------------------------------------------- /model/aggregate_nodes_temporal_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/model/aggregate_nodes_temporal_feature.py -------------------------------------------------------------------------------- /model/global_gated_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/model/global_gated_update.py -------------------------------------------------------------------------------- /model/masked_self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/model/masked_self_attention.py -------------------------------------------------------------------------------- /model/temporal_set_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/model/temporal_set_prediction.py -------------------------------------------------------------------------------- /model/weighted_graph_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/model/weighted_graph_conv.py -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /save_model_folder/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testing_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/test/testing_model.py -------------------------------------------------------------------------------- /train/train_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/train/train_main.py -------------------------------------------------------------------------------- /train/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/train/train_model.py -------------------------------------------------------------------------------- /utils/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/config.json -------------------------------------------------------------------------------- /utils/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/data_container.py -------------------------------------------------------------------------------- /utils/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/load_config.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/metric.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yule-BUAA/DNNTSP/HEAD/utils/util.py --------------------------------------------------------------------------------