SSH: Single Stage Headless Face Detector. More details provided in the repository and paper.
Metric | Value |
---|---|
Type | Object detection |
GFLOPs | 267.0594 |
MParams | 19.7684 |
Source framework | MXNet* |
Metric | Value |
---|---|
mAP | 84.80% |
Image, name - data
, shape - [1x3x640x640], format [BxCxHxW], where:
Expected color order - RGB. Mean values - [123.68, 116.779, 103.939]
Image, name - data
, shape - [1x3x640x640], format [BxCxHxW], where:
Expected color order - BGR.
Model outputs are floating points tensors:
rpn_cls_prob_reshape_stride32
, shape: 1, 4, 20, 20
, format: [B, Ax2, H, W]
, represents detection scores from Feature Pyramid Network (FPN) level with stride 32 for 2 classes: background and face.rpn_bbox_pred_stride32
, shape: 1, 8, 20, 20
, format: [B, Ax4, H, W]
, represents detection box deltas from Feature Pyramid Network (FPN) level with stride 32.rpn_cls_prob_reshape_stride16
, shape: 1, 4, 40, 40
, format: [B, Ax2, H, W]
, represents detection scores from Feature Pyramid Network (FPN) level with stride 16 for 2 classes: background and face.rpn_bbox_pred_stride16
, shape: 1, 8, 40, 40
, format: [B, Ax4, H, W]
, represents detection box deltas from Feature Pyramid Network (FPN) level with stride 16.rpn_cls_prob_reshape_stride8
, shape: 1, 4, 80, 80
, format: [B, Ax2, H, W]
, represents detection scores from Feature Pyramid Network (FPN) level with stride 8 for 2 classes: background and face.rpn_bbox_pred_stride8
, shape: 1, 8, 80, 80
, format: [B, Ax4, H, W]
, represents detection box deltas from Feature Pyramid Network (FPN) level with stride 8.For each output format:
B
- batch sizeA
- number of anchorsH
- feature heightW
- feature widthDetection box deltas have format [dx, dy, dh, dw]
, where:
(dx, dy)
- regression for left-upper corner of bounding box,(dh, dw)
- regression by height and width of bounding box.The converted model has the same parameters as the original model.
You can download models and if necessary convert them into Inference Engine format using the Model Downloader and other automation tools as shown in the examples below.
An example of using the Model Downloader:
An example of using the Model Converter:
The original model is distributed under the following license: