KaiQiao1992 / Focal-Loss-implement-on-Tensorflow

The implementation of focal loss proposed on "Focal Loss for Dense Object Detection" by KM He.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Focal-Loss-implement-on-Tensorflow

This is the implementation(unofficial version) of focal loss proposed on Focal Loss for Dense Object Detection by KM He. After implement focal loss formular I have tested on SSD_MobileNet Network on COCO datasets. The following is about the tensorboard results and analysis:

  1. The map@0.5 of focal loss implementation(num_hard_example=20000, max_neg_per_pos=1000, max_total_detection=20000) are about 3% higher than original model(num_hard_example=2000, max_neg_per_pos=100, max_total_detection=100), about 29% and 26% respectively.

MAP and Loss MAP of some cates

 2. However, why do focal loss can achive so much improvement? Here we show some evaluation images and then we may find the answer. Focal loss do not detect the low percentage object, this may have a good precision but bad recall. But the core viewpoint of the paper is focals on the hard examples while ignore the easy examples. I don't know the reason.

Eval image result comp

 Conclusion: Maybe Focal loss can have a better precision(MAP) but may have worse recall.(personal opinion)

About

The implementation of focal loss proposed on "Focal Loss for Dense Object Detection" by KM He.

License:Apache License 2.0


Languages

Language:Python 100.0%