JaryHuang / awesome_SSD_FPN_GIoU

This repository carries out some paper recurring work
106 stars 25 forks source link

SSD_FPN_GIoU, in PyTorch

This is a SSD experiment reposity, the purpose is to reproduce some related papers based on SSD The code references SSD: Single Shot MultiBox Object Detector, in PyTorch and mmdet. Currently, some experiments are carried out on the VOC dataset, if you want to train your own dataset, you can refer to the part of training-yourself-dataset.

Table of Contents

       

Fold-Structure

The fold structure as follow:

Environment

Datasets

Training

Training VOC

Training yourself dataset

Evaluation

python eval.py --trained_model your_weight_address

Test

python test.py -- trained_model your_weight_address

if you want to visual the box, you can add the command --visbox True(default False)

Performance

VOC2007 Test mAP

Test mAP(iou=0.5) mAP(iou=0.6) mAP(iou=0.75)
SSD 75.49% 70.87% 53.44 %
SSD+Gious 76.09% 71.01% 54.70 %
SSD+FPN 78.99% 73.18% 55.19 %
SSD+FPN+Gious 78.96% 73.35% 55.83 %

result

FPS

Download a pre-trained network

Authors

References