diff --git a/src/loss_function/LossFunctionPearsonRMSE.cpp b/src/loss_function/LossFunctionPearsonRMSE.cpp
index 820b48ac8545cf993b49cb18147b1e61acf1a4e6..387a3f2e3103e2725f60a365e3545f878e47d074 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);
 }