Ferdinand Mosca
Ferdinand Mosca
I have difficulty following the description of TPESampler. But one thing that I am interested to know is if the sampler repeats suggesting the same param values. Based from my...
I also observed that in SkoptSampler with `considered_pruned_trials=True`, the param of pruned trial is repeated. So there must be something with this `considered_pruned_trials`.
> In order to make a leaderboard, wouldn't we need to have some sort of way to compare each players score against each others? These all seem independent and related...
I will consider it. - [x] Support interrupt/resume. * Read the output file and save the game headers that are already there. * If the game that is about to...
The r50 is of unsigned type and it is printed in hex. b.r50 contains a correct value. Example: ```julia julia> b = startboard(); julia> domoves!(b, "d4", "Nf6"); julia> b Board...
I understand that, when you create a game from fen like below, `gm2 = SimpleGame("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 4 3")` the r50 is wrong currently as it is not implemented...
The r50 is one of the fields of the Board. The board is created from the input fen/epd/startfen string at `fromfen()`, looks like the r50 in the board has to...
I believe this package does not support crazyhouse variant. It is better to just skip parsing crazyhouse variant games. Sample code to skip a crazyhouse game. ```julia using Chess using...
Your are right, there is an error.
I have a commit to fix this issue at https://github.com/fsmosca/fastchess/commit/9a0a6631457093f361b9a15b012eecc7dffbd1fe Do you want me to submit a pull request?