-
Notifications
You must be signed in to change notification settings - Fork 643
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
Feature request: Support for aug_test. #138
Comments
@ypwhs Hi, we have not planned to add |
Using multiple scales can improve the accuracy of small objects, which has good application scenarios in industry. If not, we need to manually predict at multiple scales and then call NMS, which complicates the inference process. |
Well, welcome PR from you if multis scales testing on a deployed model is necessary. |
* [Feature] Make docker image smaller (open-mmlab#67) * [Feature] Make docker image smaller * Improve doc * Improve doc * Improve doc * Improve doc * Use Compose directly in BaseMixImageTransform (open-mmlab#71) * Use 'Compose' directly Use 'Compose' directly * avoids some unnecessary calculations avoids some unnecessary calculations. * remove whitespace remove whitespace * yolov5_description.md eng draft 1 * Update docs/en/user_guides/yolov5_tutorial.md Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> * Update docs/en/user_guides/yolov5_tutorial.md Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> * yolov5_tutorial.md translation draft 2 lint fixed * Update docs/en/user_guides/yolov5_tutorial.md Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> * Update docs/en/user_guides/yolov5_tutorial.md Co-authored-by: cydiachen <cydiachencc@icloud.com> * yolov5 tutorial draft 3 * yolov5 tutorial draft 4 * add a link on overview.md Co-authored-by: HinGwenWoong <peterhuang0323@qq.com> Co-authored-by: jason_w <wongzheng@126.com> Co-authored-by: cydiachen <cydiachencc@icloud.com>
Difference of mmdetection and mmdeploy at
aut_test
Now mmdeploy is to directly take the first image prediction, which is different from the behavior of mmdetection: https://github.com/open-mmlab/mmdeploy/blob/v0.2.0/mmdeploy/codebase/mmdet/deploy/object_detection_model.py#L191
mmdetction will combine the results of multiple scale results and do nms: https://github.com/open-mmlab/mmdetection/blob/v2.20.0/mmdet/models/roi_heads/test_mixins.py#L138-L176
Feature request
Using multi-scale prediction can improve the accuracy for oversized and undersized objects. I want mmdeploy to implement the same
aug_test
as mmdetection.The text was updated successfully, but these errors were encountered: