Search found 19 matches
- Mon Oct 05, 2020 10:25 am
- Forum: Computer Chess Club: General Topics
- Topic: A Crossroad in Computer Chess; Or Desperate Flailing for Relevance
- Replies: 152
- Views: 21656
Re: A Crossroad in Computer Chess; Or Desperate Flailing for Relevance
Just by making Leela available to Caruana, Ding and the other super-GMs fully for free instead of ad-hominem freemium coaching services, the devs have missed out on a 5 (maybe 6) figure amount. (Well, that was a consequence of Glaurung's GPL, but they could still have done the Fat Fritz cloud trick...
- Wed Sep 16, 2020 11:01 pm
- Forum: Computer Chess Club: General Topics
- Topic: Yet another parameter tuner using optuna framework
- Replies: 36
- Views: 5977
Re: Yet another parameter tuner using optuna framework
Thanks Ferdy for making your tool available! I like some of the plots you output for the results. I wanted to point out that Optuna uses tree-structured parzen estimators as their model, which does not model interactions between parameters. Tools based on Gaussian processes (like the chess-tuning-to...
- Tue Aug 25, 2020 10:08 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Evaluation & Tuning in Chess Engines
- Replies: 27
- Views: 10549
Re: Evaluation & Tuning in Chess Engines
If you are interested in a global optimizer specifically adapted to the application of chess, I recently refactored the tuning code we use for Lc0 into its own tuning library: https://github.com/kiudee/chess-tuning-tools Since I want to make it as easy to use as possible, I also started work on the ...
- Sat Apr 25, 2020 3:26 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Does Ordo incorporate priors correctly?
- Replies: 6
- Views: 1270
Re: Does Ordo incorporate priors correctly?
After reading the code very carefully, I noticed that the standard deviation shown in the result output results from passing the --simulations flag. Ordo is then replaying the games several times to obtain error bars on all quantities. So, in the case of white advantage and draw rate, the prior info...
- Sat Apr 25, 2020 2:43 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Does Ordo incorporate priors correctly?
- Replies: 6
- Views: 1270
Re: Does Ordo incorporate priors correctly?
How are you sure it is a bug not a feature :) Questions I have: a) Does Ordo even have the concept of priors/posterieors etc? You are talking as if it has it but AFAIk it is not based on bayesian approach. b) Does it take into consideration the color and draw ratio when calculating elos? a) Yes, Or...
- Sat Apr 25, 2020 2:25 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Does Ordo incorporate priors correctly?
- Replies: 6
- Views: 1270
Re: Does Ordo incorporate priors correctly?
Why are you using Ordo anyway, clearly it has inferior algorithms than bayeselo that is based on bayesian approach. Here https://www.remi-coulom.fr/Bayesian-Elo/ Remi remid discusses some of the advantages over prior alogrithm, EloStat. For the calculation of accurate standard deviations, there is ...
- Sat Apr 25, 2020 11:24 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Does Ordo incorporate priors correctly?
- Replies: 6
- Views: 1270
Does Ordo incorporate priors correctly?
I was experimenting with using prior knowledge about white advantage and draw rate in Ordo, but noticed that the posterior standard deviations were much too low. Sometimes even two orders of magnitude lower than expected. To test this I created a very simple pgn file consisting of just 2 games. One ...
- Sat Apr 18, 2020 11:06 am
- Forum: Computer Chess Club: General Topics
- Topic: Lc0 soon to support chess960 ?
- Replies: 9
- Views: 1676
Re: Lc0 soon to support chess960 ?
As a matter of fact, we already trained a Chess960 network to test the implementation. Take a look at our list of networks and download for example the network 712574. It supports both Chess960 and the new moves-left-head. If you want to see the moves-left-head in action, try these additional settin...
- Fri Jan 31, 2020 6:25 pm
- Forum: Computer Chess Club: General Topics
- Topic: Crazy good LTC Kiudee "mod" setting just by adjusting CPuct
- Replies: 31
- Views: 7046
Re: Crazy good LTC Kiudee "mod" setting just by adjusting CPuct
Yes, the current distributed tune in progress is the first one for longer time controls (with over 100k nodes / move). I will release the complete data as soon as it’s finished. Until then, the only thing I can recommend to experiment with is CPuctFactor. CPuct itself should stay low, since it has a...
- Fri Jan 31, 2020 5:35 pm
- Forum: Computer Chess Club: General Topics
- Topic: Crazy good LTC Kiudee "mod" setting just by adjusting CPuct
- Replies: 31
- Views: 7046
Re: Crazy good LTC Kiudee "mod" setting just by adjusting CPuct
Then again, I am surprised. A CPuct = 1.900 doesn't seem very intuitive to LTC, does it? How re-farctoring works with Lc0? Really, I feel I have to check and re-check every detail of my setup. Even if a self-play, an improvement of 70 Elo points with 70% draw rate at 400k npm is a bit hard to belie...