Skip to content

Commit 901d913

Browse files
authored
Merge pull request #21 from Alex-Lekov/develop
1.01.11
2 parents 811c64a + d188a75 commit 901d913

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [1.01.11]
8+
9+
### Fix
10+
- score_cv_folds fix in ModelsReview
11+
- normalization
12+
13+
714
## [0.11.24]
815

916
### ADD

automl_alex/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.11.24"
1+
__version__ = "1.01.11"

automl_alex/automl_alex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def fit(self,
149149
# Model
150150
model_tmp = all_models[model_name](databunch=self._data,
151151
cv=self._cv,
152-
score_cv_folds = self._cv,
152+
score_cv_folds = self._score_cv_folds,
153153
metric=self.metric,
154154
direction=self.direction,
155155
metric_round=self._metric_round,

automl_alex/models/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ def __init__(self,
114114
num_generator_features=num_generator_features,
115115
group_generator_features=group_generator_features,
116116
frequency_enc_num_features=frequency_enc_num_features,
117+
normalization=normalization,
117118
verbose=verbose,
118119
random_state=random_state,)
119120
else:

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
numpy>=1.18.1
1+
numpy>=1.18.5
22
pandas>=1.0.1
33
scikit-learn>=0.21.0
44
seaborn
5-
lightgbm>=2.3.1
6-
catboost>=0.22
7-
xgboost>=1.0.2
5+
lightgbm>=3.0.0
6+
catboost>=0.24.3
7+
xgboost>=1.3.0
88
scipy>=1.4.1
99
tqdm>=4.43.0
10-
optuna>=1.3.0
10+
optuna>=2.3.0
1111
category-encoders>=2.2.2
1212
patsy>=0.5.1
1313
statsmodels>=0.11.1

0 commit comments

Comments
 (0)