Unanswered
Hi Community,
Is There A Way To Download All The Logged Scalars/Plots Using Code Itself?
Hi TenderCoyote78
Here is a snippet to illustrate how to retrieve the scalars and the plots from a task
` from clearml.backend_api.session.client import APIClient
from clearml import Task
task = Task.get_task(project_name=xxxx, task.name=xxxx) #or task_id=xxxx
client = APIClient()
#retrieving the scalars
client.events.scalar_metrics_iter_histogram(task=task.id)
#retrieving the plots
client.events.get_task_plots(task=task.id) `
173 Views
0
Answers
2 years ago
one year ago