From 481dd67a1ebd34e8521b20e690fd1c2c62a7a563 Mon Sep 17 00:00:00 2001 From: Shubham Agrawal Date: Fri, 10 Jun 2022 18:35:47 +0530 Subject: [PATCH] size issue logs --- src/mlpack/methods/ann/layer/lambda_map_reduce_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/ann/layer/lambda_map_reduce_impl.hpp b/src/mlpack/methods/ann/layer/lambda_map_reduce_impl.hpp index 17be6b3eaa..cb918b1a40 100644 --- a/src/mlpack/methods/ann/layer/lambda_map_reduce_impl.hpp +++ b/src/mlpack/methods/ann/layer/lambda_map_reduce_impl.hpp @@ -301,7 +301,7 @@ void LambdaMapReduceType::ComputeOutputDimensions() { network[i]->InputDimensions() = this->inputDimensions; size_t layerOutputSize = network[i]->OutputSize(); - Log::Info << layerOutputSize << std::endl; + Log::Warn << layerOutputSize << std::endl; totalOutputSize += layerOutputSize; }