Skip to content

Implementation of the paper, "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks", NeurIPS 2015 by Ren et al

Notifications You must be signed in to change notification settings

garg-abhinav/FasterRCNN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Faster R-CNN Implementation

IE534/CS547 Deep Learning | Spring 2021 | UIUC

Pytorch implementation of Faster R-CNN for real-time object detection (paper). Our detailed project report is available here.

Contributors

  1. Abhinav Garg ([email protected])
  2. Refik Mert Cam ([email protected])
  3. Sanyukta Deshpande ([email protected])

Install dependencies

Here is an example of create environ from scratch with anaconda

# create conda env
conda create --name frcnn python=3.7
conda activate frcnn
# install pytorch
conda install pytorch torchvision cudatoolkit=10.2 -c pytorch

# install other dependancy
pip install visdom scikit-image tqdm fire ipdb pprint matplotlib torchnet

Train

1. Prepare data

Pascal VOC2007

  1. Download the training, validation, test data and VOCdevkit

    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.tar
    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar
    wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCdevkit_08-Jun-2007.tar
  2. Extract all of these tars into one directory named VOCdevkit

    tar xvf VOCtrainval_06-Nov-2007.tar
    tar xvf VOCtest_06-Nov-2007.tar
    tar xvf VOCdevkit_08-Jun-2007.tar
  3. It should have this basic structure

    $VOCdevkit/                           # development kit
    $VOCdevkit/VOCcode/                   # VOC utility code
    $VOCdevkit/VOC2007                    # image sets, annotations, etc.
    # ... and several other directories ...
  4. modify voc_data_dir and voc_test_dir cfg item in config/config.py.

2. Set Configuration

Update the parameters in config/config.py as per the experiment. Update save_path to the path where model files are to be stored. Note: Our implementation currently only supports vgg16 and resnet101 for pretrained_model cfg item.

3. Model Training

python approx_train.py 

Inference

To run inference on select test images, update train=False and save_path to the path where trained model is located in config/config.py.

python test.py 

About

Implementation of the paper, "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks", NeurIPS 2015 by Ren et al

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages