allegroai / clearml

ClearML - Auto-Magical CI/CD to streamline your AI workload. Experiment Management, Data Management, Pipeline, Orchestration, Scheduling & Serving in one MLOps/LLMOps solution

Home Page:https://clear.ml/docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add an option to hide MULTI_NODE_INSTANCE Tasks

tensorpro opened this issue · comments

Proposal Summary

Add a filtering option that can hide MULTI_NODE_INSTANCE tasks.

Motivation

When running a multi node task that runs on several nodes, the dashboard gets filled up with several "MULTI_NODE_INSTANCE" tasks for the same training run. It would be nice to have a way to see just the parent tasks.

Thanks for suggesting @tensorpro. We'll consider how to best accommodate in future versions.

    if int(os.environ['RANK']) > 0:
      task.set_system_tags((task.get_system_tags() or []) + ['hidden'])

Has worked for us