Skip to content

Commit

Permalink
removed local import
Browse files Browse the repository at this point in the history
  • Loading branch information
lhallee committed Oct 23, 2024
1 parent 64e0877 commit d3c53d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/classification_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -293,7 +293,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.11"
"version": "3.11.9"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion src/featureranker/rankers.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from sklearn.svm import l1_min_c
from xgboost import XGBClassifier, XGBRegressor

from .utils import (
from featureranker.utils import (
classification_hyper_param_search,
regression_hyper_param_search,
)
Expand Down
2 changes: 1 addition & 1 deletion src/featureranker/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from scipy.stats import spearmanr
from skopt import BayesSearchCV

from .plots import plot_confusion_matrix, plot_correlations
from featureranker.plots import plot_confusion_matrix, plot_correlations


model_params = {
Expand Down

0 comments on commit d3c53d1

Please sign in to comment.