PyTorch-YOLOv3 icon indicating copy to clipboard operation
PyTorch-YOLOv3 copied to clipboard

Minimal PyTorch implementation of YOLOv3

Results 125 PyTorch-YOLOv3 issues
Sort by recently updated
recently updated
newest added

I write a yolov3 project following your's, but i got 0 mAP, i don't know what's the problem, so would you mind give me your trained model which i will...

While training yolov3 model for my custom dataset through running **_python train.py --pretrained_weights weights/darknet53.conv.74_** I am getting the following error. can anyone plz tell me why I am getting this...

https://github.com/FLyingLSJ/Computer_Vision_Project/tree/master/Object_Detection/yolo_demo/PyTorch-YOLOv3-master 有详细的记录文档,可以顺利跑自己的数据

hi~ I want to use soft-nms replace nms in yolov3,some people tell me to change the "box.c" in darknet。but I don't know how to set darknet in this project. What...

In the `compute_grid_offsets()` function, the `self.scaled_anchors` is computed as follows, ` self.scaled_anchors = FloatTensor([(a_w / self.stride, a_h / self.stride) for a_w, a_h in self.anchors])` I'm wondering in the cfg file,...

After training data set of myself, in the "checkpoints" file generated ". Pyh "weight file, then what should I test my test set (in other words: what should I input...

How to calculate anchors when training custom image

Hi I am new to NN and now I am trying to use COCO 2014test image to test this network. However I found that there is no txt. label for...