-
Notifications
You must be signed in to change notification settings - Fork 387
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
Add ability to use different Objectdetection models than FasterRCNN #2147
Comments
I agree that it would be useful to support other TorchVision object detection models. Adding something like an That said, one way to do this without any changes to RV is to use the workaround described here: Lines 143 to 180 in 3eb3ff1
You'll need to fork the torchvision repo and create a branch with |
🚀 Feature
It would be good to be able to use more up to date models than FasterRCNN in raster-vision.
Torchvision offers some possible dropin replacements / alternatives like RetinaNet or SSD based detectors.
Motivation
More up to date models promise better performance at lower GPU needs.
Pitch
The object_detection_learner in raster-vision should be able to accept a configuration parameter which allows a different model to be used, as written above.
Alternatives
The user could do this manually in the code, but this is not very scaleable and unclear how many manual changes are needed.
Additional context
The text was updated successfully, but these errors were encountered: