From 45c048f6355e412ada3abd2e822be6d92720754d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Thu, 21 Mar 2024 11:23:41 +0100 Subject: [PATCH] Add initial models to log --- bayesnet/ensembles/BoostAODE.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bayesnet/ensembles/BoostAODE.cc b/bayesnet/ensembles/BoostAODE.cc index 1bb0ad1..e4df61d 100644 --- a/bayesnet/ensembles/BoostAODE.cc +++ b/bayesnet/ensembles/BoostAODE.cc @@ -194,6 +194,11 @@ namespace bayesnet { if (finished) { return; } + LOG_F(INFO, "Initial models: %d", n_models); + LOG_F(INFO, "Significances: "); + for (int i = 0; i < n_models; ++i) { + LOG_F(INFO, "i=%d significance=%f", i, significanceModels[i]); + } } int numItemsPack = 0; // The counter of the models inserted in the current pack // Variables to control the accuracy finish condition