Reputation
Badges 1
10 × Eureka!clearml 1.6.2 clearml-agent 1.3.0 hydra-core 1.1.2
That’s set to false (the default)
Tried it with both parameter naming schemes ( "Hydra/*"
and "General/*"
) but it didn’t work 😕
but sadly when you compare different experiments with different parameters, all the scalar graphs are identical which shouldn’t be the case
Yes, the screenshot is from one of the HPO child tasks
Cool, let me know if I can help in anyway. I can also try mocking up a small example on my side
Yep, looks like that for me as well
Yes, the base task is the same, minus the parameters I’m trying to overwrite with the HPO. Here’s the screenshot from the base task
WebApp: 1.6.0-213 • Server: 1.6.0-213 • API: 2.20
hydra-core 1.1.2
CostlyOstrich36
I’m fully confident at this point that changing parameters on Hydra experiments doesn’t work with clearML. Thus I have reverted to converting Hydra hparams to normal hparams
` @hydra.main(config_path="conf", config_name="config")
def main(config: DictConfig):
task = Task.init(
config.logging.trackerParams.project,
config.logging.trackerParams.experimentName,
)
config = task.connect(OmegaConf.to_container(config)) `which seems to work.
All of thi...