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

Using the exact same image size (416x416), confidence threshold, nms threshold, config file (yolov3.cfg) and weights file (yolov3.weights), inferring on dog.jpg gives different results when using this repo and darknet....

python3 train.py --data_config config/yolov3-tiny.cfg --pretrained_weights weights/yolov3-tiny.weights Traceback (most recent call last): File "train.py", line 50, in data_config = parse_data_config(opt.data_config) File "/home/ubuntu/myfile/project/Pytorch_YoloV3/PyTorch-YOLOv3/utils/parse_config.py", line 34, in parse_data_config key, value = line.split('=') ValueError:...

As far as I can tell the learning_rate and decay are not actually being read in from the config file to tweak the adam optimizer. Despite changing the learning rate...

Is it not possible to give the network some examples with no bounding boxes for training? I tried using empty text files for the labels but it crashes.

Only 200 iterations of training on COCO completely destroys the accuracy of the pretrained YOLOv3 net. I am using an unchanged repo with the COCO dataset downloaded using the script...

when training with custom data, got this error during evaluate: Traceback (most recent call last): File "train.py", line 169, in batch_size=8, File "/data/PyTorch-YOLOv3/test.py", line 48, in evaluate outputs = non_max_suppression(outputs,...

I would like some more information on the yolov3.weights pretrained weights. Were they learned from trianing on 100% of the 2017 coco training data? Or was some data held back...

Hello, I would like to ask why I use yolov3.weights for training, the effect is the same as that of using darknet53.conv.74 for initialization. Shouldn't yolov3.weights for initialization of loss...