├── .gitignore ├── 1.png ├── 2.GIF ├── 2.png ├── DRLCar.py ├── README.md └── environment.yml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.local 3 | -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/1.png -------------------------------------------------------------------------------- /2.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/2.GIF -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/2.png -------------------------------------------------------------------------------- /DRLCar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/DRLCar.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fdevmsy/Reinforcement-Learning-Based-Self-Driving-Car/HEAD/environment.yml --------------------------------------------------------------------------------