-
-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use my own object detection model instead of Faster-RCNN #201
Comments
Have you solved this problem? I also want to use my own object detection model |
Hi everyone, You'll need then to post-process the output of your detector (in this case yolov8) to be of the same format of the original proposals, which is the BoundingBox class here In my approach, I did something like this (I use the proposals as targets as I'm performing SGG in PredCLS mode):
The reshape to 800,600 is because the original RPN outputs the proposals in this shape. Note that this process doesn't change the features extractor, only the bounding box regression and classification heads so you will still have to train and load a Faster-RCNN to extract the ROI features (which is done in the box_features_extractor class). Hope this helps |
❓ Questions and Help
Thanks for you code. And I want to know how to use my own object detection model instead of Faster-RCNN?
The text was updated successfully, but these errors were encountered: