Closed qixiong-wang closed 3 years ago
We use this operation to normalize the features in an image, similar to layer norm. We also tried to remove this operation, the model also achieves ~93% in mAP. Because we only use the last layer as re-id feature, we didn't try to normalize other layers.
We use this operation to normalize the features in an image, similar to layer norm. We also tried to remove this operation, the model also achieves ~93% in mAP. Because we only use the last layer as re-id feature, we didn't try to normalize other layers.
Thanks for your reply.
Hi, thanks for your excellent work. When I try to reimplement the result of scale alignment, I find you substract the mean value of feature map p3 in
mmdet/models/dense_heads/fcos_reid_head_focal_sub_triqueue.py
as follow:And I remove this part, the performance decreases to
mAP = 90.82%
. I wonder how it works and if I need to add this operation in other levels of feature map.