Skip to content

hvy/chainer-faster-rcnn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages