Skip to content

Commit

Permalink
Commented out gradient and objective value debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Jul 8, 2012
1 parent 3da93b3 commit f39aa5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shogun/lib/slep/slep_logistic.cpp
Expand Up @@ -440,7 +440,7 @@ slep_result_t slep_logistic(
}
break;
}
SG_SDEBUG("G=%f\n", SGVector<float64_t>::dot(g,g,n_feats*n_tasks));
//SG_SDEBUG("G=%f\n", SGVector<float64_t>::dot(g,g,n_feats*n_tasks));

fun_s /= n_vecs;

Expand Down Expand Up @@ -572,7 +572,7 @@ slep_result_t slep_logistic(

funcp = func;
func = fun_x + lambda*regularizer;
SG_SDEBUG("Obj = %f + %f * %f = %f \n",fun_x, lambda, regularizer, func);
//SG_SDEBUG("Obj = %f + %f * %f = %f \n",fun_x, lambda, regularizer, func);

if (gradient_break)
break;
Expand Down

0 comments on commit f39aa5c

Please sign in to comment.