Skip to content

Releases: timzatko/Sklearn-Nature-Inspired-Algorithms

Release v0.2.2

16 May 14:58
Compare
Choose a tag to compare
  • bug fixes

Release v0.2.1

16 May 14:12
Compare
Choose a tag to compare
  • added support to select metric (min, max, median, mean) in score_by_generation_lineplot

Release v0.2.0

16 May 12:03
Compare
Choose a tag to compare
  • 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 progress
    from 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

13 May 19:35
Compare
Choose a tag to compare
Bump version to v0.1.1

Release v0.1.0

13 May 17:07
Compare
Choose a tag to compare
Implement CI publish step