meituan / YOLOv6

YOLOv6: a single-stage object detection framework dedicated to industrial applications.
GNU General Public License v3.0
5.67k stars 1.02k forks source link

remove NMS Layer from end2end model #988

Open debugmenot opened 8 months ago

debugmenot commented 8 months ago

Before Asking

Search before asking

Question

Hi! Is there any way to remove NMS from end2end model? I want to get pretty results as xyxy,class,conf at the output, but i dont need NMS. Is it possible?

Additional

No response

Chilicyy commented 8 months ago

HI @debugmenot , YOLOv6 is a framework with dense regression, and NMS is necessary to get the final results.

debugmenot commented 8 months ago

@Chilicyy Hi, I know, but i want to do NMS inside the code logic, not in the model...