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/
conda create --name alphazero python=3.5 -y && conda activate alphazero && pip install -r requirements.txt
conda deactivate && conda remove --name alphazero --all -y