running yolov5 in swift vrs yolov2

I've started to look into the new yolov5 model, but I can't figure out the new data output format when I call it in swift. The old yolov2 model gave me result in VNRecognizedObjectObservation objects in swift code, which contained labels, confidence and coordinates for each detected object. The new model for yolov5 gives me exactly three of VNCoreMLFeatureValueObservation objects which contains none of the above. But instead contains featureName (which is some Int number) and featureValue which is a multidimensional array of some sort. And I have no idea of what to do with the new data. Does someone have any information that can help?