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

This commit is contained in:
Ricardo Montañana Gómez 2024-04-05 19:17:53 +02:00
parent a1f9086780
commit df45fddd45
Signed by: rmontanana
GPG Key ID: 46064262FD9A7ADE
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 8ac8190e494a381072c89f5e161b92a08d98b37b
Subproject commit bff6e35e2b239217f3940ed52429f94b745adc50

@ -1 +1 @@
Subproject commit 37316a54e0d558555ae02ae95c8bb083ec063874
Subproject commit 71d6055be4488cf2e6443123ae8fc4a63ae289dc

@ -1 +1 @@
Subproject commit 0457de21cffb298c22b629e538036bfeb96130b7
Subproject commit 199dea11b17c533721b26249e2dcaee6ca1d51d3

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]")
{