ClearML - Auto-Magical CI/CD to streamline your AI workload. Experiment Management, Data Management, Pipeline, Orchestration, Scheduling & Serving in one MLOps/LLMOps solution
Hello, i want make combined plot of 2 metrics, for example train/valid.
How to do it during training I understand, you need to add logging for one title
logger.report_scalar(title="unified graph", series="series A", iteration=i, value=1. / (i + 1))
logger.report_scalar(title="unified graph", series="series B", iteration=i, value=10. / (i + 1))
But how to combine graphs simply by selecting them in the interface? Is there such a possibility, because it is not possible to integrate this into training
@lolpa1n Combining arbitrary scalar plots is not currently available, but we'll definitely consider adding this when the opportunity presents itself :)
Hello, i want make combined plot of 2 metrics, for example train/valid.
How to do it during training I understand, you need to add logging for one title
But how to combine graphs simply by selecting them in the interface? Is there such a possibility, because it is not possible to integrate this into training