Open vinorth-v opened 4 years ago
Hello,
I don't understand, the results are perfect with my darknet model but after converting to TF, the detection results are two times smaller for the bounding boxes.
I am using this config file https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny-3l.cfg which is a bit different from the default one: https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny.cfg (one more yolo-layer)
Also, I only have 4 classes so filters=27 (instead of filters=255 before the yolo layers).
How should I change the parameters in config.py?
Thank you in advance! the author did not add code to process yolov4-tiny in dataset.py,you can try to add some code to reduce the bboxes numbers to 2 rather than 3.and it will work
Hello,
I don't understand, the results are perfect with my darknet model but after converting to TF, the detection results are two times smaller for the bounding boxes.
I am using this config file https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny-3l.cfg which is a bit different from the default one: https://github.com/AlexeyAB/darknet/blob/master/cfg/yolov4-tiny.cfg (one more yolo-layer)
Also, I only have 4 classes so filters=27 (instead of filters=255 before the yolo layers).
How should I change the parameters in config.py?
Thank you in advance!