Commit 2c03e133 authored by Davis King's avatar Davis King

Renamed one of the unit tests functions because it was often an

auto-completion based on ctags, which is annoying.
parent 8cb50b44
...@@ -388,14 +388,14 @@ namespace ...@@ -388,14 +388,14 @@ namespace
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
void test_binary_classification ( void unittest_binary_classification (
) )
/*! /*!
ensures ensures
- runs tests on the svm stuff compliance with the specs - runs tests on the svm stuff compliance with the specs
!*/ !*/
{ {
dlog << LINFO << " begin test_binary_classification()"; dlog << LINFO << " begin unittest_binary_classification()";
print_spinner(); print_spinner();
...@@ -526,7 +526,7 @@ namespace ...@@ -526,7 +526,7 @@ namespace
DLIB_TEST_MSG(mean(svm_cv) > 0.9, svm_cv); DLIB_TEST_MSG(mean(svm_cv) > 0.9, svm_cv);
DLIB_TEST(df.basis_vectors.size() <= 19); DLIB_TEST(df.basis_vectors.size() <= 19);
dlog << LINFO << " end test_binary_classification()"; dlog << LINFO << " end unittest_binary_classification()";
} }
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -648,7 +648,7 @@ namespace ...@@ -648,7 +648,7 @@ namespace
) )
{ {
test_kernel_derivative(); test_kernel_derivative();
test_binary_classification(); unittest_binary_classification();
test_clutering(); test_clutering();
test_regression(); test_regression();
test_anomaly_detection(); test_anomaly_detection();
......
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