Continuous 'VerboseMoveStats' ? #2096
-
I understand that the UCI option 'VerboseMoveStats' prints additional info about Leela's search variables (Q, N, P, etc.). When 'go infinite' there is no way to get those stats regularly. Nibbler obviously can do it, but I don't know how. (maybe by calling "stop - go infinite" in regular intervals, but that seems clunky to me). Does anybody have a clue on how to achieve this ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can get N and Q (or rather WDL) by setting high multipv and P is the policy value and doesn't change with time, what Nibbler does is |
Beta Was this translation helpful? Give feedback.
-
Thanks. I solved it with options "UCI_WDL", "VerboseMoveStats" and "LogLiveStats". LogLiveStats is a "hidden" option that you only see with --help --show-hidden. |
Beta Was this translation helpful? Give feedback.
Thanks.
I solved it with options "UCI_WDL", "VerboseMoveStats" and "LogLiveStats".
LogLiveStats is a "hidden" option that you only see with --help --show-hidden.
A bit hard to find but it does what I want ;)