Skip to content

Commit

Permalink
remove a few regressors
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Oct 9, 2024
1 parent 27df316 commit 45e2363
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 131 deletions.
2 changes: 1 addition & 1 deletion examples/lazy_booster_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
X = data.data
y= data.target

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = .2, random_state = 123)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = .2, random_state = 13)

clf = ms.LazyBoostingClassifier(verbose=0, ignore_warnings=True, #n_jobs=2,
custom_metric=None, preprocess=False)
Expand Down
36 changes: 0 additions & 36 deletions mlsauce.egg-info/PKG-INFO

This file was deleted.

75 changes: 0 additions & 75 deletions mlsauce.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion mlsauce.egg-info/dependency_links.txt

This file was deleted.

1 change: 0 additions & 1 deletion mlsauce.egg-info/not-zip-safe

This file was deleted.

14 changes: 0 additions & 14 deletions mlsauce.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion mlsauce.egg-info/top_level.txt

This file was deleted.

3 changes: 2 additions & 1 deletion mlsauce/lazybooster/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"HistGradientBoostingRegressor",
"IsotonicRegression",
"MLPRegressor",
# "KernelRidge",
"KernelRidge",
#"MultiOutputRegressor",
#"MultiTaskElasticNet",
"MultiTaskElasticNetCV",
Expand Down Expand Up @@ -58,6 +58,7 @@
and (est[0] not in removed_regressors)
and (est[0][:5] != "Multi")
and (est[0][-2:] != "CV")
and (est[0] not in ("SVR", "HuberRegressor", "LassoLarsIC"))
and is_multitask_estimator(est[1]()) == False
)
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'BSD3 Clause Clear'

__version__ = '0.22.1'
__version__ = '0.22.2'

VERSION = __version__

Expand Down

0 comments on commit 45e2363

Please sign in to comment.