YOLOP icon indicating copy to clipboard operation
YOLOP copied to clipboard

You Only Look Once for Panopitic Driving Perception.(MIR2022)

Results 160 YOLOP issues
Sort by recently updated
recently updated
newest added

In the \_\_getitem__() function in lib/dataset/AutoDriveDataset.py, we read an image and then convert from BGR to RGB. This image is then passed to augment_hsv() in lib/utils/augmentations.py file. Here, we convert...

The demo.py file has an error plotting the results, which is fixed here.

Besides changing [ _C. train.lane_only = False ] to True, what else needs to be changed?

除了将_C.TRAIN.LANE_ONLY = False # Only train ll_segmentation task改为True还有哪里需要修改呢

Hi!! I'm using Yolop with my images but I want to visualisate the result. How to could do it? My code is: `import torch import torchvision.transforms as transforms import cv2...

```Dockerfile ARG PYTORCH="1.8.1" ARG CUDA="10.2" ARG CUDNN="7" FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel ENV TORCH_CUDA_ARCH_LIST="6.0 6.1 7.0+PTX" ENV TORCH_NVCC_FLAGS="-Xfatbin -compress-all" ENV CMAKE_PREFIX_PATH="$(dirname $(which conda))/../" # To fix GPG key error when running apt-get update...

Does anyone have a working source code of this yolop model for end to end training. There are so many bug I encountered with the code and I cannot fix...

When I run train.py: Epoch: [1][3480/3500] Time 3268.846s (1639.564s) Speed 0.0 samples/s Data 3268.648s (1639.355s) Loss 0.32530 (0.28520) 0%| | 0/500 [00:00

in the code loss.py, line 195: `gamma = cfg.LOSS.FL_GAMMA if gamma > 0: BCEcls, BCEobj = FocalLoss(BCEcls, gamma), FocalLoss(BCEobj, gamma)` but in the code default.py, line 39: `_C.LOSS.FL_GAMMA = 0.0`...