yuto3o / yolox

More Than YOLO(v3, v4, v3-tiny, v4-tiny)
150 stars 46 forks source link

backbone yolov4 #17

Closed VeeranjaneyuluToka closed 3 years ago

VeeranjaneyuluToka commented 3 years ago

I have couple of things to understand a bit more.

looks like yolov4 also has darknet53 as backbone with Mish activation, is my understanding correct? having mish activation and cspdarknet53 backbone improves the accuracy? suppose to improve accuracy based on the paper.

looks like there are different variations of loss functions, would you mind describing scenarios in which a particular loss function recommended or best loss function in ideal cases?

yuto3o commented 3 years ago

We follow the cspdarknet53 architecture to build yolov4, and darknet53 block is used to reproduce yolov3 in our repo.

Suffering from the lack of gpu device, the difference or the improvement might not be clear in ablation study.

I think CIoU Loss is a good choice.

VeeranjaneyuluToka commented 3 years ago

OK,Thanks for reply! you have used binary cross entropy to calculate cls_loss, do you notice any benefit using this? I am using categorical cross entropy. And using focal loss would give any benefit?

yuto3o commented 3 years ago

Yes, most of the researchers regard the classification task in detection as multi-label learning.