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
Anchor-based detection models have been mainly developed over four series.
Faster R-CNN
YOLO
RetinaNet
SSD
Each anchor-based detection model series has a different manners of creating anchor priors, creating anchors, and combining them with the model's regression predictions.
Despite slight variations from model to model, models included in a series basically share the same manners.
Now let's see the examples of how Anchor-Maker gives its anchors to models 🔥
Here, we should note that in YOLO, unlike the others, anchors and model predictions are a list of tensors on each stride, not tensors flattened over given strides.
Of course, you can freely generate anchors. For example, if you want to create anchor priors in RetinaNet way, but combine anchors and predictions in YOLO style, you can write
Note that the important thing is that anchor priors and anchors can be generated seperately. The above cases are merely examples that are generally used.
The text was updated successfully, but these errors were encountered:
Anchor-based detection models have been mainly developed over four series.
Each anchor-based detection model series has a different manners of creating anchor priors, creating anchors, and combining them with the model's regression predictions.
Despite slight variations from model to model, models included in a series basically share the same manners.
Now let's see the examples of how Anchor-Maker gives its anchors to models 🔥
YOLO
Here, we should note that in YOLO, unlike the others, anchors and model predictions are a list of tensors on each stride, not tensors flattened over given strides.
RetinaNet
SSD
Of course, you can freely generate anchors. For example, if you want to create anchor priors in RetinaNet way, but combine anchors and predictions in YOLO style, you can write
Note that the important thing is that anchor priors and anchors can be generated seperately. The above cases are merely examples that are generally used.
The text was updated successfully, but these errors were encountered: