├── Environment.py ├── Main.py ├── Model.py ├── README.md ├── Test.py └── requirements.txt /Environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shayantaherian/Reinforcement-Learning-CARLA/HEAD/Environment.py -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shayantaherian/Reinforcement-Learning-CARLA/HEAD/Main.py -------------------------------------------------------------------------------- /Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shayantaherian/Reinforcement-Learning-CARLA/HEAD/Model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shayantaherian/Reinforcement-Learning-CARLA/HEAD/README.md -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shayantaherian/Reinforcement-Learning-CARLA/HEAD/Test.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow-gpu 2 | keras 3 | matplotlib 4 | numpy 5 | cv2 --------------------------------------------------------------------------------