CostlyOstrich36 I already set allow_omegaconf_edit to true, and I could edit the hydra conf in the UI when cloning the original task, but now I want to update it in the code for hyperparam optimization
YummyLion54 hi!
are you referring to PARAMETERS
section OR to the CONFIGURATION OBJECTS
YummyLion54 , please try the following:
` from clearml import Task
base_task = Task.get_task(task_id="base task id")
cloned_task = Task.clone(source_task=base_task)
cloned_task.connect_configuration(name="OmegaConf", configuration="path/to/conf/file") `