Exporting GPU utilization, power usage data

I’ve been wanting to export the data on GPU usage for my algorithm, but when I export the CSV file there is a single line which does not contain all the data.

For some reason all other data exports work, but any data which has to do with the GPU does not. I have 4 GPUs. The plot shows the right data:

I could also not find the complete data using the API. Is this a bug?

Best,

Mario

Hi @meerio,

You should be able to retrieve your System Metrics history from the run using the following line of code:

metrics = run.history(stream='events')

where run is a Run object accessed through the API. This should allow you to access all your system metrics data. Please let me know if this does not work for you or if you need any further assistance.

Thanks,
Ramit

Awesome, that works :)!

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.