Skip to content

Commit 8b4b796

Browse files
add cross val. and lazy cross val. Pt.2
1 parent b154106 commit 8b4b796

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

12-
__version__ = "0.4.0"
12+
__version__ = "0.4.1"
1313

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

unifiedbooster/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .gbdt import GBDT
22
from .gbdt_classification import GBDTClassifier
33
from .gbdt_regression import GBDTRegressor
4-
from .gpopt import cross_val_optim, lazy_cross_val_optim
4+
from .gpoptimization import cross_val_optim, lazy_cross_val_optim
55

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

0 commit comments

Comments
 (0)