Aninda Saha
Aninda Saha
> @tjiagoM yes I did. > https://github.com/ultralytics/yolov3. I achieved much much better results using their model. Are there any minimal Yolov3 implementations that achieve the original results from the authors?...
For COCO dataset, perhaps you can use the pycocotools API: https://github.com/cocodataset/cocoapi/blob/master/PythonAPI/pycocoEvalDemo.ipynb
Try suppressing the number of boxes by amending the second line in the non_max_suppression function to `bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True)[:max_boxes]`. Also, evaluate after a couple of epochs...
Same here. Haven't been able to reproduce 78% as described.