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

when I run detect.py, it shows : File "detect.py", line 140 plt.savefig(f"output/{filename}.jpg", bbox_inches="tight", pad_inches=0.0) ^ SyntaxError: invalid syntax Is it because of the Linux system? How to solve it?

Summary is not a problem, because other networks can be read, and it is possible that a problem with this network code caused an error. AttributeError Traceback (most recent call...

I want to ask how to train e on VOC dataset? Whether I need to write my own configuration file?

I want to train on VOC ,and I modified voc.data,voc.names and yolo.cfg.And I use voc_label.py to get 2007_train.text and 2007_test.text. ----------------------------------------------- When I run "python3 train.py --data_config config/voc.data --pretrained_weights weights/darknet53.conv.74",there...

Thank you for your work. Can you give me some information about [this](https://github.com/eriklindernoren/PyTorch-YOLOv3/blob/47b7c912877ca69db35b8af3a38d6522681b3bb3/utils/utils.py#L258) understanding? detections[0, :4] = (weights * detections[invalid, :4]).sum(0) / weights.sum()

How to correctly modify https://github.com/eriklindernoren/PyTorch-YOLOv3 to use https://github.com/huawei-noah/AdderNet ? The following [colab ipynb notebook](https://gist.github.com/promach/8ddd9794f242c24ffdaa612bcb0bfa33#file-yolov3_-_addernet-ipynb) is what I have so far with the helps of others: https://colab.research.google.com/drive/1VCafwykgNKAO6144LssBFFy0TmruDNSE#scrollTo=W3e-WcVxnKfs How to solve the...

does anyone train the PyTorch-YOLOv3 on pedestrian detection data sets (e.g., Caltech)? or train the network just for VOC or COCO datasets 's person class ?

I have met an issue when I try to train YOLO onmy custom data. It seems that the training process is fine but there is a trace back called "OSError:...

I've been trying to train yolo to detect infrared images. The data set i'm using is the FLIR Thermal Dataset. After training the model and running it through the test.py,...