"git@developer.sourcefind.cn:OpenDAS/ollama.git" did not exist on "48702dd149360fbffc83043a3010ae8bc5246809"
Commit fd0de230 authored by Davis King's avatar Davis King
Browse files

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