- Yet-Another-EfficientDet-Pytorch by Zylo117 contains most of the base code to create the EfficientDet, however I cleaned it a little to have only what I need and used lukemela's implementation of EfficientNet directly
- EfficientDet original paper
- EAST: An Efficient and Accurate Scene Text Detector inspiration to this repo
- Object detection - you can still use EfficientDet for object detection, however we recommend sticking to Zylo's code
- Segmentation - you can train EfficientDet to perform segmentation
- Text Detection - you can use EfficientDet to segment and predict bounding boxes as proposed on EAST: An Efficient and Accurate Scene Text Detector
- We do not have support for EfficientDet-D7x
-
Our first public result is on ICDAR 2019 Robust Reading Challenge on Scanned Receipts OCR and Information Extraction
- We obtained an Hmean of 93.76% on test set
- Training involved only a EfficientNet backbone initialized on ImageNet that was frozen. We trained the rest of the model from a random start.
-
The checkpoint for segmentation on ICDAR2019 Robust Reading Challenge on Arbitrary-Shaped Text can be found here. The experiment containing training code and hyper parameters can be found here
-
Training for Text Detection on DocVQA can be found here and experimento logging here
-
Second result on ICDAR 2019 Robust Reading Challenge on Scanned Receipts OCR and Information Extraction
- Add other coeficients for Segmentation and EAST
- Add D7 to Segmentation and EAST
- Add EfficientDet-D7x
- Release model checkpoint for the SROIE 2019 submission
- Add results and model checkpoint for the ICDAR2019 Robust Reading Challenge on Arbitrary-Shaped Text
- Add documentation
- Add testing