I have created a data splits via a model run, and I’d like to download the labels from that model run and convert them to COCO format. Previously I was using project.label_generator() and COCOConverter.serialize_instances, but for model runs it seems I have to use model_run.export_labels(download=True). However, that function returns a list of dicts instead of Label instances, so serialize_instances doesn’t work.
So what’s the best way to export labels from a model_run in COCO format?