Page 1 of 1

pgnToEXPv2 (learning from PGN)

Posted: Tue Aug 20, 2024 2:29 pm
by deeds
Scenario 1 : learning from a tourney...

We filter the games played with Eman :
Image


We create an EXP file from the moves evaluated by Eman :
Image


Stats of the CloneWars_2021.exp file :
Image

Re: pgnToEXPv2 (learning from PGN)

Posted: Tue Aug 20, 2024 2:39 pm
by deeds
Get the openings from the CloneWars_2021.pgn file :

Code: Select all

@echo PGN filename :
@echo (without .PGN extension)
@set /p pgn=
@echo max opening's moves :
@echo (ex : 12)
@set /p plies=
@pgn-extract.exe -s -Wuci -7 --plylimit %plies% -o%pgn%_temp.pgn %pgn%.pgn
@pgn-extract.exe -s -D --totalplycount --fixresulttags -o%pgn%_single.pgn %pgn%_temp.pgn
@del %pgn%_temp.pgn
@pause

Content of the spcc_openings.pgn file :
Image


Check if the CloneWars_2021.exp file can fill some weaknesses in our EXP file :
Image

Image

Image

Image


4 new openings covered !

Re: pgnToEXPv2 (learning from PGN)

Posted: Tue Aug 20, 2024 3:11 pm
by deeds
As the scores added to our EXP file come from an old version of Eman (6.93), we can use a more recent version of Eman (8.40) in order to reinforce them :

Image

Image

Image

Re: pgnToEXPv2 (learning from PGN)

Posted: Fri Aug 23, 2024 3:40 pm
by deeds
Scenario 2 : learning from other learnings...

We filter the games played with Eman :
Image


We create an EXP file from the moves evaluated by Eman :
Image


Stats of the "b50 d7d6.exp" file :
Image

Re: pgnToEXPv2 (learning from PGN)

Posted: Fri Aug 23, 2024 3:41 pm
by deeds
We filter the games played with Eman :
Image


We create an EXP file from the moves evaluated by Eman :
Image


Stats of the "c50 f1c4.exp" file :
Image