Skip to content

chingu163/FastMaskRCNN

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mask RCNN

Mask RCNN in TensorFlow
This repo attempts to reporduce this amazing work by Kaiming He. Mask RCNN.

How-to

  1. Download coco dataset, place it into ./data, then run python download_and_convert_data.py to build tf-records. It takes a while.
  2. Download pretrained resnet50 model, wget http://download.tensorflow.org/models/resnet_v1_50_2016_08_28.tar.gz, unzip it, place it into ./data/pretrained_models/
  3. Go to ./libs and run make
  4. run python train/train.py for training
  5. There are certainly some bugs, please report them back, and let's solve them together.

TODO:

  • ROIAlign
  • COCO Data Provider
  • Resnet50
  • Feature Pyramid Network
  • Anchor and ROI layer
  • Mask layer
  • Speedup anchor layer with cython
  • Combining all modules together.
  • Testing and debugging (in progress)
  • Training / evaluation on COCO
  • Add image summary to show some results
  • Converting ResneXt
  • Training >2 images

Call for contributions

  • Anything helps this repo, including discussion, testing, promotion and of course your awesome code.

Acknowledgment

This repo borrows tons of code from TFFRCNN, py-faster-rcnn, faster_rcnn, tf-models

About

Mask RCNN in TensorFlow

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 92.9%
  • C++ 3.2%
  • C 2.6%
  • Cuda 1.2%
  • Other 0.1%