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 :
We create an EXP file from the moves evaluated by Eman :
Stats of the CloneWars_2021.exp file :
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 :
Check if the CloneWars_2021.exp file can fill some weaknesses in our EXP file :
4 new openings covered !
Re: pgnToEXPv2 (learning from PGN)
Posted: Tue Aug 20, 2024 3:11 pm
by deeds
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 :
We create an EXP file from the moves evaluated by Eman :
Stats of the "b50 d7d6.exp" file :
Re: pgnToEXPv2 (learning from PGN)
Posted: Fri Aug 23, 2024 3:41 pm
by deeds
We filter the games played with Eman :
We create an EXP file from the moves evaluated by Eman :
Stats of the "c50 f1c4.exp" file :