介绍
这是在EfficientDet:可伸缩和有效对象检测一 文中描述的模型的pytorch实现(注意:还提供了预训练的权重,可以在./trained_models中看到)
模型输出的一个例子
https://github.com/signatrix/efficientdet
数据集
在存储库下创建一个数据文件夹
cd {repo_root}
mkdir data
COCO:从coco网站下载coco图像和注释。确保将文件放置为以下结构:
http://cocodataset.org/#download
coco
├── annotations
│ ├── instances_train2017.json
│ └── instances_val2017.json
│── images
├── train2017
└── val2017
如何使用代码
使用代码可以:
实验
使用3个NVIDIA GTX 1080Ti训练了模型。以下是COCO val2017数据集的mAP(平均平均精度)
结果
一些预测如下所示:
要求
参考文献
https://arxiv.org/abs/1911.09070
https://github.com/yhenon/pytorch-retinanet
引文
@article{EfficientDetSignatrix,
Author = {Signatrix GmbH},
Title = {A Pytorch Implementation of EfficientDet Object Detection},
Journal = {https://github.com/signatrix/efficientdet},
Year = {2020}
}