diff --git a/src/recipes/FuseBatchNorm.cpp b/src/recipes/FuseBatchNorm.cpp index e1553fda551795a0b6f0334ccf1dbd3d2b760085..34722c19f8c0fddaffa7357136f1512a027e1617 100644 --- a/src/recipes/FuseBatchNorm.cpp +++ b/src/recipes/FuseBatchNorm.cpp @@ -90,13 +90,13 @@ void Aidge::fuseBatchNorm(std::shared_ptr<Aidge::Node> convNode, meanVariance += b_var.get<float>(outChId); ++count; } else { - fmt::print("Zero-variance: {} [{}]\n", convNode->name(), outChId); + Log::notice("Zero-variance: {} [{}]\n", convNode->name(), outChId); } } if (count > 0) meanVariance /= count; else { - fmt::print("Warning: variance < 1e-12 for all outputs! Is the network correctly trained?\n"); + Log::notice("Warning: variance < 1e-12 for all outputs! Is the network correctly trained?\n"); } // Add bias if it is non existant, as there will be a bias after the fuse