Releases: timzatko/Sklearn-Nature-Inspired-Algorithms
Releases · timzatko/Sklearn-Nature-Inspired-Algorithms
Release v0.2.2
- bug fixes
Release v0.2.1
- added support to select metric (
min
,max
,median
,mean
) inscore_by_generation_lineplot
Release v0.2.0
- changed default option values for
NatureInspiredSearchCV
, the new defaults are:algorithm
=ba
population_size
=15
max_n_gen
=25
max_stagnating_gen
=2
- new helper methods
score_by_generation_violinplot
,score_by_generation_lineplot
for plotting the search progressfrom sklearn_nature_inspired_algorithms.model_selection import NatureInspiredSearchCV from sklearn_nature_inspired_algorithms.helpers import score_by_generation_violinplot nia_search = NatureInspiredSearchCV(clf, param_grid) score_by_generation_violinplot(nia_search)
Release v0.1.1
Bump version to v0.1.1
Release v0.1.0
Implement CI publish step