Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lhallee committed Jan 22, 2024
1 parent 8aa9208 commit c60fb48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "featureranker"
version = "1.1.0"
version = "1.1.1"
description = "Feature ranking ensemble"
authors = ["Logan Hallee <[email protected]>"]
keywords = ["feature, ranker, sklearn"]
Expand Down
2 changes: 1 addition & 1 deletion src/featureranker/rankers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from xgboost import XGBClassifier, XGBRegressor
from tqdm.auto import tqdm

from utils import classification_hyper_param_search, regression_hyper_param_search
from featureranker.utils import classification_hyper_param_search, regression_hyper_param_search


def make_ranking(name, cols, importance):
Expand Down
2 changes: 1 addition & 1 deletion src/featureranker/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from scipy.stats import spearmanr
from sklearn.metrics import make_scorer

from plots import *
from featureranker.plots import *


model_params = {
Expand Down

0 comments on commit c60fb48

Please sign in to comment.