Skip to content

Commit

Permalink
Remoce unecessary package
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lemaitre committed Jul 5, 2016
1 parent fa91ee1 commit 5685f15
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 17 deletions.
2 changes: 0 additions & 2 deletions imblearn/combine/smote_enn.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
from __future__ import print_function
from __future__ import division

from sklearn.utils import check_X_y

from ..over_sampling import SMOTE
from ..under_sampling import EditedNearestNeighbours
from ..base import SamplerMixin
Expand Down
2 changes: 0 additions & 2 deletions imblearn/combine/smote_tomek.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
from __future__ import print_function
from __future__ import division

from sklearn.utils import check_X_y

from ..over_sampling import SMOTE
from ..under_sampling import TomekLinks
from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/ensemble/balance_cascade.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import numpy as np

from sklearn.utils import check_X_y
from sklearn.utils import check_random_state

from ..base import SamplerMixin
Expand Down
2 changes: 0 additions & 2 deletions imblearn/ensemble/easy_ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

import numpy as np

from sklearn.utils import check_X_y

from ..base import SamplerMixin
from ..under_sampling import RandomUnderSampler

Expand Down
1 change: 0 additions & 1 deletion imblearn/over_sampling/adasyn.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from sklearn.neighbors import NearestNeighbors
from sklearn.utils import check_random_state
from sklearn.utils import check_X_y

from ..base import SamplerMixin

Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/cluster_centroids.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from collections import Counter

from sklearn.cluster import KMeans
from sklearn.utils import check_X_y
from sklearn.utils import check_random_state

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/condensed_nearest_neighbour.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

from collections import Counter

from sklearn.utils import check_X_y
from sklearn.utils import check_random_state
from sklearn.neighbors import KNeighborsClassifier

Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/edited_nearest_neighbours.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from scipy.stats import mode

from sklearn.utils import check_X_y
from sklearn.neighbors import NearestNeighbors

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/instance_hardness_threshold.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

from collections import Counter

from sklearn.utils import check_X_y
from sklearn.cross_validation import StratifiedKFold

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/nearmiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from collections import Counter

from sklearn.utils import check_X_y
from sklearn.neighbors import NearestNeighbors

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/neighbourhood_cleaning_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from collections import Counter

from sklearn.neighbors import NearestNeighbors
from sklearn.utils import check_X_y

from ..base import SamplerMixin

Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/one_sided_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from sklearn.neighbors import KNeighborsClassifier
from sklearn.neighbors import NearestNeighbors
from sklearn.utils import check_X_y
from sklearn.utils import check_random_state

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/random_under_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from collections import Counter

from sklearn.utils import check_X_y
from sklearn.utils import check_random_state

from ..base import SamplerMixin
Expand Down
1 change: 0 additions & 1 deletion imblearn/under_sampling/tomek_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from collections import Counter

from sklearn.neighbors import NearestNeighbors
from sklearn.utils import check_X_y

from ..base import SamplerMixin

Expand Down

0 comments on commit 5685f15

Please sign in to comment.