mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Relaxed the tests slightly to avoid false alarms in visual studio 2010
This commit is contained in:
parent
ceb71d96e6
commit
bd87998526
@ -34,7 +34,7 @@ namespace
|
||||
|
||||
svm_c_linear_dcd_trainer<kernel_type>::optimizer_state state;
|
||||
|
||||
const double C = 10;
|
||||
const double C = 0.2;
|
||||
linear_trainer.set_epsilon(1e-10);
|
||||
linear_trainer_cpa.set_epsilon(1e-10);
|
||||
|
||||
@ -82,7 +82,7 @@ namespace
|
||||
df2 = linear_trainer_cpa.train(samples, labels);
|
||||
df3 = linear_trainer.train(samples, labels);
|
||||
|
||||
DLIB_TEST( dlib::distance(df.basis_vectors(0), df2.basis_vectors(0)) < 1e-8);
|
||||
DLIB_TEST_MSG( dlib::distance(df.basis_vectors(0), df2.basis_vectors(0)) < 1e-8, dlib::distance(df.basis_vectors(0), df2.basis_vectors(0)));
|
||||
DLIB_TEST( std::abs(df.b - df2.b) < 1e-8);
|
||||
DLIB_TEST( dlib::distance(df.basis_vectors(0), df3.basis_vectors(0)) < 1e-8);
|
||||
DLIB_TEST( std::abs(df.b - df3.b) < 1e-8);
|
||||
@ -106,7 +106,7 @@ namespace
|
||||
|
||||
svm_c_linear_dcd_trainer<kernel_type>::optimizer_state state;
|
||||
|
||||
const double C = 10;
|
||||
const double C = 0.1;
|
||||
linear_trainer.set_epsilon(1e-10);
|
||||
linear_trainer_cpa.set_epsilon(1e-10);
|
||||
|
||||
@ -159,11 +159,11 @@ namespace
|
||||
df2 = linear_trainer_cpa.train(samples, labels);
|
||||
df3 = linear_trainer.train(samples_explict_bias, labels);
|
||||
|
||||
DLIB_TEST( std::abs(df2.basis_vectors(0)(9)) < 1e-8);
|
||||
DLIB_TEST( max(abs(colm(df.basis_vectors(0),0,9) - colm(df2.basis_vectors(0),0,9))) < 1e-8);
|
||||
DLIB_TEST( std::abs(df.basis_vectors(0)(9) - df2.b) < 1e-8);
|
||||
DLIB_TEST( max(abs(df.basis_vectors(0) - df3.basis_vectors(0))) < 1e-8);
|
||||
DLIB_TEST( std::abs(df.b - df3.b) < 1e-8);
|
||||
DLIB_TEST( std::abs(df2.basis_vectors(0)(9)) < 1e-7);
|
||||
DLIB_TEST_MSG( max(abs(colm(df.basis_vectors(0),0,9) - colm(df2.basis_vectors(0),0,9))) < 1e-7, max(abs(colm(df.basis_vectors(0),0,9) - colm(df2.basis_vectors(0),0,9))));
|
||||
DLIB_TEST( std::abs(df.basis_vectors(0)(9) - df2.b) < 1e-7);
|
||||
DLIB_TEST( max(abs(df.basis_vectors(0) - df3.basis_vectors(0))) < 1e-7);
|
||||
DLIB_TEST( std::abs(df.b - df3.b) < 1e-7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -184,7 +184,7 @@ namespace
|
||||
|
||||
svm_c_linear_dcd_trainer<kernel_type>::optimizer_state state;
|
||||
|
||||
const double C = 10;
|
||||
const double C = 3;
|
||||
linear_trainer.set_epsilon(1e-10);
|
||||
linear_trainer_cpa.set_epsilon(1e-10);
|
||||
|
||||
@ -231,10 +231,10 @@ namespace
|
||||
df2 = linear_trainer_cpa.train(samples, labels);
|
||||
df3 = linear_trainer.train(samples, labels);
|
||||
|
||||
DLIB_TEST( max(abs(df.basis_vectors(0) - df2.basis_vectors(0))) < 1e-8);
|
||||
DLIB_TEST( std::abs(df.b - df2.b) < 1e-8);
|
||||
DLIB_TEST( max(abs(df.basis_vectors(0) - df3.basis_vectors(0))) < 1e-8);
|
||||
DLIB_TEST( std::abs(df.b - df3.b) < 1e-8);
|
||||
DLIB_TEST_MSG( max(abs(df.basis_vectors(0) - df2.basis_vectors(0))) < 1e-7, max(abs(df.basis_vectors(0) - df2.basis_vectors(0))));
|
||||
DLIB_TEST( std::abs(df.b - df2.b) < 1e-7);
|
||||
DLIB_TEST( max(abs(df.basis_vectors(0) - df3.basis_vectors(0))) < 1e-7);
|
||||
DLIB_TEST( std::abs(df.b - df3.b) < 1e-7);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -314,7 +314,7 @@ namespace
|
||||
rs.add(labels[k]*df(samples[k]));
|
||||
}
|
||||
}
|
||||
DLIB_TEST(std::abs(rs.min()-1) < 1e-8);
|
||||
DLIB_TEST_MSG(std::abs(rs.min()-1) < 1e-8, std::abs(rs.min()-1));
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user