Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 419 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 419 Bytes

Gomoku-AlphaZero

Build

python setup.py build_ext -i
rm mcts.c
rm board.c

Train

TF_CPP_MIN_LOG_LEVEL=3 python train.py \
    --width=8 \
    --height=8 \
    --lr=0.002

Play

python play.py \
    --mode pve \
    --weights="./data/model-8x8#5.h5" \
    --width=8 \
    --height=8

References