Cleaner and more outputs during training initialization.

This commit is contained in:
Tomasz Sobczyk
2020-10-24 14:21:59 +02:00
committed by nodchip
parent b882423005
commit 2c477d76ec
12 changed files with 129 additions and 94 deletions

View File

@@ -107,7 +107,7 @@ namespace Eval::NNUE {
<< " - " << LayerType::get_name()
<< std::endl;
out << "==> largest min activation = " << largest_min_activation
out << " - largest min activation = " << largest_min_activation
<< " , smallest max activation = " << smallest_max_activation
<< std::endl;

View File

@@ -347,17 +347,17 @@ namespace Eval::NNUE {
<< " - " << LayerType::get_name()
<< std::endl;
out << "==> observed " << observed_features.count()
out << " - observed " << observed_features.count()
<< " (out of " << kInputDimensions << ") features"
<< std::endl;
out << "==> (min, max) of pre-activations = "
out << " - (min, max) of pre-activations = "
<< min_pre_activation_ << ", "
<< max_pre_activation_ << " (limit = "
<< kPreActivationLimit << ")"
<< std::endl;
out << "==> largest min activation = " << largest_min_activation
out << " - largest min activation = " << largest_min_activation
<< " , smallest max activation = " << smallest_max_activation
<< std::endl;