mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 07:27:46 +00:00
Force Use NNUE to pure when learning.
This commit is contained in:
+3
-1
@@ -1685,7 +1685,6 @@ namespace Learner
|
|||||||
else if (option == "seed") is >> seed;
|
else if (option == "seed") is >> seed;
|
||||||
else if (option == "set_recommended_uci_options")
|
else if (option == "set_recommended_uci_options")
|
||||||
{
|
{
|
||||||
UCI::setoption("Use NNUE", "pure");
|
|
||||||
UCI::setoption("MultiPV", "1");
|
UCI::setoption("MultiPV", "1");
|
||||||
UCI::setoption("Contempt", "0");
|
UCI::setoption("Contempt", "0");
|
||||||
UCI::setoption("Skill Level", "20");
|
UCI::setoption("Skill Level", "20");
|
||||||
@@ -1907,6 +1906,9 @@ namespace Learner
|
|||||||
sr.read_validation_set(validation_set_file_name, eval_limit);
|
sr.read_validation_set(validation_set_file_name, eval_limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cout << "Forcing Use NNUE pure.\n";
|
||||||
|
UCI::setoption("Use NNUE", "pure");
|
||||||
|
|
||||||
Eval::NNUE::verify_any_net_loaded();
|
Eval::NNUE::verify_any_net_loaded();
|
||||||
|
|
||||||
// Calculate rmse once at this point (timing of 0 sfen)
|
// Calculate rmse once at this point (timing of 0 sfen)
|
||||||
|
|||||||
Reference in New Issue
Block a user