Re: Announcing GoReviewPartner - v0.11.2 (with Live Analysis
Posted: Mon Jun 04, 2018 2:57 pm
I've been really enjoying using GRP in a slightly alternative way to look at what AI thinks about popular human moves.
It's no good looking at a move in just one circumstance as bots are really good at whole board thinking and game management so the choice of moves might be based on the specific circumstances. Automating GRP on the command line has helped me to review a large set of human pro games and pick out the moves I'm interested in to see what the bot thinks in each case.
A really usefull feature for this has been the ability to use GRP at the command line with a line like this:
The range parameter allows me to specify a range of moves for GRP to analyse, or in my case one specific move. Using this I can:
It's no good looking at a move in just one circumstance as bots are really good at whole board thinking and game management so the choice of moves might be based on the specific circumstances. Automating GRP on the command line has helped me to review a large set of human pro games and pick out the moves I'm interested in to see what the bot thinks in each case.
A really usefull feature for this has been the ability to use GRP at the command line with a line like this:
Code: Select all
python leela_zero_analysis.py --range="21" mygame.sgf- Use Smart go for windows to patern search for the move I'm interested in in the gogod database and export a list of all the relevant games and the move numbers where the patern search finds it's match
- Make a little script to turn this list into a list of command line statements like the one above (I actually just used excell this time)
- Put these statements in a .bat file and run. GRP runs through each game skipping straing to the interesting move.
- Check out what the bot thinks without having to wait at each move! I also found r2sgf.py useful to convert to sgf so that I could quickly check through the games in SmartGo.