Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust default MLH settings and unhide options for next release. #1328

Merged
merged 32 commits into from
Jun 28, 2020
Merged
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
58d97b0
Merge pull request #1 from LeelaChessZero/master
AlexisOlson Apr 18, 2020
3667427
Merge pull request #3 from LeelaChessZero/master
AlexisOlson Apr 22, 2020
849b97c
Time management refactoring (#1195)
mooskagh Apr 23, 2020
6ff9bd0
MLH verbose stats - Issue 1200 (#1230)
AlexisOlson Apr 23, 2020
67b2e84
Start TempDecay only after a given number of moves (#1212)
Naphthalin Apr 23, 2020
5ce0f35
Changelog for 0.25.0-rc2. (#1233)
Tilps Apr 24, 2020
efec1e5
Cuda winograd (#1228)
ankan-ban Apr 24, 2020
de035f5
cuda winograd fixes (#1238)
ankan-ban Apr 26, 2020
1f81b79
Allow most parts of fen to be optional. (#1234)
Mardak Apr 28, 2020
312d0f5
Fix UpdateNps to actually smooth the nps and correctly handle time_si…
Tilps Apr 28, 2020
af5be39
Update changelog for 0.25.0 final release. (#1244)
Tilps Apr 28, 2020
558a378
Always report at least 1 depth. (#1247)
Mardak Apr 28, 2020
2942289
Fix un-intended regression for GTX GPUs (#1246)
ankan-ban Apr 29, 2020
ef1d1b7
memory optimization for cudnn custom_winograd (#1250)
ankan-ban Apr 30, 2020
3634dad
keep pdb files only for release builds (#1256)
borg323 May 3, 2020
64884f5
doc update (#1267)
borg323 May 5, 2020
ac6d920
Include verbose stats for the node. (#1268)
Mardak May 6, 2020
d98eceb
add alphazero time manager (#1201)
MelleKoning May 8, 2020
0123e8e
Updated FLAGS.md with logfile flag (#1275)
KipHamiltons May 8, 2020
eac826c
Fixed a typo in CONTRIBUTING.md (#1274)
KipHamiltons May 8, 2020
5304394
Update Readme about using git (#1265)
nguyenpham May 9, 2020
9a1ca2a
Make `wl_` double. (#1280)
mooskagh May 9, 2020
d5c9328
Move move filter population to a constructor. (#1281)
mooskagh May 9, 2020
d18ba0f
Filter out illegal searchmoves to avoid crashing. (#1282)
Mardak May 10, 2020
9563aba
Clear policy for terminal loss. (#1285)
Tilps May 10, 2020
8573f15
Allow smart pruning to terminate search if win is known. (#1284)
Tilps May 10, 2020
d7c5d5e
Fix bug where pv might not update for best move change. (#1286)
Tilps May 10, 2020
0faab00
Catch up to master (#6)
AlexisOlson May 10, 2020
d086d97
Merge pull request #7 from LeelaChessZero/master
AlexisOlson May 10, 2020
f5783d0
Merge pull request #9 from LeelaChessZero/master
AlexisOlson Jun 4, 2020
828d200
Change defaults and unhide MLH options
AlexisOlson Jun 4, 2020
73c5a41
Update values per @Naphthalin's comments
AlexisOlson Jun 24, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/mcts/params.cc
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,10 @@ void SearchParams::Populate(OptionsParser* options) {
options->Add<ChoiceOption>(kHistoryFillId, history_fill_opt) = "fen_only";
options->Add<FloatOption>(kMovesLeftMaxEffectId, 0.0f, 1.0f) = 0.0f;
AlexisOlson marked this conversation as resolved.
Show resolved Hide resolved
options->Add<FloatOption>(kMovesLeftThresholdId, 0.0f, 1.0f) = 1.0f;
options->Add<FloatOption>(kMovesLeftSlopeId, 0.0f, 1.0f) = 0.001f;
options->Add<FloatOption>(kMovesLeftConstantFactorId, -1.0f, 1.0f) = 1.0f;
options->Add<FloatOption>(kMovesLeftSlopeId, 0.0f, 1.0f) = 0.015f;
AlexisOlson marked this conversation as resolved.
Show resolved Hide resolved
options->Add<FloatOption>(kMovesLeftConstantFactorId, -1.0f, 1.0f) = 0.0f;
options->Add<FloatOption>(kMovesLeftScaledFactorId, -1.0f, 1.0f) = 0.0f;
options->Add<FloatOption>(kMovesLeftQuadraticFactorId, -1.0f, 1.0f) = 0.0f;
options->Add<FloatOption>(kMovesLeftQuadraticFactorId, -1.0f, 1.0f) = 1.0f;
options->Add<BoolOption>(kDisplayCacheUsageId) = false;
options->Add<IntOption>(kMaxConcurrentSearchersId, 0, 128) = 1;
options->Add<IntOption>(kDrawScoreSidetomoveId, -100, 100) = 0;
Expand All @@ -337,9 +337,6 @@ void SearchParams::Populate(OptionsParser* options) {
options->HideOption(kTemperatureEndgameId);
options->HideOption(kTemperatureWinpctCutoffId);
options->HideOption(kTemperatureVisitOffsetId);
options->HideOption(kMovesLeftConstantFactorId);
options->HideOption(kMovesLeftScaledFactorId);
options->HideOption(kMovesLeftQuadraticFactorId);
}

SearchParams::SearchParams(const OptionsDict& options)
Expand Down