A gobang robot based on reinforcement learning
- Network structure
ConvBlock
× 1ResidueBlock
× 4PolicyHead
× 1ValueHead
× 1
- Network visualization
-
Create virtual environment:
conda create -n Alpha_Gobang_Zero python=3.8 conda activate Alpha_Gobang_Zero pip install -r requirements.txt
-
Install
PyTorch
,refer to the blog for details; -
Start game:
conda activate Alpha_Gobang_Zero python game.py
conda activate Alpha_Gobang_Zero
python train.py
《如何使用自对弈强化学习训练一个五子棋机器人Alpha Gobang Zero》
- 《Mastering the game of Go without human knowledge》
- 《Mastering Chess and Shogi by Self-Play with a General Reinforcement Learning Algorithm》
-
Why does the window get stuck when it is dragged?
Because the interface background uses acrylic effect, this problem will occur for some versions of win10. There are three solutions:
- Upgrade win10 to the latest version.
- Uncheck the check box of Advanced system settings --> Performance --> Show window contents when dragging.
- Turn off the option to enable acrylic background in the setting interface.
-
Why does the configuration I modified in the settings interface not take effect immediately?
The modified configuration will take effect at the beginning of the next game.
MIT License
Copyright (c) 2021 Zhengzhi Huang
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.