Skip to content

Commit

Permalink
Merge pull request #32 from Alex-Lekov/develop
Browse files Browse the repository at this point in the history
v1.3.7
  • Loading branch information
Alex-Lekov committed Mar 5, 2021
2 parents d47570d + f56fa18 commit a73a170
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).


## [1.3.7]
### Fix
- target encoder in model.opt


## [1.3.6]
### ADD
- add dosc on CV
Expand Down
2 changes: 1 addition & 1 deletion automl_alex/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.6"
__version__ = "1.3.7"
5 changes: 2 additions & 3 deletions automl_alex/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,8 @@ def opt(

self.optimizer = BestSingleModel(
type_of_estimator=self._type_of_estimator,
models_names=[
self.__name__,
],
models_names=[self.__name__],
target_encoders_names=[],
feature_selection=False,
auto_parameters=auto_parameters,
folds=folds,
Expand Down
3 changes: 2 additions & 1 deletion automl_alex/automl_alex.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,8 @@ def fit(
time.sleep(0.1)

self.model_5 = automl_alex.BestSingleModel(
models_names=["LightGBM", "ExtraTrees"],
models_names=["LightGBM", "ExtraTrees", "RandomForest"],
target_encoders_names=["CatBoostEncoder",],
feature_selection=feature_selection,
**params,
)
Expand Down

0 comments on commit a73a170

Please sign in to comment.