markpattison / Reversi

8 stars 1 forks source link

Adding descriptions #7

Closed forki closed 4 years ago

forki commented 4 years ago

This is a super ugly protoytpe for allowing to show what the computer player "thinks" about a position. For now it's only implemented for MCTS and my UI skills are so bad. But I think it will help us to improve the algorithms

image

forki commented 4 years ago

The information that minimax gives is a bit different. MCTS is thinking in Chances (0.54 means I have 54% chance to win). Minimax evaluates the position differently. So the format needs to be somewhat free

markpattison commented 4 years ago

I did some work to allow the descriptions to be hierarchical and let you expand/hide them:

reversi

forki commented 4 years ago

Awesome. Would love to see same thing for minimax

markpattison commented 4 years ago

That's there too but only one level deep at the moment:

reversi

forki commented 4 years ago

If you let two engines play against each other than the descriptions is collapsed all the time.