Work in progress
Standard RetinaNet implemented with Pure PyTorch
- Compile NMS
cd lib/nms
make
-
Modify
config.py
incfgs
-
Train
python train.py -d 2 -b 4 -e voc_baseline -ds VOC
- Test
python test.py -m log/voc_baseline/model_dump/epochxxx.pth -ds VOC -e voc_baseline
will output the detection results in results.det
file.
each line is a json string.
{"im_id":'xxxx', "results":[{"class":xxx, "bbox":[xx,xx,xx,xx], "class":xxxx}]}
Notice: This part is under construction. Evaluation results and models on COCO,PASCAL VOC will be released soon.
- PASCAL VOC
This project is under the MIT Licence