-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search tuning at very long time control
This patch is a result of tuning session of approximately 100k games at 120+1.2. Biggest changes are in extensions, stat bonus and depth reduction for nodes without a tt move. Failed STC: https://tests.stockfishchess.org/tests/view/63f72c72e74a12625bcd7938 LLR: -2.94 (-2.94,2.94) <0.00,2.00> Total: 13872 W: 3535 L: 3769 D: 6568 Ptnml(0-2): 56, 1621, 3800, 1419, 40 Close to neutral at LTC: https://tests.stockfishchess.org/tests/view/63f738f5e74a12625bcd7b8a Elo: 0.80 +-1.2 (95%) LOS: 90.0% Total: 60000 W: 16213 L: 16074 D: 27713 Ptnml(0-2): 24, 5718, 18379, 5853, 26 nElo: 1.82 +-2.8 (95%) PairsRatio: 1.02 Passed 180+1.8 VLTC: https://tests.stockfishchess.org/tests/view/63f868f3e74a12625bcdb33e LLR: 2.95 (-2.94,2.94) <0.50,2.50> Total: 15864 W: 4449 L: 4202 D: 7213 Ptnml(0-2): 1, 1301, 5083, 1544, 3 Passed 60+0.6 8 threads SMP VLTC: https://tests.stockfishchess.org/tests/view/63f8a5d6e74a12625bcdbdb3 LLR: 2.94 (-2.94,2.94) <0.50,2.50> Total: 6288 W: 1821 L: 1604 D: 2863 Ptnml(0-2): 0, 402, 2123, 619, 0 closes #4406 bench 4705194
- Loading branch information
1 parent
29b5ad5
commit 472e726
Showing
1 changed file
with
51 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
472e726
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since singular extensions have proven to be perhaps the most wildly weirdly scaling part of the search, I investigated how much of this weird scaling can be blamed on the
singularBeta
change. The answer is "most", and may or may not be "all".At STC, most or all of the loss can be blamed on the sB change:
https://tests.stockfishchess.org/tests/view/63f916d0e74a12625bcdd320
At LTC, the sB change appears to be neutral:
https://tests.stockfishchess.org/tests/view/63fb45efe74a12625bce3f3a
At VLTC, the sB change appears to explain most, if perhaps not all, of the gain:
https://tests.stockfishchess.org/tests/live_elo/63fb4624e74a12625bce3f48
A couple of attempts to use
completedDepth
to scale the transition from3
to2
, akin to the singular depth condition, failed to gain at LTC:cD > 26: https://tests.stockfishchess.org/tests/view/63fd7b7de74a12625bcea5e3
cD > 22: https://tests.stockfishchess.org/tests/view/63f933bbe74a12625bcdd8fb
cD > 18: https://tests.stockfishchess.org/tests/view/63ff3e3de74a12625bcefd18
I have no idea how much of the crazy SMP-VLTC scaling is due to sB. It's probably way too expensive to be worth investigating.