MADONOKOUKI / chainer-faster-rcnn-1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A Faster R-CNN Implementation using Chainer

An experimental repository in progress with Chainer code to run the Faster R-CNN. The method was originally proposed by Shaoqing Ren et al. in June, 2015 and is one of the best performing object detection and classification algorithms in terms of speed performance and accuracy, at the time of writing this in April 2016.

References

Faster R-CNN with Chainer

Challenges

  • Implement the forward and backward methods for the Multi-Task Loss using Chainer.
    • First, make it work. Then optimize for performance in terms of speed.
    • Consider implementing the CPU version first if it seems easier.
  • Data caching, reuse on GPU for performance reasons.
    • E.g. initial anchor creation.

Dataset

Dataset being used at the moment is MSCOCO which can be downloaded here.

Test

Tests are implemented using unittest. To run a test, run the following command from the project root.

python -m test.<filename without the file extension .py>

About


Languages

Language:Python 100.0%