Skip to content

Commit 85fedc7

Browse files
committed
remove unused dependencies (#800)
1 parent 52e29f2 commit 85fedc7

File tree

9 files changed

+32
-531
lines changed

9 files changed

+32
-531
lines changed

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ matplotlib>=3.2.2
1111
dtreeviz>=2.2.2
1212
shap>=0.42.1
1313
seaborn>=0.11.1
14-
wordcloud>=1.8.1
15-
category_encoders>=2.2.2
1614
optuna-integration>=3.6.0
1715
mljar-scikit-plot>=0.3.11
1816
markdown

supervised/preprocessing/eda.py

Lines changed: 0 additions & 311 deletions
This file was deleted.

supervised/preprocessing/encoding_selector.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class EncodingSelector:
1414

1515
@staticmethod
1616
def get(X, y, column):
17-
# return PreprocessingCategorical.CONVERT_LOO
1817
try:
1918
unique_cnt = len(np.unique(X.loc[~pd.isnull(X[column]), column]))
2019
if unique_cnt <= 20:

supervised/preprocessing/loo_encoder.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

supervised/preprocessing/preprocessing.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,7 @@ def fit_and_transform(self, X_train, y_train, sample_weight=None):
202202

203203
for convert_method in [
204204
PreprocessingCategorical.CONVERT_INTEGER,
205-
PreprocessingCategorical.CONVERT_ONE_HOT,
206-
PreprocessingCategorical.CONVERT_LOO,
205+
PreprocessingCategorical.CONVERT_ONE_HOT
207206
]:
208207
cols_to_process = list(
209208
filter(

0 commit comments

Comments
 (0)