├── .gitignore ├── 50nodes.brite ├── LICENSE ├── config.py ├── environment ├── GCN_env.py ├── env.py └── util.py ├── helper └── graph.py ├── models ├── DQN.py └── GCN.py ├── readme.md ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/.gitignore -------------------------------------------------------------------------------- /50nodes.brite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/50nodes.brite -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/LICENSE -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | device = "cpu" 2 | -------------------------------------------------------------------------------- /environment/GCN_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/environment/GCN_env.py -------------------------------------------------------------------------------- /environment/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/environment/env.py -------------------------------------------------------------------------------- /environment/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/environment/util.py -------------------------------------------------------------------------------- /helper/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/helper/graph.py -------------------------------------------------------------------------------- /models/DQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/models/DQN.py -------------------------------------------------------------------------------- /models/GCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/models/GCN.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/routing-drl/main/HEAD/train.py --------------------------------------------------------------------------------