luinardi / hypermapper

Black-box Optimizer based on Bayesian Optimization
MIT License
155 stars 26 forks source link

Removed lambda functions from param_space due to pickle issue. #63

Closed arturluis closed 3 years ago

arturluis commented 3 years ago

Lambda functions were causing an issue in some setups due to the parallel local search multiprocessing library. The multiprocessing library requires pickling objects, but lambda functions could not be pickled. This fix transforms the lambda functions into regular methods.