Minor adjustments to avoid false alarms in cca test.

This commit is contained in:
Davis King 2017-07-29 05:51:59 -04:00
parent 968818748a
commit 3faaa0b865
1 changed files with 4 additions and 4 deletions

View File

@ -236,7 +236,7 @@ namespace
// non-matching pairs of projections.
const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans))));
dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error;
DLIB_TEST(std::abs(corr_rot1_error) < 1e-10);
DLIB_TEST(std::abs(corr_rot1_error) < 2e-9);
}
// Matching projection directions should be correlated with the amount of
// correlation indicated by the return value of cca().
@ -246,7 +246,7 @@ namespace
const double trans_error = max(abs(L*Ltrans - R*Rtrans));
dlog << LINFO << "trans_error: "<< trans_error;
DLIB_TEST(trans_error < 1e-10);
DLIB_TEST(trans_error < 2e-9);
dlog << LINFO << "correlations: "<< trans(correlations);
}
@ -259,7 +259,7 @@ namespace
// non-matching pairs of projections.
const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans))));
dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error;
DLIB_TEST(std::abs(corr_rot1_error) < 1e-10);
DLIB_TEST(std::abs(corr_rot1_error) < 2e-9);
}
// Matching projection directions should be correlated with the amount of
// correlation indicated by the return value of cca().
@ -269,7 +269,7 @@ namespace
const double trans_error = max(abs(L*Ltrans - R*Rtrans));
dlog << LINFO << "trans_error: "<< trans_error;
DLIB_TEST(trans_error < 1e-9);
DLIB_TEST(trans_error < 2e-9);
dlog << LINFO << "correlations: "<< trans(correlations);
}