eval blending?

Discussion of anything and everything relating to chess playing software and machines.

Moderators: hgm, Rebel, chrisw

clumma
Posts: 186
Joined: Fri Oct 10, 2014 10:05 pm
Location: Berkeley, CA

eval blending?

Post by clumma »

Pardon if this has been discussed before, but has anyone tried blending evals of different engines to create an all-computer centaur?

Blending is a popular technique in machine learning contests (it won the Netflix prize).

We know something about the scaling of engines when adding cores. At what point are we better off using some cores for different engines?

For example, use 2 cores each for Stockfish, Komodo, and Houdini. Always make Stockfish move unless both Komodo and Houdini agree on a different one, in which case make that.

In another variant, run the engines with multi-pv = 2 and make the choice of the engine that is 'most sure' (shows largest eval difference between first and second choices). Here it may be good to normalize all the evals first to make them more consistent across engines.

Other schemes are possible. Evals of pvs can be averaged across engines (again probably after normalizing). Or we can try to identify phases of game where each engine is best, and simply use the best engine at each phase (or when certain material imbalances are present etc).

Has it been done?
Nay Lin Tun
Posts: 708
Joined: Mon Jan 16, 2012 6:34 am

Re: eval blending?

Post by Nay Lin Tun »

Yes stockfish search with Komodo evaluation!!.(In your idea, it is quite similar to asking three people to search the same dark room three times without dedicated area of search by each individual.There will be more repetitive search and more chance of missing ).So let only one engine search but the evaluation of the most important PVs by three engines will be interesting.
tmokonen
Posts: 1296
Joined: Sun Mar 12, 2006 6:46 pm
Location: Kelowna
Full name: Tony Mokonen

Re: eval blending?

Post by tmokonen »

There's a program called ChessCombi that sort of does what you are asking for. It runs as a UCI engine within your chess GUI, and combines the evaluation of two different UCI engines. Unfortunately, it can only combine a maximum of two engines. I've not actually used it, I've only read about it in other forums.

Download link:
http://www.mediafire.com/file/zl6ye8kl4 ... ombiV1.zip

Rybka forum discussion:
http://rybkaforum.net/cgi-bin/rybkaforu ... chesscombi
tmokonen
Posts: 1296
Joined: Sun Mar 12, 2006 6:46 pm
Location: Kelowna
Full name: Tony Mokonen

Re: eval blending?

Post by tmokonen »

kbhearn
Posts: 411
Joined: Thu Dec 30, 2010 4:48 am

Re: eval blending?

Post by kbhearn »

In its simplest form the idea has problems - namely that when you say have your trio of engines and one disagrees you really don't know if it's seeing more than the other two or if it's blind to something the other two are seeing.

What you'd probably need to do is combine it in an external idea-like framework that maintains a tree with each engine's evaluations and in nodes that are of particular interest to any of the 3 engines you expand that node and get second opinions on the child nodes again from all 3 engines and minimax the results back to the root for each. eventually time would force you to have to just go with one of the moves if the disagreement couldn't be resolved but at least it'd give a chance for the outlier engine to demonstrate it knows better or to realise it was the one missing something.
clumma
Posts: 186
Joined: Fri Oct 10, 2014 10:05 pm
Location: Berkeley, CA

Re: eval blending?

Post by clumma »

tmokonen wrote:There's a program called ChessCombi that sort of does what you are asking for.
Thanks!
User avatar
Evert
Posts: 2929
Joined: Sat Jan 22, 2011 12:42 am
Location: NL

Re: eval blending?

Post by Evert »

Have you ever tried to play a game where multiple people suggest moves? In my experience this leads to erratic and poor play. Of course, computers are not human.
clumma wrote:Pardon if this has been discussed before, but has anyone tried blending evals of different engines to create an all-computer centaur?
Nitpick: mixing evaluations in the GUI does nothing because it does not affect move selection, so as a term this does not capture the essence of what you want to do.
For example, use 2 cores each for Stockfish, Komodo, and Houdini. Always make Stockfish move unless both Komodo and Houdini agree on a different one, in which case make that.
How often does that situation occur?
You can verify this by taking a game and letting all three engines analyse (with multi-PV).
In another variant, run the engines with multi-pv = 2 and make the choice of the engine that is 'most sure' (shows largest eval difference between first and second choices). Here it may be good to normalize all the evals first to make them more consistent across engines.
Bad idea. Multi-pv is not free and costs valuable time. You're also assuming that a large gap means something. You don't know that. Perhaps the engine with the smallest gap sees something that the others don't?
Other schemes are possible. Evals of pvs can be averaged across engines (again probably after normalizing).
Again, this does not affect move selection.
Or we can try to identify phases of game where each engine is best, and simply use the best engine at each phase (or when certain material imbalances are present etc).
It would probably be better to improve the respective engines.

What might have some value is having engines ponder the proposed move, sometimes engines see why a move is bad immediately after playing it. You still need to communicate that information somehow though, and you don't need multiple engines to do it (and even then, a better suggestion is to try and fix it in the engine in the first place).
clumma
Posts: 186
Joined: Fri Oct 10, 2014 10:05 pm
Location: Berkeley, CA

Re: eval blending?

Post by clumma »

Bad idea. Multi-pv is not free and costs valuable time. You're also assuming that a large gap means something. You don't know that. Perhaps the engine with the smallest gap sees something that the others don't?
I'm not assuming anything, other than that it's an interesting idea which is worth trying.
flok

Re: eval blending?

Post by flok »

I think DBPPuppetMaster on freechess does this. With 8 engines that is.
Cardoso
Posts: 362
Joined: Thu Mar 16, 2006 7:39 pm
Location: Portugal
Full name: Alvaro Cardoso

Re: eval blending?

Post by Cardoso »

Carl, that idea simply could never work.
Different engines have different evals, and different searches.
Even if one engine gives a score of an half a pawn up, how do you know it is right?
An higher score doesn't mean it is better than the analysis of other engine with a lower score.
The score for a move is allways an aproximation, wich can climb up or come down as the game progresses.
Maybe other engine wich gives a lower eval has the best sequence.
The search part of an engine works by making line eval comparisons (simply put), how would you compare lines (wich are different or even slightly different) that come from different engines?
Each engine hasn't a clue of other's analysis, they are completely disconnected.
Also different extensions/reductions give different terminal positions where the eval is applied.
Suppose you have 3 or 4 grandmasters and each give a different move, who's move are you going to choose?


Alvaro