Skip to content

Yangyangii/AlphaZero-connect6

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AlphaGo Zero for Connect6

Warning. this code is incomplete.

This repository is based on alpha-omok made by RLKorea. Original Code for Omok version

AlphaZero is a Reinforcement Learning algorithm which is effectively combine MCTS(Monte-Carlo Tree Search) with Actor-Critic. The RL model is implemented by Pytorch.

Usage

  • Go Pytorch and install it.
  • pip install pygame
  • python main.py (for training, default: 9x9 board)
  • python eval_main.py (you can play the game with alpha)

Project objective

There are 2 objectives to achieve in this project

  1. Implement AlphaZero on Connect6
  2. Optimize the code

Documents (Original version, will be modified soon.)


Description of the Folders

1_tictactoe_MCTS

TicTacToe Image

This folder is for implementing MCTS in Tic-Tac-Toe. If you want to study MCTS only, please check the files in this folder.

The description of the files in the folder is as follows. (files with bold text are codes for implementation)

  • env: Tic-Tac-Toe environment code (made with pygame)
  • mcts_guide: MCTS doesn't play the game, it only recommends how to play.
  • mcts_vs: User can play against MCTS algorithm.
  • utils: functions for implementing algorithm.

2_AlphaOmok

mini omok Image

The folder is for implementing AlphaZero algorithm in omok environment. There are two versions of omok (env_small: 9x9, env_regular: 15x15). The above image is sample image of 9x9 omok game

The description of the files in the folder is as follows. (files with bold text are codes for implementation)

  • eval_main: code for evaluating the algorithm on both local PC and web
  • main: main training code of Alpha Zero
  • model: Network model (PyTorch)
  • agents: Agent and MCTS algorithm
  • utils: functions for implementing algorithm
  • WebAPI: Implementation of web API

Reference

  1. Mastering the Game of Go with Deep Neural Networks and Tree Search
  2. Mastering the Game of Go without Human Knowledge

Releases

No releases published

Packages

No packages published

Languages

  • Python 70.2%
  • JavaScript 19.0%
  • HTML 10.8%