├── LICENSE ├── README.md ├── drone.png ├── papers ├── arxiv_paper.pdf └── thesis.pdf └── src ├── guideline.md └── source ├── baseline_racer.py ├── generate_settings_file.py ├── meplay.py ├── metest.py ├── model.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/README.md -------------------------------------------------------------------------------- /drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/drone.png -------------------------------------------------------------------------------- /papers/arxiv_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/papers/arxiv_paper.pdf -------------------------------------------------------------------------------- /papers/thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/papers/thesis.pdf -------------------------------------------------------------------------------- /src/guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/guideline.md -------------------------------------------------------------------------------- /src/source/baseline_racer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/baseline_racer.py -------------------------------------------------------------------------------- /src/source/generate_settings_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/generate_settings_file.py -------------------------------------------------------------------------------- /src/source/meplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/meplay.py -------------------------------------------------------------------------------- /src/source/metest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/metest.py -------------------------------------------------------------------------------- /src/source/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/model.py -------------------------------------------------------------------------------- /src/source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugurkanates/NeurIRS2019DroneChallengeRL/HEAD/src/source/utils.py --------------------------------------------------------------------------------