Life In 19x19
http://www.lifein19x19.com/

q5go-2.1.3: Autoplay and some other minor updates
http://www.lifein19x19.com/viewtopic.php?f=9&t=16354
Page 9 of 10

Author:  And [ Fri Apr 02, 2021 11:40 am ]
Post subject:  Re: q5go-2.1: Minor enhancements and fixes

so it will be? can we hope? :)

Author:  Dragon [ Sun Apr 04, 2021 7:36 am ]
Post subject:  Re: q5go-2.1: Minor enhancements and fixes

bernds Thank you so much for the version with 52x52 support !!! a very big request, please add to the new version the ability to play between engines on a 52x52 board !!! some programs have support for large boards, but there is no way to make engine matches! besides that, your program is more convenient and beautiful! thanks!!! :)

Author:  bernds [ Sun Apr 11, 2021 10:56 am ]
Post subject:  Re: q5go-2.1: Minor enhancements and fixes

Dragon wrote:
bernds Thank you so much for the version with 52x52 support !!! a very big request, please add to the new version the ability to play between engines on a 52x52 board !!! some programs have support for large boards, but there is no way to make engine matches! besides that, your program is more convenient and beautiful! thanks!!! :)

There's now a 2.1.1 release which should work.

Author:  And [ Sun Apr 11, 2021 11:30 am ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

@bernds
big, huge, giant thanks !!! :D

Author:  Dragon [ Sun Apr 11, 2021 1:17 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

bernds many thanks !!! it is wonderful!!!

Author:  bernds [ Sat Apr 17, 2021 3:15 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

I've pushed out some new code that adds initial support for KataGo's rulesets. This is currently for live analysis only, and I've focused on making it guess the correct ruleset from the various bits of information in the SGF file. This is based on what I've found in GoGoD plus files from a few Go servers. I'm still unsure how many menu options I really want for various rulesets and their subvariations, so on top of "Best guess" there's only Chinese and Japanese so far. It's possible to influence the guess by editing the game information and changing the rules field, which may be the best way to do it if the SGF file doesn't properly specify the rules yet.

No binaries yet, but if someone wants to test I'd be interested in hearing whether it works well or has some shortcomings. One known issue: I don't know what to do about Ing rules, they aren't listed on the KataGo GTP extensions page.

Author:  lightvector [ Sat Apr 17, 2021 9:14 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

bernds wrote:
No binaries yet, but if someone wants to test I'd be interested in hearing whether it works well or has some shortcomings. One known issue: I don't know what to do about Ing rules, they aren't listed on the KataGo GTP extensions page.


There's no reason why you should need KataGo to name the rules for you to use them. KataGo's ruleset is fully documented at https://lightvector.github.io/KataGo/rules.html and every option here is indivdually toggleable, so if you want to support any new rules, you can find the closest combination of rules there and use that - and if there isn't a practically-exact match, you can ask other people specialized in rules beasts and corner cases for help in figuring what would be the closest match.

Or, if your research turns up that there is simply no 99%-correct match and you need a rule that is strongly distinct from the ones there, you can suggest to add it (but hopefully you also have a good proposal on how to make it well-defined enough to implement it programatically - e.g. if it's even 10% as complex as Japanese territory scoring, it might need some careful thought).

Author:  jl1990 [ Sun Apr 18, 2021 1:28 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

Hey guys,

First things first. Congratulations for the program @bernds.
Also nice to see you here @lightvector (thanks for KataGo, I follow the development closely)

I guess not much people uses Gentoo linux here, but just in case.
I created a Gentoo overlay which includes a q5Go ebuild (there was none previously), so now everyone should be able to use q5Go with this repository in Gentoo.

You can find ebuild here: https://github.com/jl1990/gentoo-overlay/tree/master/games-board/q5Go and the repository is listed here: https://overlays.gentoo.org/.
It's my first ebuild, so feel free to submit bugs, PRs...

Author:  And [ Mon Apr 19, 2021 1:20 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

during the game of two engines how to stop the game in order to continue later? save, then close? or does it not matter? is it possible to stop for a while? can add a pause button?

Author:  bernds [ Mon Apr 19, 2021 5:46 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

jl1990 wrote:
I guess not much people uses Gentoo linux here, but just in case.
I do, actually...
Quote:
I created a Gentoo overlay which includes a q5Go ebuild (there was none previously), so now everyone should be able to use q5Go with this repository in Gentoo.
Neat. You might want to add a "doc" USE flag which requires pandoc as a build dependency. The README will get installed if that program is present.

You probably also need a few additional dependencies beyond qtgui, such as qtsvg and qtmultimedia.

Author:  bernds [ Mon Apr 19, 2021 5:48 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

And wrote:
during the game of two engines how to stop the game in order to continue later? save, then close? or does it not matter? is it possible to stop for a while? can add a pause button?

Possibly. Shouldn't be too hard, but maybe not the highest priority.

Author:  bernds [ Mon Apr 19, 2021 5:51 pm ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

lightvector wrote:
bernds wrote:
No binaries yet, but if someone wants to test I'd be interested in hearing whether it works well or has some shortcomings. One known issue: I don't know what to do about Ing rules, they aren't listed on the KataGo GTP extensions page.


There's no reason why you should need KataGo to name the rules for you to use them. KataGo's ruleset is fully documented at https://lightvector.github.io/KataGo/rules.html and every option here is indivdually toggleable, so if you want to support any new rules, you can find the closest combination of rules there and use that - and if there isn't a practically-exact match, you can ask other people specialized in rules beasts and corner cases for help in figuring what would be the closest match.

The problem is I really don't understand Ing rules. My eyes glaze over whenever I start reading the ko rules. I guess it doesn't matter very much, I'll ignore them for now.

Author:  jl1990 [ Tue Apr 20, 2021 12:27 am ]
Post subject:  Re: q5go-2.1.1: Minor enhancements and fixes

bernds wrote:
jl1990 wrote:
I guess not much people uses Gentoo linux here, but just in case.
I do, actually...
Quote:
I created a Gentoo overlay which includes a q5Go ebuild (there was none previously), so now everyone should be able to use q5Go with this repository in Gentoo.
Neat. You might want to add a "doc" USE flag which requires pandoc as a build dependency. The README will get installed if that program is present.

You probably also need a few additional dependencies beyond qtgui, such as qtsvg and qtmultimedia.


Thanks for the feedback, I will apply those changes

Author:  bernds [ Mon Jul 12, 2021 8:41 am ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

I've uploaded a 2.1.2 bugfix release. In locales where a comma is used instead of a decimal point, SGF files (specifically the komi value) weren't written out properly. Pitfalls of the C/C++ standard library...

The new version should be able to load files written by the old one and save them correctly.

Author:  And [ Sat Jul 17, 2021 5:42 am ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

bernds
great - thank you very much! (Autoplay) :D

Author:  And [ Sat Jul 17, 2021 6:19 am ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

in the sidebar during analysis (primary move:), some coordinates are displayed incorrectly. e.g. (af19) - ('19), (ad19) - (^19)

Author:  bernds [ Sat Jul 17, 2021 6:34 am ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

And wrote:
in the sidebar during analysis (primary move:), some coordinates are displayed incorrectly. e.g. (af19) - ('19), (ad19) - (^19)

Is this with extra large board sizes?

Author:  And [ Sat Jul 17, 2021 6:36 am ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

yes, I noticed so far only on them (for example 37x37)

Author:  Dragon [ Thu Jul 22, 2021 1:32 pm ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

bernds I also thank you very much for autoplay! :clap:

Author:  Dragon [ Tue Jan 25, 2022 1:54 pm ]
Post subject:  Re: q5go-2.1.2: Minor enhancements and fixes

bernds, https://github.com/bernds/q5Go/actions/runs/1039399331 and https://github.com/bernds/q5Go/actions/runs/1291776787 "This artifact has expired and you can no longer download it"
update please!

Page 9 of 10 All times are UTC - 8 hours [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/