RubiChess with old net?
Moderator: Ras
-
- Posts: 2994
- Joined: Wed Mar 08, 2006 10:09 pm
- Location: Germany
- Full name: Werner Schüle
RubiChess with old net?
The net included in the download version RubiChess-20240112 is from August 2023 - so no new network included?
Werner
-
- Posts: 3752
- Joined: Thu Jun 07, 2012 11:02 pm
Re: RubiChess with old net?
I didn't check the net other than to note that there was one. I'll check which one it is when I access my machine again. But I got +24 Elo out of it anyway.
-
- Posts: 2994
- Joined: Wed Mar 08, 2006 10:09 pm
- Location: Germany
- Full name: Werner Schüle
Re: RubiChess with old net?
Thanks, we just got the answer from Andreas: correct - no new network!
Werner
-
- Posts: 2885
- Joined: Mon Feb 11, 2008 3:53 pm
- Location: Denmark
- Full name: Damir Desevac
Re: RubiChess with old net?
Yes when I downloaded RubiChess on my machine, it asked me if I wanted to replace the old network with new one, same name and same seize...
-
- Posts: 2885
- Joined: Mon Feb 11, 2008 3:53 pm
- Location: Denmark
- Full name: Damir Desevac
Re: RubiChess with old net?
Andreas what is optimal Time Usage for RubiChess. I used Default 100 and lost on time after only 70 moves in draw position.
Shall I raise Move Overhead to 500 or 1000 like Stockfish does ?
Shall I raise Move Overhead to 500 or 1000 like Stockfish does ?
-
- Posts: 7055
- Joined: Wed Nov 18, 2009 7:16 pm
- Location: Gutweiler, Germany
- Full name: Frank Quisinsky
Re: RubiChess with old net?
Hi Damir,
what the RubiChess programmers are doing is very nice:
https://github.com/Matthies/NN
I also saw this and check and second the NN site.
I can't see any newer NN file.
Often I also look here for my opening analyses.
RubiChess is one of my TOP-10 engines for opening analyses.
Logically, the programmer can give the best answer.
Have fun with RubiChess!
Best
Frank
what the RubiChess programmers are doing is very nice:
https://github.com/Matthies/NN
I also saw this and check and second the NN site.
I can't see any newer NN file.
Often I also look here for my opening analyses.
RubiChess is one of my TOP-10 engines for opening analyses.
Logically, the programmer can give the best answer.
Have fun with RubiChess!
Best
Frank
-
- Posts: 643
- Joined: Fri Mar 30, 2018 7:20 am
- Full name: Andreas Matthies
Re: RubiChess with old net?
The problem is not about time usage of RubiChess, it is (usually) about the GUI stealing time from the engines.
Arena and ChessGUI are known for stealing a lot of time (and even Fritz? There was some report about a commercial GUI with this problem but I don't remember exactly) like 500ms or even more while others like Cutechess(-cli) limit this move overhead to < 10ms.
Rubi measures the overhead of the GUI and warns if this measured overhead is near or even exceeds the value of the Move Overhead option:
Code: Select all
if (measuredOverhead > moveOverhead / 2)
{
if (measuredOverhead > moveOverhead)
guiCom << "info string Measured GUI overhead is " + to_string(measuredOverhead) + "ms and time forfeits are very likely. Please increase Move_Overhead option!\n";
else
guiCom << "info string Measured GUI overhead is " + to_string(measuredOverhead) + "ms (> 50% of allowed via Move_Overhead option).\n";
}
Regards, Andreas