From 9f7f9c179827ff048527990b0ca0f720651f8226 Mon Sep 17 00:00:00 2001 From: Jannis Becktepe Date: Fri, 11 Oct 2024 12:13:33 +0200 Subject: [PATCH] fix: Keyword arguments for Info in HyperPBT --- hydra_plugins/hyper_rs/hyper_rs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra_plugins/hyper_rs/hyper_rs.py b/hydra_plugins/hyper_rs/hyper_rs.py index 2c08b9e..788c539 100644 --- a/hydra_plugins/hyper_rs/hyper_rs.py +++ b/hydra_plugins/hyper_rs/hyper_rs.py @@ -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):