Unanswered
Hi,
Is There Any Approach To Export The Selected Experiments To Csv Or Excel In A Project? Just Like To Export The Following Tables. Thanks.
ok so here is the example.
the idea is to use the API, and finally reproduce what the WebUI does.
` from clearml.backend_api.session.client import APIClient
from clearml import Task
task = Task.get_task(task_id=xxxx)
#or Task.get_task(project_name=xxx, task_name=xxx)
client = APIClient()
my_data = client.tasks.get_by_id(task.id).to_dict()
with open('./my_data.csv', 'w') as f:
for key in my_data.keys():
f.write("%s, %s\n" % (key, my_data[key]) ) `
172 Views
0
Answers
2 years ago
one year ago