https://github.com/stuartsul/five-in-a-row
Game of five in a row (Omok) written in python, with graphical user interface & artificial intelligence (minimax, DNN, and reinforcement learning)
https://github.com/stuartsul/five-in-a-row
ai game gomoku gui omok
Last synced: 8 months ago
JSON representation
Game of five in a row (Omok) written in python, with graphical user interface & artificial intelligence (minimax, DNN, and reinforcement learning)
- Host: GitHub
- URL: https://github.com/stuartsul/five-in-a-row
- Owner: StuartSul
- License: mit
- Created: 2019-03-09T05:20:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-08-01T19:29:34.000Z (almost 5 years ago)
- Last Synced: 2025-06-29T11:01:43.114Z (12 months ago)
- Topics: ai, game, gomoku, gui, omok
- Language: Python
- Homepage:
- Size: 14.4 MB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Five in a Row (Omok; Gomoku)

## Overview
This is a game of five in a row (Korean: Omok; Japanese: Gomoku) developed in Python 3.8. It supports CLI & GUI, and an artificial intelligence module which can play against a player or against itself.
You can start playing with the following command:
```
python3 run.py
```
To play against another person, or make AI fight against itself, modify omok.py in omok folder.
## Web Version
JavaScript version of the game engine is available in the directory `web_release/` and it is live here (https://stuartsul.github.io/Five_in_a_Row/) without support for artificial intelligence.