├── .gitignore ├── LICENSE ├── README.md ├── chief.py ├── common ├── __init__.py └── image │ ├── __init__.py │ ├── draw_util.py │ └── map.py ├── environment ├── __init__.py └── uav_collection │ ├── __init__.py │ ├── env.py │ ├── env_setting.py │ ├── log.py │ └── record.json ├── envs.py ├── main.py ├── main_setting.py ├── methods ├── RelationalGRU.py ├── SpatialAttGRU.py └── model.py ├── requirements.txt ├── storage.py ├── test_agent.py ├── test_random_agent.py ├── train_agent.py └── utils ├── PoI_generator.py ├── __init__.py ├── adjusted_poi.py ├── base_utils.py ├── distributions.py ├── main_mp_github.py └── spatial_att_github.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/README.md -------------------------------------------------------------------------------- /chief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/chief.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/image/draw_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/common/image/draw_util.py -------------------------------------------------------------------------------- /common/image/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/common/image/map.py -------------------------------------------------------------------------------- /environment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment/uav_collection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment/uav_collection/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/environment/uav_collection/env.py -------------------------------------------------------------------------------- /environment/uav_collection/env_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/environment/uav_collection/env_setting.py -------------------------------------------------------------------------------- /environment/uav_collection/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/environment/uav_collection/log.py -------------------------------------------------------------------------------- /environment/uav_collection/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/environment/uav_collection/record.json -------------------------------------------------------------------------------- /envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/envs.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/main.py -------------------------------------------------------------------------------- /main_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/main_setting.py -------------------------------------------------------------------------------- /methods/RelationalGRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/methods/RelationalGRU.py -------------------------------------------------------------------------------- /methods/SpatialAttGRU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/methods/SpatialAttGRU.py -------------------------------------------------------------------------------- /methods/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/methods/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/requirements.txt -------------------------------------------------------------------------------- /storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/storage.py -------------------------------------------------------------------------------- /test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/test_agent.py -------------------------------------------------------------------------------- /test_random_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/test_random_agent.py -------------------------------------------------------------------------------- /train_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/train_agent.py -------------------------------------------------------------------------------- /utils/PoI_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/PoI_generator.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/adjusted_poi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/adjusted_poi.py -------------------------------------------------------------------------------- /utils/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/base_utils.py -------------------------------------------------------------------------------- /utils/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/distributions.py -------------------------------------------------------------------------------- /utils/main_mp_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/main_mp_github.py -------------------------------------------------------------------------------- /utils/spatial_att_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIT-MCS/DRL-eFresh/HEAD/utils/spatial_att_github.py --------------------------------------------------------------------------------