it gets stuck at the dataloader part before the epochs starts running
Hi  @<1549202366266347520:profile|GorgeousMonkey78> , at what point does it get stuck? What happens if you remove the  Task.init  line from the script?
What version of  clearml  are you using? Can you provide a code snippet that reproduces this?
def main(args):
# print( OmegaConf.to _yaml(args))if args.use_clearml:task = Task.init(project_name=args.trainer.project,task_name=args.trainer.description,reuse_last_task_id=False,)
task.connect_configuration(vars(args), name="args_config")
if __name__ == "__main__":_config_path = "configs/yaml_files/akshay/"_config_name = "student"main_wrapper = hydra.main(config_path=_config_path, config_name=_config_name, version_base="1.2")main_wrapper(main)()
if i run it without the Task.init then clearml wont run right? it works fine if i comment out this section for my main codetask = Task.init(project_name=args.trainer.project,task_name=args.trainer.description,reuse_last_task_id=False,)
task.connect_configuration(vars(args), name="args_config")