Reversi reinforcement learning by AlphaGo Zero methods.
@mokemokechicken's training hisotry is Challenge History.
If you can share your achievements, I would be grateful if you post them to Performance Reports.
play_gui
, tensorflow(cpu) is enough speed.This AlphaGo Zero implementation consists of three worker self
, opt
and eval
.
self
is Self-Play to generate training data by self-play using BestModel.opt
is Trainer to train model, and generate next-generation models.eval
is Evaluator to evaluate whether the next-generation model is better than BestModel. If better, replace BestModel.
config.play.use_newest_next_generation_model = True
, this worker is useless. (It is AlphaZero method)For evaluation, you can play reversi with the BestModel.
play_gui
is Play Game vs BestModel using wxPython.data/model/model_best_*
: BestModel.data/model/next_generation/*
: next-generation models.data/play_data/play_*.json
: generated training data.logs/main.log
: log file.If you want to train the model from the beginning, delete the above directories.
pip install -r requirements.txt
cp requirements.txt conda-requirements.txt
jedi
, Keras
, parso
, python-dotenv
, tensorflow-tensorboard
, wxPython
librariesipython-genutils
, jupyter-*
, prompt-toolkit
libraries
conda env create -f environment.yml
source activate reversi-a0
conda install --yes --file conda-requirements.txt
If you want use GPU,
pip install tensorflow-gpu
Create .env
file and write this.
KERAS_BACKEND=tensorflow
This instruction is written by @GCRhoads, Thanks!
Note: Windows uses backslashes not forward slashes in path names.
Change the first line (if necessary) of "src\reversi_zero\agent\player.py" to from asyncio.futures import Future
Install the 64-bit version of Python 3.5 (the 32-bit version is not sufficient). You have two options
Note: For some strange reason, both Python 3.5 and Anaconda get installed in a hidden folder. To access them, you first have to go to the Control Panel, select Folder Options, and on the View tab, click on the circle next to "Show hidden files, folders, or drives" in the Advanced settings section. Anaconda gets installed in C:\ProgramData\Anaconda3. The direct download option installs Python in (I believe) C:\Users\
Install Visual C++ 2015 build tools. You could install the entire 2015 version (not the 2017 version that Microsoft tries to force on you) of Visual Studio but this is a large download and install, most of which you don't need. Download visual C++ build tools. Double-click on the downloaded file to run the installer.
Rewrite all uses of an f-strings. The python source code for this project uses numerous f-strings, a feature new to Python 3.6. Since we need Python 3.5 (required by the windows version of tensorflow), use your editor's search feature to find every occurrence of an f-string and rewrite it using string.format().
Install the libraries From either the Anaconda prompt or from a command window in the top level folder where you put this distribution, enter the following.
pip install -r requirements.txt
If you have a gpu compatible with tensor-flow (see the list on the tensor-flow web site), then your code will execute much faster if you install the gpu version. To install the gpu-version enter the following in either the Anaconda prompt or the command window.
pip3 install -- upgrade tensorflow-gpu
If you do not have a compatible gpu, then you will have to settle for the slow cpu-only version. To install this, enter the following in either the Anaconda prompt or the command window.
pip3 install -- upgrade tensorflow
.env
file and write the following line in this file.KERAS_BACKEND=tensorflow
Now you should be good to go.
Now, "challenge 5 model" and "ch5 config" are strongest in my models. If you want to play with it,
rm -rf data/model/next_generation/
sh ./download_model.sh 5
# run as wxPython GUI
python src/reversi_zero/run.py play_gui -c config/ch5.yml
If you want to use as a NBoard engine(see below "Run as NBoard2.0 Engine"), please use nboard_engine -c config/ch5.yml
for the Command.
Please remove( or rename) data/model/next_generation/
directory if you want to use "BestModel" at data/model/model_best_*
.
Download trained BestModel(trained by bellow Challenge 1) for example.
sh ./download_best_model.sh
Download trained the newest model(trained by Challenge 2, 3, 4, 5) as BestModel.
sh ./download_model.sh <version>
ex)
sh ./download_model.sh 5
I think the main difference between 'AlphaGo Zero' and 'AlphaZero' is whether using eval
or not.
It is able to change these methods by configuration.
PlayConfig#use_newest_next_generation_model = False
PlayWithHumanConfig#use_newest_next_generation_model = False
Evaluator
to select the best model.PlayConfig#use_newest_next_generation_model = True
PlayWithHumanConfig#use_newest_next_generation_model = True
Evaluator
(the newest model is selected as self-play
's model)In DeepMind's paper, it seems that policy(π) data saved by self-play are distribution in proportion to pow(N, 1/tau). After the middle of the game, the tau becomes 0, so the distribution is one-hot.
PlayDataConfig#save_policy_of_tau_1 = True
means that the saved policy's tau is always 1.
If you find a good parameter set, please share in the github issues!
nb_game_in_file,max_file_num
: The max game number of training data is nb_game_in_file * max_file_num
.multi_process_num
: Number of process to generate self-play data.simulation_num_per_move
: MCTS number per move.c_puct
: balance parameter of value network and policy network in MCTS.resign_threshold
: resign thresholdparallel_search_num
: balance parameter(?) of speed and accuracy in MCTS.
prediction_queue_size
should be same or greater than parallel_search_num
.dirichlet_alpha
: random parameter in self-play.share_mtcs_info_in_self_play
: extra option. if true, share MCTS tree node information among games in self-play.
reset_mtcs_info_per_game
: reset timing of shared MCTS information.use_solver_turn
, use_solver_turn_in_simulation
: use solver from this turn. not use it if None
. wait_after_save_model_ratio
: if greater than 0, optimizer will wait the ratio time to time span of saving model every after saving model. It might be useful if you run self-play
and optimize
in one GPU. For training model, execute Self-Play
, Trainer
and Evaluator
.
python src/reversi_zero/run.py self
When executed, Self-Play will start using BestModel. If the BestModel does not exist, new random model will be created and become BestModel.
--new
: create new BestModel-c config_yaml
: specify config yaml path override default settings of config.py
python src/reversi_zero/run.py opt
When executed, Training will start. A base model will be loaded from latest saved next-generation model. If not existed, BestModel is used. Trained model will be saved every 2000 steps(mini-batch) after epoch.
-c config_yaml
: specify config yaml path override default settings of config.py
--total-step
: specify total step(mini-batch) numbers. The total step affects learning rate of training.python src/reversi_zero/run.py eval
When executed, Evaluation will start. It evaluates BestModel and the latest next-generation model by playing about 200 games. If next-generation model wins, it becomes BestModel.
-c config_yaml
: specify config yaml path override default settings of config.py
python src/reversi_zero/run.py play_gui
play_gui
uses wxPython
.
It can not execute if your python environment is built without Framework.
Try following pyenv install option.
env PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install 3.6.3
For Anaconda users:
conda install python.app
pythonw src/reversi_zero/run.py play_gui
When executed, ordinary reversi board will be displayed and you can play against BestModel. After BestModel moves, numbers are displayed on the board.
NBoard is a very good reversi GUI and has strong reversi engines, which runs on Windows, Mac, and Linux (JRE required).
It can add external engines that implement NBoard Protocol.
(0) launch NBoard from command line(need environment variables like PATH)
java -jar /Applications/NBoard/nboard-2.0.jar
(1) select menu Engine -> Select Opponent...
(2) clike button Add Engine
(3) set parameter:
Name
= RAZ
(for example)Working Directory
= PATH TO THIS PROJECTCommand
= nboard_engine
or bash nboard_engine
. If you want to specify config type, nboard_engine -c config/ch5.yml
.(4) Engine Level N is set as simulation_num_per_move=N*20
NBoard cannot play with two different engines (maybe). However, it can select different engines of play-engine and analysis-engine.
So, convenient way to evaluate your model is for example,
View -> Highlight Best Move
User plays Black
(or White)I have little confidence about hint
protocol as analysis-engine (there is odd behavior),
but work in my environment.
reversi-arena is a system for evaluating reversi AIs which implement NBoard Protocol. It is useful when playing many games with strong AI like NTest.
pip install tensorboard
tensorboard --logdir logs/tensorboard/
And access http://<The Machine IP>:6006/
.
If you can not launch tensorboard by error,
try to create another new plain project which includes only tensorflow
and tensorboard
.
And
tensorboard --logdir <PATH TO REVERSI DIR>/logs/tensorboard/
In my environment of GeForce GTX 1080, memory is about 8GB, so sometimes lack of memory happen.
Usually the lack of memory cause warnings, not error.
If error happens, try to change per_process_gpu_memory_fraction
in src/worker/{evaluate.py,optimize.py,self_play.py}
,
tf_util.set_session_config(per_process_gpu_memory_fraction=0.2)
Less batch_size will reduce memory usage of opt
.
Try to change TrainerConfig#batch_size
in NormalConfig
.