├── .gitignore ├── Examples ├── cmdmove1.png ├── cmdmove2.png ├── niceboard.png └── niceboardmovetal.png ├── LICENSE ├── README.md ├── game_utils.py ├── model.py ├── play.py ├── process_data.py └── train_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/cmdmove1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/Examples/cmdmove1.png -------------------------------------------------------------------------------- /Examples/cmdmove2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/Examples/cmdmove2.png -------------------------------------------------------------------------------- /Examples/niceboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/Examples/niceboard.png -------------------------------------------------------------------------------- /Examples/niceboardmovetal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/Examples/niceboardmovetal.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/README.md -------------------------------------------------------------------------------- /game_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/game_utils.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/model.py -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/play.py -------------------------------------------------------------------------------- /process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/process_data.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2014mchidamb/AdversarialChess/HEAD/train_model.py --------------------------------------------------------------------------------