Skip to content

Commit

Permalink
fix ENet regressor Pt.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Apr 27, 2024
1 parent 7ab5328 commit ee8e2b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mlsauce/elasticnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from .enet import ElasticNetRegressor
try:
from .enet import ElasticNetRegressor
except ImportError:
pass

__all__ = ["ElasticNetRegressor"]
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def setup_package():
"numpy",
"Cython",
"joblib",
"matplotlib",
"pandas",
"requests",
"scikit-learn",
Expand Down

0 comments on commit ee8e2b6

Please sign in to comment.