├── .gitignore ├── LICENSE ├── README.md ├── generate_training_set.py ├── index.html ├── nets └── value.pth ├── play.py ├── screenshot.png ├── state.py ├── static ├── chessboard.min.css ├── chessboard.min.js ├── img │ └── chesspieces │ │ └── wikipedia │ │ ├── bB.png │ │ ├── bK.png │ │ ├── bN.png │ │ ├── bP.png │ │ ├── bQ.png │ │ ├── bR.png │ │ ├── wB.png │ │ ├── wK.png │ │ ├── wN.png │ │ ├── wP.png │ │ ├── wQ.png │ │ └── wR.png └── jquery.min.js └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | data/ 4 | processed/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/README.md -------------------------------------------------------------------------------- /generate_training_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/generate_training_set.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/index.html -------------------------------------------------------------------------------- /nets/value.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/nets/value.pth -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/play.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/screenshot.png -------------------------------------------------------------------------------- /state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/state.py -------------------------------------------------------------------------------- /static/chessboard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/chessboard.min.css -------------------------------------------------------------------------------- /static/chessboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/chessboard.min.js -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bB.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bK.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bN.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bP.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bQ.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/bR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/bR.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wB.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wK.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wN.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wP.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wQ.png -------------------------------------------------------------------------------- /static/img/chesspieces/wikipedia/wR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/img/chesspieces/wikipedia/wR.png -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/twitchchess/HEAD/train.py --------------------------------------------------------------------------------