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.
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.