A replica of the AlphaZero methodology in Python
See this article for a summary of the algorithm and run instructions.
https://adsp.ai/blog/how-to-build-your-own-alphazero-ai-using-python-and-keras/
-
Install Python 3.6.8 from https://www.python.org/downloads/release/python-368/
-
Ensure you have pip:
py -3.6 -m pip --version
- Ensure pip, setuptools, and wheel are up to date:
py -3.6 -m pip install --upgrade pip setuptools wheel
- Create a virtual environment:
py -3.6 -m venv .venv
- Activate the virtual environment:
.venv\Scripts\activate
-
Download graphviz and install from: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/10.0.1/windows_10_cmake_Release_graphviz-install-10.0.1-win64.exe
-
Install the required packages:
pip install -r requirements.txt