Update folding library and test result due to change in random engine

This commit is contained in:
2024-04-05 19:17:53 +02:00
parent a1f9086780
commit df45fddd45
4 changed files with 5 additions and 5 deletions

View File

@@ -115,8 +115,8 @@ TEST_CASE("BoostAODE test used features in train note and score", "[Models]")
REQUIRE(clf.getNotes()[1] == "Number of models: 8");
auto score = clf.score(raw.Xv, raw.yv);
auto scoret = clf.score(raw.Xt, raw.yt);
REQUIRE(score == Catch::Approx(0.82031).epsilon(raw.epsilon));
REQUIRE(scoret == Catch::Approx(0.82031).epsilon(raw.epsilon));
REQUIRE(score == Catch::Approx(0.80078).epsilon(raw.epsilon));
REQUIRE(scoret == Catch::Approx(0.80078).epsilon(raw.epsilon));
}
TEST_CASE("Model predict_proba", "[Models]")
{