Skip to content

Commit

Permalink
disable pairs except for (0,1)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Dec 26, 2024
1 parent 7d2323c commit b73c830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/libebm/tests/boosting_unusual_inputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2078,10 +2078,10 @@ static double RandomizedTesting(const AccelerationFlags acceleration) {
FeatureTest(10, true, true, true),
};
auto terms = MakeMains(features);
terms.push_back({0, 0});
//terms.push_back({0, 0});
if(2 <= features.size()) {
terms.push_back({0, 1});
terms.push_back({1, 0});
//terms.push_back({1, 0});
}
if(3 <= features.size()) {
// terms.push_back({0, 1, 2}); // TODO: enable when fast enough
Expand Down

0 comments on commit b73c830

Please sign in to comment.