A Gobang(also known as "Five in a Row" and "Gomoku") game equipped with AlphaGo-liked AI.
- Friendly GUI
- MATCH RULES supported
- Easy to install
- AlphaGo-liked AI
Greedy AI
: the POLICY network without randomnessProbabilistic AI
: the POLICY network with randomnessThinking AI(xxx s)
: MCTS algorithm with POLICY and VALUE networks- To be updated
- dependencies
- Python 3
- PyTorch
- install
$ pip install gobang
$ gobang
# or
$ python -m gobang
- This project was originally developed in 2017 based on RocAlphaGo.
- The AI is developed based on Supervised Learning and Reinforcement learning from AlphaGo.