├── LICENSE ├── README.md ├── __init__.py ├── checkpoint ├── core.py ├── distributions.py ├── environment.py ├── experiments └── experiment_10_landmarks ├── maddpg.py ├── multi_discrete.py ├── my_UAV_world.py ├── policy.py ├── rendering.py ├── replay_buffer.py ├── scenario.py ├── test.ckpt.data-00000-of-00001 ├── test.ckpt.index ├── test.ckpt.meta ├── tf_util.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/__init__.py -------------------------------------------------------------------------------- /checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/checkpoint -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/core.py -------------------------------------------------------------------------------- /distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/distributions.py -------------------------------------------------------------------------------- /environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/environment.py -------------------------------------------------------------------------------- /experiments/experiment_10_landmarks: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /maddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/maddpg.py -------------------------------------------------------------------------------- /multi_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/multi_discrete.py -------------------------------------------------------------------------------- /my_UAV_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/my_UAV_world.py -------------------------------------------------------------------------------- /policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/policy.py -------------------------------------------------------------------------------- /rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/rendering.py -------------------------------------------------------------------------------- /replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/replay_buffer.py -------------------------------------------------------------------------------- /scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/scenario.py -------------------------------------------------------------------------------- /test.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/test.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /test.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/test.ckpt.index -------------------------------------------------------------------------------- /test.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/test.ckpt.meta -------------------------------------------------------------------------------- /tf_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/tf_util.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marsaoxn/UAV-A3C/HEAD/train.py --------------------------------------------------------------------------------