It is currently Tue Mar 19, 2024 12:16 am

All times are UTC - 8 hours [ DST ]




Post new topic Reply to topic  [ 178 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 9  Next
Author Message
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #61 Posted: Sat Apr 10, 2021 10:13 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
finally managed to run! it turned out that this program does not work for python 3.
python 2.5 https://www.python.org/ftp/python/2.5/python-2.5.msi
example:
Code:
python twogtp.py --black "d:\AmiGo\amigogtp.exe" --white "d:\gnugo\gnugo.exe --mode gtp" --size 9 --sgfbase games.sgf

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #62 Posted: Sat Apr 10, 2021 10:42 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
change the program a little and it can be used for big boards! :D

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #63 Posted: Sat Apr 10, 2021 2:15 pm 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
wonderful program !!! no limit on board size !!! if you add "--verbose 1", for example, two KataGo 20b networks on 53x53 play, the moves are displayed !!! the limit on the sgf is 25x25! need to fix :clap: :D


Last edited by And on Sat Apr 10, 2021 2:25 pm, edited 1 time in total.
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #64 Posted: Sat Apr 10, 2021 2:22 pm 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
network 15b plays on a 63x63 board !!!

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #65 Posted: Sun Apr 11, 2021 11:27 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
q5go 2.1.1 match of two engines up to 52x52 !!! :clap: :clap: :clap:
https://github.com/bernds/q5Go/releases/tag/q5go-2.1.1


This post by And was liked by: Friday9i
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #66 Posted: Sun Apr 11, 2021 1:20 pm 
Dies in gote
User avatar

Posts: 43
Liked others: 44
Was liked: 10
Is there a sgf extension for boards greater than 52? or another way to save the game file?

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #67 Posted: Mon Apr 12, 2021 11:06 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
first 50 moves 63 X 63 15b 1p - 15b 1p. moves took from twogtp and made in lizzie


Attachments:
katago 63 X 63.jpg
katago 63 X 63.jpg [ 525.58 KiB | Viewed 23973 times ]
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #68 Posted: Tue Apr 13, 2021 6:34 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
100 X 100 15b 1p - 15b 1p. it is difficult to evaluate the game without a board, but it is clear that the beginning is "unusual" :)


Attachments:
katago 100 X 100.jpg
katago 100 X 100.jpg [ 72.96 KiB | Viewed 23908 times ]
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #69 Posted: Tue Apr 13, 2021 10:03 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
KataGo 20b 1 playouts - KataGo 20b 1 playouts 52 X 52, q5go-2.1.1
ladder, black error, move 1391


Attachments:
ladder, black error.jpg
ladder, black error.jpg [ 66.03 KiB | Viewed 23878 times ]
katago181-katago181b.sgf [11.2 KiB]
Downloaded 447 times
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #70 Posted: Fri Apr 16, 2021 1:59 pm 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
Dragon wrote:
Is there a sgf extension for boards greater than 52? or another way to save the game file?

The simplest solution is to specify the same in the sgf as in the game. or like a lizzie for big boards.
as:
"location should a string like "C4" the same as in the GTP protocol. KataGo also supports extended column coordinates locations beyond "Z", such as "AA", "AB", "AC", ... Alternatively one can also specify strings like "(0,13)" that explicitly give the integer X and Y coordinates."
https://github.com/lightvector/KataGo/b ... _Engine.md
can name this type of file not sgf, but kgf? or something else?

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #71 Posted: Sun Apr 18, 2021 7:49 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
I changed a few lines in twogtp.py, now the game is saved to a file for any board size. moves are written to the file unchanged. example:
Code:
(;GM[1]FF[4]RU[Japanese]SZ[27]HA[0]KM[5.5]RE[W+Resign]
PW[KataGo 1.8.1 (random seed unknown)]PB[KataGo 1.8.1 (random seed unknown)]
;B[d3]
;W[y4]
;B[d6]
;W[y24]
;B[d25]
...
;W[aa27]
;B[ab26]
;W[z27]
;B[k19]
;W[l20]
;B[l19]
;W[m20]
)

twogtp.py with changes:


Attachments:
twogtp.py.gz [5.04 KiB]
Downloaded 436 times
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #72 Posted: Sun Apr 18, 2021 8:32 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
and an example for a 63x63 board:
Code:
(;GM[1]FF[4]RU[Japanese]SZ[63]HA[0]KM[5.5]RE[W+Resign]
PW[KataGo 1.8.1 (random seed unknown)]PB[KataGo 1.8.1 (random seed unknown)]
;B[bk61]
;W[c5]
;B[c60]
;W[c10]
...
;B[ag25]
;W[af25]
;B[ab30]
;W[aa29]
)

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #73 Posted: Sat Jul 17, 2021 5:53 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
the new version of q5go 2.1.2 (GitHub action CI build on Jul 17 2021) supports autoplay, including on boards up to 52x52! https://github.com/bernds/q5Go/actions/runs/1039399331

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #74 Posted: Sat Jul 17, 2021 7:16 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
during autoplay, you can enable analysis. gg4k-NeroX 37х37:
(http://files.gokgs.com/games/2012/7/15/gg4k-NeroX.sgf
https://www.gokgs.com/tournGames.jsp?id=739&round=2
for the analysis used the network katago 20b
you can use the slider below the board, so part of the graph is missing :) )


Attachments:
gg4k-NeroX.jpg
gg4k-NeroX.jpg [ 597.59 KiB | Viewed 22801 times ]
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #75 Posted: Thu Jul 22, 2021 1:25 pm 
Dies in gote
User avatar

Posts: 43
Liked others: 44
Was liked: 10
Friday9i Please make version of katago 1.9.1 for 37x37 and 52x52 boards! (eigenavx2-windows-x64)

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #76 Posted: Sun Sep 05, 2021 2:26 am 
Dies in gote

Posts: 31
Liked others: 30
Was liked: 18
Rank: 1d
KGS: kace
Dragon wrote:
Friday9i Please make version of katago 1.9.1 for 37x37 and 52x52 boards! (eigenavx2-windows-x64)

Here they are, enjoy!
https://github.com/lightvector/KataGo/i ... -913116646


This post by Friday9i was liked by 2 people: And, Dragon
Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #77 Posted: Sun Sep 05, 2021 3:26 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
why does the 60b network not work on boards larger than 33x33? 40b on boards more than 37x37? 20b on boards more than 52x52? are there resource limits in the executable?

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #78 Posted: Sun Sep 05, 2021 3:53 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
Friday9i
"unacceptable size (Board::MAX_LEN is 29..."

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #79 Posted: Sun Sep 05, 2021 3:56 am 
Dies in gote

Posts: 31
Liked others: 30
Was liked: 18
Rank: 1d
KGS: kace
And wrote:
Friday9i
"unacceptable size (Board::MAX_LEN is 29..."

Argh sorry, I must have made a mistake somewhere... I'm trying again asap. Just a question: did you manage to make it work on boards 52x52 with 20b nets (but not with 40b and 60b)??

Top
 Profile  
 
Offline
 Post subject: Re: Game programs for boards more than 19x19
Post #80 Posted: Sun Sep 05, 2021 4:05 am 
Gosei
User avatar

Posts: 1348
Liked others: 202
Was liked: 203
I checked the 20b network. works at 29x29, not at 33x33. checked in q5go-2.1.2. all 4 files

Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 178 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 9  Next

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group