pytorch-YOLOv4 icon indicating copy to clipboard operation
pytorch-YOLOv4 copied to clipboard

PyTorch ,ONNX and TensorRT implementation of YOLOv4

Results 141 pytorch-YOLOv4 issues
Sort by recently updated
recently updated
newest added

`Epoch 1/200: 0%| | 0/660 [00:00

![image](https://user-images.githubusercontent.com/61550386/95158258-b9184e00-07cd-11eb-9698-711c9024374e.png)

Bumps [pillow](https://github.com/python-pillow/Pillow) from 7.1.2 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@​radarhere, @​hugovk] Restrict builtins within...

dependencies

Hi, can I get clarification if the model weights hosted externally (e.g. Google Drive) are also covered under the Apache 2.0 license?

There is another error when I run on my own data: Traceback (most recent call last): File "train.py", line 616, in model = Yolov4(cfg.pretrained, n_classes=cfg.classes) File "D:\study\Dinosaour\pytorch-YOLOv4\models.py", line 426, in...

## Introduction For a personal project I'd like to detect **cars**, **busses**, **trucks** and their **license plates**. To accomplish this I wanted to train a custom model using YoloV4 with...

Hi, are they just two different pretrained models, or they relate to each other?

This PR improves the CLI interface by making the default values for the CLI arguments to be retrieved from the config file and adding the following CLI arguments: - batch_size:...

I have trained based on darknet-yolov4 and get .weight file. how can i convert it to pytorch .pth file. i have tried to use darknet2pytorch.py. i use the .pth and...

我在使用自己的数据集进行训练时,将没有目标的图像也加入进训练集,但是执行时会报错: dataset.py: class Yolo_dataset(Dataset): def __init__(self, lable_path, cfg, train=True): super(Yolo_dataset, self).__init__() if cfg.mixup == 2: print("cutmix=1 - isn't supported for Detector") raise elif cfg.mixup == 2 and cfg.letter_box: print("Combination: letter_box=1...