Skip to content

Commit

Permalink
add cross val. and lazy cross val. Pt.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Aug 4, 2024
1 parent b154106 commit 8b4b796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

subprocess.check_call(['pip', 'install', 'Cython'])

__version__ = "0.4.0"
__version__ = "0.4.1"

here = path.abspath(path.dirname(__file__))

Expand Down
2 changes: 1 addition & 1 deletion unifiedbooster/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .gbdt import GBDT
from .gbdt_classification import GBDTClassifier
from .gbdt_regression import GBDTRegressor
from .gpopt import cross_val_optim, lazy_cross_val_optim
from .gpoptimization import cross_val_optim, lazy_cross_val_optim

__all__ = ["GBDT", "GBDTClassifier", "GBDTRegressor",
"cross_val_optim", "lazy_cross_val_optim"]

0 comments on commit 8b4b796

Please sign in to comment.