Reputation
Badges 1
6 × Eureka!To log it using that and see the train loss and other metrics
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")
it gets stuck at the dataloader part before the epochs starts running
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"
...