-
Hello, I find that you directly load and set the YOLOv5 model in the code by
This means that the inference results of YOLOv5 model for each sliced image are NMS processed in the YOLOv5 code, and then the processed results are postprocessed by It seems that you only set the confidence threshold of the YOLOv5 model, while the IOU threshold is the default value of the YOLOv5 code, i.e.
I'd like to ask that what the IOU parameter setting is for AP50 comparison in the paper, inluding YOLOv5 NMS IOU threshold and |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @MarineCao, thanks for your interest on our paper. In our paper we dont provide results for yolov5, we provide for FCOS, VFNet and TOOD detectors. We simply use the predict function with More detail on the inference parameters can be found here: https://github.com/fcakyon/sahi-benchmark/issues/2#issuecomment-1094234251 All model config files can be found here: https://github.com/fcakyon/sahi-benchmark/tree/main/mmdet_configs If you have any other questions feel free to ask 👍 |
Beta Was this translation helpful? Give feedback.
Hello @MarineCao, thanks for your interest on our paper.
In our paper we dont provide results for yolov5, we provide for FCOS, VFNet and TOOD detectors. We simply use the predict function with
model_type='mmdet'
and iou match threshold as 0.5, postprocess type as NMS.More detail on the inference parameters can be found here: https://github.com/fcakyon/sahi-benchmark/issues/2#issuecomment-1094234251
All model config files can be found here: https://github.com/fcakyon/sahi-benchmark/tree/main/mmdet_configs
If you have any other questions feel free to ask 👍