Skip to content

Commit

Permalink
disable inner bags
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Dec 26, 2024
1 parent b73c830 commit 481b449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/libebm/tests/boosting_unusual_inputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2114,7 +2114,7 @@ static double RandomizedTesting(const AccelerationFlags acceleration) {
}
const auto train = MakeRandomDataset(rng, classesCount, cTrainSamples, features);
const auto validation = MakeRandomDataset(rng, classesCount, cValidationSamples, features);
for(IntEbm innerBagCount = 0; innerBagCount < 3; ++innerBagCount) {
for(IntEbm innerBagCount = 0; innerBagCount < 1; ++innerBagCount) {
TestBoost test = TestBoost(classesCount,
features,
terms,
Expand Down

0 comments on commit 481b449

Please sign in to comment.