Further modifications on this repo will be updated on Gitlab temporarily for about a month (before 9.15).
- Choose
Faster RCNN
orMask RCNN
(rewrite and run) - Understand
RoIAlign
&RoIPooling
- Read two papers:
Co-domain Embedding using Deep Quadruplet Networks for Unseen Traffic Sign Recognition
Perceptual Generative Adversarial Networks for Small Object Detection
- Three DL programs to quickly warm up and get familiar with
PyTorch
; more importantly, to gain experience on how to adjust parameters and architecture. - Test1: A simple
FCN
implementation on PASCAL-VOC-2007. - Test2: A classification network using
CNN
&ResNet
on CIFAR-10. - Test3: A classfication & localization network on CUB-200-2011.
- Do multiple tests on PASCAL-VOC-2007 with
Faster-RCNN
from faster-rcnn.pytorch. - Records all the runtime output.
- Do tests based on the same source code.
- Modify the pretreatment and evaluation parts of the code.
- Records all the runtime output.
- Comment on the
Faster-RCNN
source code.
- Read and comment on the code of
RoIAlign
&RoIPooling
.
- note1.txt: The progress of object detection, starts from
RCNN
, throughSPP
andFast-RCNN
, ends withFaster-RCNN
. - note2.txt: About
RPN
, etc. - note3.txt: Notes on Tutorial provided by faster-rcnn.pytorch.
- note4.txt: Details on
RoI-Pooling
,RoI-Align
andRoI-Warping
. - note5.txt: Study PASCAL-VOC-2007 & TT100K datasets.