I used the example python code that ultralytics gave. Why does output output confidence and coordination after converting my target detection model to mlpackage format. is it normal to not return processed images? Or is there something wrong with my export process. The conversion method I am currently using is the method given in the ultralytics framework. here is the code from ultralytics import YOLO
model = YOLO("yolo11n.pt") model.export(format="coreml")
coreml_model = YOLO("yolo11n.mlpackage") results = coreml_model(".jpg")