Commit 23332d68 authored by Davis King's avatar Davis King

More logging messages

parent 334ba38e
...@@ -294,6 +294,8 @@ namespace ...@@ -294,6 +294,8 @@ namespace
dlog << LINFO << "*******************************************************"; dlog << LINFO << "*******************************************************";
dlog << LINFO << "alpha: " << trans(alpha);
dlog << LINFO << "lambda: " << trans(lambda);
dlog << LINFO << "w: " << trans(w); dlog << LINFO << "w: " << trans(w);
...@@ -306,6 +308,8 @@ namespace ...@@ -306,6 +308,8 @@ namespace
DLIB_TEST_MSG(abs(computed_obj - true_obj) < 1e-8, DLIB_TEST_MSG(abs(computed_obj - true_obj) < 1e-8,
"computed_obj: "<< computed_obj << " true_obj: " << true_obj << " delta: "<< abs(computed_obj - true_obj) "computed_obj: "<< computed_obj << " true_obj: " << true_obj << " delta: "<< abs(computed_obj - true_obj)
<< " iters: " << iters << " iters: " << iters
<< "\n alpha: " << trans(alpha)
<< " lambda: " << trans(lambda)
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment