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
https://clear.ml/docs
Apache License 2.0
5.61k stars 651 forks source link

WebUI not displaying metrics properly #1111

Closed xquyvu closed 10 months ago

xquyvu commented 1 year ago

Describe the bug

WebUI is not showing all scalars when there are many metrics. As you can see in the screenshot, my horizontal scrollbar is scrolled all the way to the left. The metrics can be seen if I export them to csv.

image

To reproduce

logger = task.get_logger()

for _ in range(20):
    logger.report_single_value('very very long metric', 0.00000000000000009)

Expected behaviour

I should be able to scroll all the way to the left to see all metrics.

Environment

xquyvu commented 1 year ago

Slightly related to this, the parallel coordinates chart also struggles with long metric names

image

ainoam commented 1 year ago

Thanks for reporting @xquyvu

Hope to have a fix out soon.

pollfly commented 10 months ago

Hey @xquyvu! Just letting you know that both of these issues have been resolved in the recently released clearml-server 1.13.0. Let us know if there are any issues :)

xquyvu commented 10 months ago

awesome, thanks, it's working for me :)