-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LZ that does not escape difficult ladder is slightly(54%) stronger #2502
Comments
nice found |
As a result of increasing the number of games a little more, winrate was 0.529. (800 visit/move, 2000 games) I also tested "allow escaping when ko" and "Do not chase 'not ladder'". Result against normal LZ. weight is 244. 800 visit/move. using opening book for first 10 moves.
A sample of "Do not chase 'not ladder'". Test command is like this. Average searching speed of 10 positions is as follows. (a 2080 Ti, 10000 playouts)
"Do not escape difficult ladder" is slightly faster. But it should be measurement error. |
testing
|
I have tested against KataGo. Result against KataGo 1.2 g104-b20c256. LZ weight is 247. Both players use 800 visit/move. First 10 moves are from opening book.
"Do not chase 'not ladder'" is +22.2 ELO stronger than normal LZ. |
I don't think adding ladder code without retraining the net is anything close to what other bots have. |
i suggest you try with |
Can you add alreadydone's "dynamic komi" code to your engine so we can play with 0 komi? Thanks! |
If ladder search find its dead over 7 plies, escaping move probability is changed to 1/1000000.
"not escape difficult ladder" winrate is 0.541 (433 wins / 800 games) against normal LZ 0.17.
Source is here. (forked from latest LZ)
https://github.com/yssaya/leela-zero-ladder
I use Henrik Forsten(Ttl) ladder code.
https://github.com/Ttl/leela-zero/tree/liberty_planes_se2
For example, in left figure, ladder search needs 42 plies to understand Black E7 is killed.
So Black E7 probablity is changed from 0.55895 to 0.00000055895.
In right figure, ladder search needs 6 plies. So program does nothing and LZ plays escape move Black N17.
http://www.yss-aya.com/cgos/viewer.cgi?19x19/SGF/2019/09/11/599617.sgf
Ignoring short depth is effective when killing eye.
I only tested 400 visit/move. It might be even or weak on longer game or time patiry.
Test match is 800 games. First 10 moves are from opening book, pro(gogod) games.
Symmetry position are deleted. Black and white is alternate per a opening. Weight is LZ 244.
Test command is like this.
$ java -jar ~/go/gogui/bin/gogui-twogtp.jar -black "~/go/ladder/build/leelaz17 -v 400 -r5 -g -q -d --noponder -w ~/go/leela-zero-0.15/autogtp/networks/2baef15960bf40ebf613f5b0b738d41b89646332403d105e11f8623d54cce792" -white "~/go/ladder/build/leelaz -v 400 -r5 -g -q -d --noponder -w ~/go/leela-zero-0.15/autogtp/networks/2baef15960bf40ebf613f5b0b738d41b89646332403d105e11f8623d54cce792" -games 2000 -size 19 -alternate -sgffile memo -auto -komi 7.5 -openings "~/go/ladder/opening/19x19_gogod_2014_1000"
The text was updated successfully, but these errors were encountered: