We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now if running SH with no fidelity parameter available, it will raise this error
super().__init__( pipeline_space=pipeline_space, budget=budget, loss_value_on_error=loss_value_on_error, cost_value_on_error=cost_value_on_error, ignore_errors=ignore_errors, logger=logger, ) if random_interleave_prob < 0 or random_interleave_prob > 1: raise ValueError("random_interleave_prob should be in [0.0, 1.0]") self.random_interleave_prob = random_interleave_prob self.sample_default_first = sample_default_first self.sample_default_at_target = sample_default_at_target > self.min_budget = self.pipeline_space.fidelity.lower E AttributeError: 'NoneType' object has no attribute 'lower'
This is not very descriptive on how to solve the problem. If implementing #119, we can simply check this and emit it in the BaseOptimizer.
BaseOptimizer
Also seems to occur from hyperband_custom_default while not happening for hyperband. Priorband requires it too.
hyperband_custom_default
hyperband
Priorband
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now if running SH with no fidelity parameter available, it will raise this error
This is not very descriptive on how to solve the problem. If implementing #119, we can simply check this and emit it in the
BaseOptimizer
.Also seems to occur from
hyperband_custom_default
while not happening forhyperband
.Priorband
requires it too.The text was updated successfully, but these errors were encountered: