Faster RCNN for TensorFlow

懵懂的女人 提交于 2019-11-28 16:59:50

问题


Has anyone implement the FRCNN for TensorFlow version? I found some related repos as following:

  1. Implement roi pool layer
  2. Implement fast RCNN based on py-faster-rcnn repo

but for 1: assume the roi pooling layer works (I haven't tried), and there are something need to be implemented as following:

  • ROI data layer e.g. roidb.
  • Linear Regression e.g. SmoothL1Loss
  • ROI pool layer post-processing for end-to-end training which should convert the ROI pooling layer's results to feed into CNN for classifier.

For 2: em...., it seems based on py-faster-rcnn which based on Caffe to prepared pre-processing (e.g. roidb) and feed data into Tensorflow to train the model, it seems weird, so I may not tried it.

So what I want to know is that, will Tensorflow support Faster RCNN in the future?. If not, do I have any mis-understand which mentioned above? or has any repo or someone support that?


回答1:


Tensorflow has just released an official Object Detection API here, that can be used for instance with their various slim models.

This API contains implementation of various Pipelines for Object Detection, including popular Faster RCNN, with their pre-trained models as well.



来源:https://stackoverflow.com/questions/38342651/faster-rcnn-for-tensorflow

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!