Commit fd0de230 authored by Davis King's avatar Davis King

Fixing incorrect print statement.

parent 69839d40
...@@ -399,7 +399,7 @@ namespace dlib ...@@ -399,7 +399,7 @@ namespace dlib
if (use_regression_loss) if (use_regression_loss)
cout << "LOO Mean Squared Error: " << best_looe << endl; cout << "LOO Mean Squared Error: " << best_looe << endl;
else else
cout << "LOO Classification Accuracy: " << best_looe << endl; cout << "LOO Classification Error: " << best_looe << endl;
} }
// convert w into a proper decision function // convert w into a proper decision function
......
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