├── .gitignore ├── LICENSE ├── README.md ├── ai.py ├── create_dataset.py ├── database_process.py ├── game_control.py ├── get_dataset.py ├── get_model.py ├── predict.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store 3 | Data 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/README.md -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/ai.py -------------------------------------------------------------------------------- /create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/create_dataset.py -------------------------------------------------------------------------------- /database_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/database_process.py -------------------------------------------------------------------------------- /game_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/game_control.py -------------------------------------------------------------------------------- /get_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/get_dataset.py -------------------------------------------------------------------------------- /get_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/get_model.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardamavi/Game-Bot/HEAD/train.py --------------------------------------------------------------------------------