You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Object detection model customization Samples model does not support MediaPipe. Models are expected to have exactly four outputs, but only two were found.
#473
Open
liangbuwen opened this issue
Oct 25, 2024
· 0 comments
The Object detection model customization Samples model does not support MediaPipe. Models are expected to have exactly 4 outputs, but only 2 were found.
However, my custom model is not supported in the MediaPipe example.
Because the SupportedModels supported by the object detector solution are all trained with only 2 outputs: detection_boxes and detection_scores,
which is inconsistent with the output format required of the model . ( outputs format required detection_boxes,detection_classes,detection_scores,num_boxes 4 outputs
How can I retrain a MobileNetv2 model to have four outputs that meet the requirements?
The text was updated successfully, but these errors were encountered:
The Object detection model customization Samples model does not support MediaPipe. Models are expected to have exactly 4 outputs, but only 2 were found.
I ran the code in the Object detection model customization guide to train a custom model
However, my custom model is not supported in the MediaPipe example.
Because the SupportedModels supported by the object detector solution are all trained with only 2 outputs:
detection_boxes
anddetection_scores
,which is inconsistent with the output format required of the model . ( outputs format required
detection_boxes
,detection_classes
,detection_scores
,num_boxes
4 outputsHow can I retrain a MobileNetv2 model to have four outputs that meet the requirements?
The text was updated successfully, but these errors were encountered: