Error when creating shared memory
SimonBlanke opened this issue · 1 comments
SimonBlanke commented
There is a bug in the creation of the shared memory when adding the same objective-function multiple times to the search:
hyper = Hyperactive()
hyper.add_search(model, search_space, n_iter=100, n_jobs=1, memory="share")
hyper.add_search(model, search_space, n_iter=100, n_jobs=1, memory="share")
hyper.add_search(model, search_space, n_iter=100, n_jobs=1, memory="share")
hyper.run()
SimonBlanke commented
Fixed in 0841239