Search found 94 matches
- Sun Mar 07, 2021 3:25 pm
- Forum: Computer Chess Club: Tournaments and Matches
- Topic: Wasp 4.50 64-bit Gauntlet for CCRL 40/15
- Replies: 7
- Views: 493
Re: Wasp 4.50 64-bit Gauntlet for CCRL 40/15
Thank you very much for testing Wasp!
- Fri Mar 05, 2021 5:23 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: The mailbox trials
- Replies: 126
- Views: 10583
Re: The mailbox trials
But what is the point of tabulating moves in a given direction, if you can calculate the next destination by simply adding the step for that direction to the previous destination? toSqr = table[i++]; would just e a memory load extra compared to toSqr += step; as you have to increment the loop index...
- Thu Mar 04, 2021 6:31 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: The mailbox trials
- Replies: 126
- Views: 10583
Re: The mailbox trials
My favorite mailbox move generator uses a 64 square board and has a pre-computed table of Moves of 64x10x10 = 6400 bytes which is indexed by square and direction. The directions are N,S,E,W,NE,SE,NW,SW,Knight,and King. For each square and direction the table has a list of squares in that direction w...
- Sun Feb 14, 2021 4:42 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: On-line engine blitz tourney February
- Replies: 9
- Views: 1495
Re: On-line engine blitz tourney February
Wasp does not have a NN eval, although I'm currently experimenting with NN's and so far my best net is only about 75 Elo worse than the HCE eval.
- Thu Jan 21, 2021 11:20 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: More experiments with neural nets
- Replies: 11
- Views: 4645
Re: More experiments with neural nets
Thanks for the clarification! It was hard to fathom that SlowChess could be so strong with only 320 inputs and two 32 node layers. I guess that your NN topology with 705 inputs and 320 nodes in the first hidden layer is sufficient to roughly equal the best HCE. That's really cool! I know very little...
- Thu Jan 21, 2021 7:25 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: More experiments with neural nets
- Replies: 11
- Views: 4645
Re: More experiments with neural nets
Hi Jon, SlowChess is my favorite engine and this is the most interesting post I've seen recently. I'm surprised that there have been no replies. What are the 320 inputs that you use? I would think that 6x64 = 384 inputs (or maybe 352 if only 32 squares are used for king location) would be a minimum....
- Sun Jan 03, 2021 8:11 pm
- Forum: Computer Chess Club: General Topics
- Topic: Wasp 4.5 Released
- Replies: 21
- Views: 3653
Re: Wasp 4.5 Released
How do you think this automated tuning affected Wasp's offensive middlegame style ? :) I think it's about the same or maybe a little more aggressive than the previous version. I guess we'll find out from Frank's upcoming tournament. I should probably start keeping some statistics from my gauntlet t...
- Sun Jan 03, 2021 6:45 pm
- Forum: Computer Chess Club: General Topics
- Topic: Wasp 4.5 Released
- Replies: 21
- Views: 3653
Re: Wasp 4.5 Released
Tuning is now done in a similar fashion to back-propogation for neural networks rather than the gradient-descent method... ...each pertinent term is tweaked by a small amount in the direction to reduce error. this is the gradient-descent. the neural network also uses gradient-descent. backprop prop...
- Sun Jan 03, 2021 4:23 pm
- Forum: Computer Chess Club: General Topics
- Topic: Wasp 4.5 Released
- Replies: 21
- Views: 3653
Re: Wasp 4.5 Released
Wasp 4.5 is released today. I estimate it to be about 50 Elo stronger than Wasp 4.0. Many thanks John. How do you use the config file. I used example_config with UCI_Elo = 1200 and set ConfigFilePath=./example_config in the Shredder 12 GUI. But it seems to search much more deeply than I expect for ...
- Sun Jan 03, 2021 4:08 pm
- Forum: Computer Chess Club: General Topics
- Topic: Wasp 4.5 Released
- Replies: 21
- Views: 3653
Re: Wasp 4.5 Released
Wasp 4.5 is released today. I estimate it to be about 50 Elo stronger than Wasp 4.0. Many thanks to Frank Quisinsky for hosting Wasp on his website. Here is the link: https://www.amateurschach.de/download/wasp_450.zip Thank you, John! Nice news. What is the "proper" version number: 4.5 or 4.50 ? We...