A task can also have plots - for example 2d scatter plots and histograms
It should be possible somehow, as they are attached to the Task and displayed in the Task's results tab
To my mind, 'data programmatically' means using python and the functions inside the Task item to get this, but I suspect this is not what you mean ?
scalars are only some of the results a Task can have
hello Emanuel 👋
I assume you are going to use python, in which case, inside each ClearML Task there is a method called get_reported_scalars that should have all the data I think.
you may want to read the warning at https://allegro.ai/clearml/docs/rst/references/clearml_python_ref/task_module/task_task.html#clearml.task.Task.get_reported_scalars on this.. and cache yourself as appropriate.. actually, the docs for the API are pretty thorough.. so if this isn't the exact itch you need to scratch, I dare say there is a call in there that does what you want 🙂
Thanks. But I am not talking about scalars. I am talking about plots I've reported to ClearML using .report_histogram or .report_scatter2d or .report_table
sorry.. I am not understanding what you mean by 'I want the data programmatically'.
I know you can download the data like a json from the plots tab in the UI, but I want the data programmatically