Skip to content

Commit

Permalink
fix some test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
icfaust committed Sep 2, 2024
1 parent e08f503 commit db660a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daal4py/sklearn/ensemble/GBTDAAL.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def fit(self, X, y):
# Return the classifier
return self

def _predict(self, X, resultsToEvaluate, pred_contribs, pred_interactions):
def _predict(self, X, resultsToEvaluate, pred_contrib=False, pred_interactions=False):
# Input validation
if not self.allow_nan_:
X = check_array(X, dtype=[np.single, np.double])
Expand Down

0 comments on commit db660a6

Please sign in to comment.