Hi there, I am trying to setup clearml to use uv as I am switching from pip to uv. I am now blocked by the following issue: clearml-agent won't pass the args registered when creating the experiment to the Task when running it remotely. I do something like:
print("Arguments:")
for arg in vars(args):
print(f" {arg}: {getattr(args, arg)}")
And I see printed in the logs of the task:
Arguments:
config: None
parent: None
checkpoint: None
model: None
queue: None
Although these values are set in the Config tab of the experiment. Am I missing something?
clearml=2.0.2
clearml-agent=2.0.3
clearml-server=1.15.0
Thanks in advance 🙏