KataGo icon indicating copy to clipboard operation
KataGo copied to clipboard

Possible Bug

Open qrdecomposition opened this issue 3 years ago • 1 comments

Should this:

out << " scoreMean " << lead

be

out << " scoreMean " << scoreMean

https://github.com/lightvector/KataGo/blob/master/cpp/command/gtp.cpp#L796

qrdecomposition avatar Jul 31 '22 17:07 qrdecomposition

This is not a bug, see documentation for scoreMean at https://github.com/lightvector/KataGo/blob/master/docs/GTP_Extensions.md, this choice was made because there were many old tools coded to use scoreMean when they should have used lead instead, so rather than get all the user end tools to change we just updated the field directly, and made scoreMean instead available to user applications as scoreSelfplay.

I'll add an inline code comment later to make this more clear.

lightvector avatar Jul 31 '22 18:07 lightvector