Print an additional new line before calc_loss progress instead of after check_health in the feature transformer layer.

This commit is contained in:
Tomasz Sobczyk
2020-10-24 11:42:30 +02:00
committed by nodchip
parent d70408f204
commit 8ddef320e6
2 changed files with 3 additions and 2 deletions

View File

@@ -677,7 +677,8 @@ namespace Learner
TT.new_search();
TimePoint elapsed = now() - Search::Limits.startTime + 1;
cout << "PROGRESS: " << now_string() << ", ";
cout << "\n";
cout << "PROGRESS (calc_loss): " << now_string() << ", ";
cout << total_done << " sfens, ";
cout << total_done * 1000 / elapsed << " sfens/second";
cout << ", iteration " << epoch;

View File

@@ -349,7 +349,7 @@ namespace Eval::NNUE {
std::cout << "INFO: largest min activation = " << largest_min_activation
<< ", smallest max activation = " << smallest_max_activation
<< std::endl << std::endl;
<< std::endl;
std::fill(std::begin(min_activations_), std::end(min_activations_),
std::numeric_limits<LearnFloatType>::max());