From 20e41d609d0f4a4a336eca895685460ab5e3936f Mon Sep 17 00:00:00 2001 From: Thomas <purcell@fhi-berlin.mpg.de> Date: Mon, 5 Jul 2021 06:46:40 +0200 Subject: [PATCH] Remove test print lines removed cout lines in project --- src/loss_function/LossFunctionPearsonRMSE.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/loss_function/LossFunctionPearsonRMSE.cpp b/src/loss_function/LossFunctionPearsonRMSE.cpp index 820b48ac..387a3f2e 100644 --- a/src/loss_function/LossFunctionPearsonRMSE.cpp +++ b/src/loss_function/LossFunctionPearsonRMSE.cpp @@ -115,7 +115,6 @@ double LossFunctionPearsonRMSE::project(const node_ptr& feat) double LossFunctionPearsonRMSE::calc_max_pearson(double* feat_val_ptr) { - std::cout << "TEST IN" << std::endl; int start = 0; for(int tt = 0; tt < _task_sizes_train.size(); ++tt) { @@ -145,7 +144,6 @@ double LossFunctionPearsonRMSE::calc_max_pearson(double* feat_val_ptr) start += _task_sizes_train[tt]; } - std::cout << "TEST OUT" << std::endl; return *std::max_element(_scores.begin(), _scores.end()) / static_cast<double>(-1 * _n_task); } -- GitLab