You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
I read methods/bayesian_optimization.py and find the objective is defined as self.objective = SingleObjective(self.f, self.batch_size, self.funct_name). And I believe it should be changed into self.objective = SingleObjective(self.f, self.num_cores, self.funct_name). Otherwise, the num_cores parameter would be useless.
The text was updated successfully, but these errors were encountered:
The original code in methods/bayesian_optimization.py self.num_cores = num_cores if f is not None: self.f = self._sign(f) self.objective = SingleObjective(self.f, self.batch_size,self.objective_name) else: self.f = None self.objective = None
I believe the code should be changed into: self.num_cores = num_cores if f is not None: self.f = self._sign(f) self.objective = SingleObjective(self.f, self.num_cores,self.objective_name) else: self.f = None self.objective = None
I read methods/bayesian_optimization.py and find the objective is defined as self.objective = SingleObjective(self.f, self.batch_size, self.funct_name). And I believe it should be changed into self.objective = SingleObjective(self.f, self.num_cores, self.funct_name). Otherwise, the num_cores parameter would be useless.
The text was updated successfully, but these errors were encountered: