You need to use the API for exporting experiments to csv/excel. I am preparing an example for you
SweetBadger76 Thanks! Waiting for your example.
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]) ) `