Skip to content

Commit e2bb538

Browse files
committed
increase number of rounds for C exact EBM tests
1 parent 51c04e7 commit e2bb538

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

shared/libebm/tests/boosting_unusual_inputs.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2257,8 +2257,7 @@ TEST_CASE("missing category nominal, boosting, regression") {
22572257
static double RandomizedTesting(const AccelerationFlags acceleration) {
22582258
const IntEbm cTrainSamples = 211; // have some non-SIMD residuals
22592259
const IntEbm cValidationSamples = 101; // have some non-SIMD residuals
2260-
const size_t cRounds = 200;
2261-
// const size_t cRounds = 50000;
2260+
const size_t cRounds = 25000;
22622261

22632262
auto rng = MakeRng(0);
22642263
const std::vector<FeatureTest> features = {
@@ -2402,7 +2401,7 @@ static double RandomizedTesting(const AccelerationFlags acceleration) {
24022401
}
24032402

24042403
TEST_CASE("stress test, boosting") {
2405-
const double expected = -2.4289462940991339e+33;
2404+
const double expected = -2.4268620951807657e+64;
24062405

24072406
double fingerprintExact = RandomizedTesting(AccelerationFlags_NONE);
24082407
if(fingerprintExact != expected) {

0 commit comments

Comments
 (0)