├── .gitignore ├── JumperGame.py ├── License.md ├── README.md ├── assets ├── ball.png └── spike.png ├── game_checkpoints └── .gitkeep ├── jumperGamePlay.py ├── jumperGameTrain.py ├── jumperGameUI.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/.gitignore -------------------------------------------------------------------------------- /JumperGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/JumperGame.py -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tensorflow-genetic-algo-simple-gamebot 2 | -------------------------------------------------------------------------------- /assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/assets/ball.png -------------------------------------------------------------------------------- /assets/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/assets/spike.png -------------------------------------------------------------------------------- /game_checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jumperGamePlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/jumperGamePlay.py -------------------------------------------------------------------------------- /jumperGameTrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/jumperGameTrain.py -------------------------------------------------------------------------------- /jumperGameUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/jumperGameUI.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shivakishore14/Tensorflow-genetic-algo-simple-gamebot/HEAD/requirements.txt --------------------------------------------------------------------------------