Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
cerlymarco committed Mar 13, 2022
1 parent 1c00eec commit 8cce34b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kerashypetune/_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def _search(self,
list(self.folds_scores.values()), axis=0).round(5)
evaluate = eval_score(mean_score_params)

self.best_params = [list(f)[evaluate] for f in self.folds_trials.values()]
self.best_params = list(self.folds_trials.values())[0][evaluate]
self.best_params_score = mean_score_params[evaluate]

return self
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

HERE = pathlib.Path(__file__).parent

VERSION = '0.2.0'
VERSION = '0.2.1'
PACKAGE_NAME = 'keras-hypetune'
AUTHOR = 'Marco Cerliani'
AUTHOR_EMAIL = 'cerlymarco@gmail.com'
Expand Down

0 comments on commit 8cce34b

Please sign in to comment.