when a daily tester should review his tests
Posted: Sun Jul 09, 2023 1:38 pm
------------
Notice:
This post in this topic has been reviewed and edited because it violated the OpenChess Forum Rules. This is a gentle reminder not to continue flaming this topic or others in the Forum. Further recurrent violations will not be tolerated.
Thanks,
Best regards, Moderation.
------------
Scenario : create an opening book from games of a reference player.
What people would do :
- select the games played from the start position by the reference player
- create a book with the moves played as white by the reference player
- create a book with the moves played as black by the reference player
- merge the two books

As we can see, the book moves were really played by the reference player, and their weights correspond to their percentages.

This post in this topic has been reviewed and edited because it violated the OpenChess Forum Rules. This is a gentle reminder not to continue flaming this topic or others in the Forum. Further recurrent violations will not be tolerated.
Thanks,
Best regards, Moderation.
------------
Scenario : create an opening book from games of a reference player.
What people would do :
- select the games played from the start position by the reference player
- create a book with the moves played as white by the reference player
- create a book with the moves played as black by the reference player
- merge the two books
Code: Select all
polyglot.exe make-book -pgn depth4_startposition_white.pgn -bin depth4_startposition_white.bin -only-white
PolyGlot 2.0.2 by Fabien Letouzey.
inserting games ...
251 games.
13892 entries.
filtering entries ...
437 entries.
sorting entries ...
saving entries ...
all done!
polyglot.exe make-book -pgn depth4_startposition_black.pgn -bin depth4_startposition_black.bin -only-black
PolyGlot 2.0.2 by Fabien Letouzey.
inserting games ...
251 games.
12226 entries.
filtering entries ...
531 entries.
sorting entries ...
saving entries ...
all done!
polyglot.exe merge-book -in1 "depth4_startposition_white.bin" -in2 "depth4_startposition_black.bin" -out "depth4_startposition.bin"
PolyGlot 2.0.2 by Fabien Letouzey.
done!

As we can see, the book moves were really played by the reference player, and their weights correspond to their percentages.