Skip to content
/ FPN Public
forked from unsky/FPN

Feature Pyramid Networks for Object Detection

Notifications You must be signed in to change notification settings

marenan/FPN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feature Pyramid Network on caffe

This is the unoffical version Feature Pyramid Network for Feature Pyramid Networks for Object Detection https://arxiv.org/abs/1612.03144

the mxnet unoffical version Feature Pyramid Network: https://github.com/unsky/Feature-Pyramid-Networks

results

FPN(resnet50) result is implemented without OHEM and train with pascal voc 2007 + 2012 test on 2007

[email protected] aeroplane bicycle bird boat bottle bus car cat chair cow
diningtable dog horse motorbike person pottedplant sheep sofa train tv

framework

the red and yellow are shared params

about the anchor size setting

In the paper the anchor setting is Ratios: [0.5,1,2],scales :[8,]

With the setting and P2~P6, all anchor is [32,64,128,512,1024],but this setting is suit for COCO dataset which has so many small targets.

but the voc dataset has so many [128,256,512]targets.

So, we desgin the anchor setting:Ratios: [0.5,1,2],scales :[8,16], this is very import for voc dataset.

usage

download voc07,12 dataset ResNet50.caffemodel

  • OneDrive download: link

compile caffe & lib

cd caffe-fpn
mkdir build
cd build
cmake ..
make -j16 all
cd lib
make 

train & test

./experiments/scripts/FP_Net_end2end.sh 1 FPN pascal_voc
./test.sh 1 FPN pascal_voc

feature pyramid networks for object detection

Lin, T. Y., Dollár, P., Girshick, R., He, K., Hariharan, B., & Belongie, S. (2016). Feature pyramid networks for object detection. arXiv preprint arXiv:1612.03144.

About

Feature Pyramid Networks for Object Detection

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 47.3%
  • C++ 38.4%
  • Python 8.1%
  • Cuda 3.2%
  • CMake 1.4%
  • MATLAB 0.5%
  • Other 1.1%