https://github.com/burz/gobot
Learning to score the game of Go
https://github.com/burz/gobot
board machine-learning scoring sgf
Last synced: 19 days ago
JSON representation
Learning to score the game of Go
- Host: GitHub
- URL: https://github.com/burz/gobot
- Owner: burz
- License: mit
- Created: 2014-12-09T10:29:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-05T00:35:25.000Z (over 9 years ago)
- Last Synced: 2025-03-25T13:21:11.398Z (about 1 month ago)
- Topics: board, machine-learning, scoring, sgf
- Language: C++
- Homepage:
- Size: 9.79 MB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gobot
=====A machine learning algorithm for learning to score the final board in the game of Go
### Background
I wrote this for my machine learning final project during my senior of college.
[Here's the final paper I wrote.](https://github.com/burz/burz.github.io/blob/master/finalReport.pdf)
This paper reflects the state of gobot at the [finalProject](https://github.com/burz/gobot/tree/finalProject)
branch. It reads in `.sgf` files, and due to the linear nature of the `.sgf` file format, it must play through an
entire game to reach the final board position. Note that a stone can be placed where another had been placed before being
captured and removed from the board.After I had submitted the project, I set out to up the learning algorithm by saving the boards to files rather than
running through the games each time. Furthermore, I reverted back to the
[original paper's algorithm](http://erikvanderwerf.tengen.nl/pubdown/learning_to_score_extended.pdf)
that I had based my project upon, and implemented my proposed bootstrapping method to generate good labels for
thousands of games (I was using datasets of 20,000+ games for my finalProject version of the algorithm).### Current results
At the time, I was getting bad results, while using the bootstrap I had found that for many of the games in my dataset,
the reported score in the `.sgf` was incorrect. Usually it was off by 1 or 2 points from what the actual board should have
been scored in that state.After further reasearch I discovered that most of these records assumed end game moves of varying complexity
would be played out, but the `.sgf`'s did not reflect these intuitions.