├── AlphaZeroNetwork.py ├── CCRLDataset.py ├── MCTS.py ├── README.md ├── encoder.py ├── playchess.py ├── reactFrontent └── index.js ├── reformat.py ├── server.py ├── static ├── index.html ├── index.js └── pngs │ ├── B.png │ ├── K.png │ ├── N.png │ ├── P.png │ ├── Q.png │ ├── R.png │ ├── b.png │ ├── k.png │ ├── n.png │ ├── p.png │ ├── q.png │ └── r.png ├── train.py └── weights ├── AlphaZeroNet_10x128.pt ├── AlphaZeroNet_20x256.pt └── Screen Shot 2022-11-22 at 6.38.54 AM.png /AlphaZeroNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/AlphaZeroNetwork.py -------------------------------------------------------------------------------- /CCRLDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/CCRLDataset.py -------------------------------------------------------------------------------- /MCTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/MCTS.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/README.md -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/encoder.py -------------------------------------------------------------------------------- /playchess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/playchess.py -------------------------------------------------------------------------------- /reactFrontent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/reactFrontent/index.js -------------------------------------------------------------------------------- /reformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/reformat.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/server.py -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/index.html -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/index.js -------------------------------------------------------------------------------- /static/pngs/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/B.png -------------------------------------------------------------------------------- /static/pngs/K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/K.png -------------------------------------------------------------------------------- /static/pngs/N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/N.png -------------------------------------------------------------------------------- /static/pngs/P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/P.png -------------------------------------------------------------------------------- /static/pngs/Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/Q.png -------------------------------------------------------------------------------- /static/pngs/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/R.png -------------------------------------------------------------------------------- /static/pngs/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/b.png -------------------------------------------------------------------------------- /static/pngs/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/k.png -------------------------------------------------------------------------------- /static/pngs/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/n.png -------------------------------------------------------------------------------- /static/pngs/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/p.png -------------------------------------------------------------------------------- /static/pngs/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/q.png -------------------------------------------------------------------------------- /static/pngs/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/static/pngs/r.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/train.py -------------------------------------------------------------------------------- /weights/AlphaZeroNet_10x128.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/weights/AlphaZeroNet_10x128.pt -------------------------------------------------------------------------------- /weights/AlphaZeroNet_20x256.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/weights/AlphaZeroNet_20x256.pt -------------------------------------------------------------------------------- /weights/Screen Shot 2022-11-22 at 6.38.54 AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdawkins11/pytorch-alpha-zero/HEAD/weights/Screen Shot 2022-11-22 at 6.38.54 AM.png --------------------------------------------------------------------------------