├── Drawer.py ├── Game.py ├── Globals.py ├── PygameAdditionalMethods.py ├── QlearningFromOldMate.py ├── README.md ├── ShapeObjects.py ├── images ├── car.png └── track.png ├── main.py └── models ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.data-00000-of-00001.tempstate7083288698834630731 ├── model.ckpt.index └── model.ckpt.meta /Drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/Drawer.py -------------------------------------------------------------------------------- /Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/Game.py -------------------------------------------------------------------------------- /Globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/Globals.py -------------------------------------------------------------------------------- /PygameAdditionalMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/PygameAdditionalMethods.py -------------------------------------------------------------------------------- /QlearningFromOldMate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/QlearningFromOldMate.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Car-QLearning -------------------------------------------------------------------------------- /ShapeObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/ShapeObjects.py -------------------------------------------------------------------------------- /images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/images/car.png -------------------------------------------------------------------------------- /images/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/images/track.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/main.py -------------------------------------------------------------------------------- /models/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/models/checkpoint -------------------------------------------------------------------------------- /models/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/models/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/model.ckpt.data-00000-of-00001.tempstate7083288698834630731: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/models/model.ckpt.data-00000-of-00001.tempstate7083288698834630731 -------------------------------------------------------------------------------- /models/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/models/model.ckpt.index -------------------------------------------------------------------------------- /models/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/Car-QLearning/HEAD/models/model.ckpt.meta --------------------------------------------------------------------------------