Leela 0.9.0 got stronger and, of course, remained the strongest Go engine (with GTP support). Is there any such engine, that can show at least slight resistance to Leela?
Leela has new thinking process. For example, on GoGUI shell You can see: "Nodes: 248096, Win: 51.81% (MC:42.27%/VN:63.46%), PV: M8 M10 N9 N10 P9 P6",- where win percentage is now average of old Monte Carlo (MC) and some new VN algorithms. Leela's developer has selected non standard way for time control. In contrast to all other Go engines in Leela it's possible get only the time per move and only by subtraction from external application time per move setting the --lagbuffer (-b) parameter value. For example, if someone adds in GoGUI a few Leela's game strength levels, then he must start gogui.jar (excepting displaying the contestants elapsed times) with "-time 1s+21474836s/1" (for example - the maximal compensable by Leela's -b parameter) and add (in Menu/ Program/ New Program), for example, the next (with path to executive file leela_090_linux_x64 in Working directory):
1) ./leela_090_linux_x64 -g -b 2147483500
2) ./leela_090_linux_x64 -g -b 2147471600
3) ./leela_090_linux_x64 -g -b 0
(1 - for 1 sec per move; 2 - for 2 min per move; 3 - for 357914 min per move)
It is nice to read the old post here on these bots comparison.
I actually did similar things at end of 2016 and early 2017. I am curious how can you guys run linux version of MoGo?
But actually the downloaded file "mogor" is not executable in Ubuntu 14.04 linux machine, it throw out error something like "can not find file ...."
Shoreline
Re: Engine Tournament
Posted: Sat Mar 11, 2017 2:03 pm
by as0770
Shoreline wrote:Hi all,
It is nice to read the old post here on these bots comparison.
I actually did similar things at end of 2016 and early 2017. I am curious how can you guys run linux version of MoGo?
But actually the downloaded file "mogor" is not executable in Ubuntu 14.04 linux machine, it throw out error something like "can not find file ...."
Shoreline
This executable works here on Ubuntu 16.04. Even the windows binary works with wine.
Re: Engine Tournament
Posted: Sat Mar 11, 2017 7:38 pm
by Shoreline
as0770 wrote:
Shoreline wrote:Hi all,
It is nice to read the old post here on these bots comparison.
I actually did similar things at end of 2016 and early 2017. I am curious how can you guys run linux version of MoGo?
But actually the downloaded file "mogor" is not executable in Ubuntu 14.04 linux machine, it throw out error something like "can not find file ...."
Shoreline
This executable works here on Ubuntu 16.04. Even the windows binary works with wine.
Found the reason. This is 32 bits binary, does not work natively in 64 bits linux. By doing the compatible library installation, it trashed my virtual machine system.
Well, I will just have to give it up, not worth trying it out.
Re: Engine Tournament
Posted: Sat Mar 11, 2017 11:45 pm
by as0770
Shoreline wrote:
as0770 wrote:
Shoreline wrote:Hi all,
It is nice to read the old post here on these bots comparison.
I actually did similar things at end of 2016 and early 2017. I am curious how can you guys run linux version of MoGo?
But actually the downloaded file "mogor" is not executable in Ubuntu 14.04 linux machine, it throw out error something like "can not find file ...."
Shoreline
This executable works here on Ubuntu 16.04. Even the windows binary works with wine.
Found the reason. This is 32 bits binary, does not work natively in 64 bits linux. By doing the compatible library installation, it trashed my virtual machine system.
Well, I will just have to give it up, not worth trying it out.
My system is also 64 Bit. Anyway, Mogo is quite similar to Fuego
Re: Engine Tournament
Posted: Sun Mar 12, 2017 3:25 pm
by Shoreline
as0770 wrote:
Shoreline wrote:
Found the reason. This is 32 bits binary, does not work natively in 64 bits linux. By doing the compatible library installation, it trashed my virtual machine system.
Well, I will just have to give it up, not worth trying it out.
My system is also 64 Bit. Anyway, Mogo is quite similar to Fuego
It needs 10 minutes per move set up in dual core computer and only achieved 8 kyu level at DGS by looking at the chart. Not sure your setup needs that kind of thinking time to be competitive. For fuego to achieve 5 kyu to 7 kyu at DGS, my redrobot at DGS only runs on a 10 seconds per move thinking time (default) in dual core linux computer. Here is redrobot at DGS: http://www.dragongoserver.net/userinfo.php?uid=97563
It appears that on resource wise, and strength, MoGo is not very competitive compared to Fuego.
Re: Engine Tournament
Posted: Sat Mar 18, 2017 3:19 am
by q30
Shoreline wrote:I am curious how can you guys run linux version of MoGo?
But actually the downloaded file "mogor" is not executable in Ubuntu 14.04 linux machine, it throw out error something like "can not find file ...."
Try from here.
You must have x86_64 version of Linux (elsewhere You must compile MoGo 4.86).
Thanks for providing MoGo X64 linux binary. Indeed, MoGo 4.86 in my machine can beat Fuego easily with similar thinking time and resource.
Re: Engine Tournament
Posted: Sat Mar 25, 2017 2:26 am
by q30
Shoreline wrote:
Thanks for providing MoGo X64 linux binary. Indeed, MoGo 4.86 in my machine can beat Fuego easily with similar thinking time and resource.
All MoGo versions with parameters by link above beat FueGo too...
Moreover, in games by this link You can see, that MoGo versions can't beat unambiguously each other (even 32-bit version)...
Re: Engine Tournament
Posted: Sat May 27, 2017 3:47 am
by q30
Leela in version 0.10.0 became stronger and, of course, remains the strongest Go engine (at least among engines with GTP support). Details.
But it still has two disadvantages:
1) the time control;
2) very late resigning (for example, it wasn't resign with win percentage by VN 0,00% until by MC was >20%...)
Can You explain, how is it possible to run Hiratuka in GTP mode (what a command is the 'taskset -c 0')?
Thanks in advance.
Re: Engine Tournament
Posted: Sat Jun 03, 2017 7:00 am
by as0770
q30 wrote:Hi, Alex!
Can You explain, how is it possible to run Hiratuka in GTP mode (what a command is the 'taskset -c 0')?
Thanks in advance.
Hi,
I run the windows .exe under Linux. The -po parameter is the number of playouts. Hiratuka will use by default all available cores so I use the taskset command to force the core number, "taskset -c 0" means the program uses core number 0 (4 cores are numbered 0,1,2,3). You can also run two cores by "taskset -c 0,1". If you run more programs with taskset be sure to take different core numbers. There is something similar in windows afaik.