ShuangXieIrene / ssds.pytorch

Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3.
MIT License
568 stars 165 forks source link

the implementation of the yolov3 #44

Open 1453042287 opened 5 years ago

1453042287 commented 5 years ago

i read the code, but i found that the loss function is ssd's? the multibox loss function is't the function in yolo's paper, right?

seongkyun commented 5 years ago

Multibox loss can be applied to any kind of single shot detectors. That is a kinda loss function.

1453042287 commented 5 years ago

@seongkyun thanks a lot but i wonder if the performance is as good as the 'real' yolov3's

seongkyun commented 5 years ago

Exactly yes. You know that there is any code that can train Yolo V3 with any other deep learning toolkit except Darknet. Every other codes are just reads pre-trained weight file and does forward pass.