❓Question
Hi, Following steps were taken
I trained yolo tiny on a custom data set with just one class
Converted .weights(darknet) to .h5 (keras) (verified and keras model is working fine as well)
Now when I convert Keras to core ml model I am not getting coordinates and confidence as outputs
Command used to convert to core ml
coremltools.converters.keras.convert(
'model_data/yolo.h5',
input_names='image',
class_labels=output_labels,
image_input_names='image',
input_name_shape_dict={'image': [None, 416, 416, 3]}
)
Though I have checked a third party Yolo model converted to core ml giving coordinates and confidence
refer the screenshot:
3rd party Yolo model converted to core ml
my Yolo model converted to core ml
System Information
Keras==2.1.5
coremltools==3.3