gmontamat / gentun

Hyperparameter tuning for machine learning models using a distributed genetic algorithm
Apache License 2.0
83 stars 22 forks source link

Fix issues with Russian Roulette selection #4

Closed gmontamat closed 6 years ago

gmontamat commented 6 years ago

Crossover and mutation where affecting all individuals since they were sharing the genes. The copy method was implemented to fix this. In the future, it may be a good idea to implement copy and deepcopy but the current method works well.