├── .gitignore ├── LICENSE ├── README.md ├── game.py ├── main.py ├── model.py ├── monte_carlo_tree_search.py ├── tests.py └── trainer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/README.md -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/game.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/model.py -------------------------------------------------------------------------------- /monte_carlo_tree_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/monte_carlo_tree_search.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/tests.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshVarty/AlphaZeroSimple/HEAD/trainer.py --------------------------------------------------------------------------------