0.6.1
This is a minor release that fixes a couple of bugs and adds some minor options.
Features:
- Added the parameter
generations
toDeltaThreshold
. Now it compares the maximum and minimum values of a metric from the last generations, instead of just the current and previous ones. The default value is 2, so the behavior remains the same as in previous versions.
Bug Fixes:
- When a param_grid of length 1 is provided, a user warning is raised instead of an error. Internally it will swap the crossover operation to use the DEAP's
tools.cxSimulatedBinaryBounded
. - When using
Continuous
class with boundarieslower
andupper
, a uniform distribution with limits[lower, lower + upper]
was sampled, now, it's properly sampled using a[lower, upper]
limit.