CasiaFan / tensorflow_retinanet

RetinaNet with Focal Loss implemented by Tensorflow
121 stars 45 forks source link

RetinaNet tensorflow version

Unofficial realization of retinanet using tf. NOTE this project is written for practice, so please don't hesitate to report an issue if you find something run.

TF models object detection api have integrated FPN in this framework, and ssd_resnet50_v1_fpn is the synonym of RetinaNet. You could dig into ssd_resnet50_v1_feature_extractor in models for coding details.

Since this work depends on tf in the beginning, I keep only retinanet backbone, loss and customed retinanet_feature_extractor in standard format. To make it work, here are the steps:

SSD_FEATURE_EXTRACTOR_CLASS_MAP = { ... 'retinanet_50': RetinaNet50FeatureExtractor, 'retinanet_101': RetinaNet101FeatureExtractor, }


- Put `retinanet_feature_extractor.py` and `retinanet.py` under `models`
- Modify `retinanet_50_train.config` and `train.sh` with your customed settings and data inputs. Then run `train.sh` to start training.