I had problem while running with n_workers=1. self.client is not initialized when the n_workers is 1 as it is not required but self.client is used inside of DEHB.run function without a guard which throws AttributeError: 'NoneType' object has no attribute 'scheduler_info'. I added a check to fix it.
Hello,
I had problem while running with
n_workers=1
.self.client
is not initialized when then_workers
is1
as it is not required butself.client
is used inside ofDEHB.run
function without a guard which throwsAttributeError: 'NoneType' object has no attribute 'scheduler_info'
. I added a check to fix it.