Skip to content

Commit

Permalink
Merge pull request #18 from ubc-systopia/fix-sklearn-import
Browse files Browse the repository at this point in the history
Fix import statement to work with latest sklearn
  • Loading branch information
margoseltzer authored Jan 21, 2025
2 parents 160af59 + 653e3f7 commit 48d9cc8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gosdt/_threshold_guessing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# External imports
import numpy as np
import pandas as pd
from sklearn.base import BaseEstimator, TransformerMixin, check_X_y
from sklearn.base import BaseEstimator, TransformerMixin
from sklearn.utils import check_X_y
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.utils.validation import check_array, check_is_fitted

Expand Down

0 comments on commit 48d9cc8

Please sign in to comment.