Open
Description
In yolo_neck.py#L80 there is a comment:
from bottom (high-lvl) to top (low-lvl)
.
I think it should be:
from bottom (low-lvl) to top (high-lvl)
.
In any case, it looks not consistent:
The input feats should be from top to bottom.
i.e., from high-lvl to low-lvl
But YOLOV3Neck will process them in reversed order.
i.e., from bottom (high-lvl) to top (low-lvl)