Skip to content

Commit

Permalink
fix: Keyword arguments for Info in HyperPBT
Browse files Browse the repository at this point in the history
  • Loading branch information
becktepe committed Oct 11, 2024
1 parent 482cbae commit 9f7f9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydra_plugins/hyper_rs/hyper_rs.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, configspace) -> None:
def ask(self):
"""Randomly sample a configuration."""
config = self.configspace.sample_configuration()
info = Info(config, None, None, None)
info = Info(config=config, budget=None, load_path=None, seed=None)
return info, False

def tell(self, info, value):
Expand Down

0 comments on commit 9f7f9c1

Please sign in to comment.