Detailed explanation of yolov5 training KITTI data set and division of KITTI data set

preface This article is based on KITTI data set training yolov5. Friends can divide the data set completely according to my steps (strictly follow the directory structure I listed, there will be no problem), so as to successfully train yolov5 in KITTI. If you strictly follow my directory structure, you don't need to modify any sentence in the ...

Posted by Tsukiyomi on Tue, 01 Mar 2022 12:31:19 +0100

Deploying yolov5 in linux server virtual environment & training your own data set

1, Virtual environment 1. Download conda (skip if conda already exists) wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh 2. Add permissions chmod 777 Miniconda3-latest-Linux-x86_64.sh 3. Operation sh Miniconda3-latest-Linux-x86_64.sh (1) There will be two prompts in the middle. Press enter for the first on ...

Posted by gethinw on Sun, 20 Feb 2022 01:49:09 +0100

[play yolov5] use TensorRT C++ API to build v4 0 network structure

Continued [play yolov5] use TensorRT C++ API to build v4 Network structure (0) , the backbone part has been finished. Now let's move on to the neck part. Before continuing to explain the neck part, it is necessary to review PANet, because the neck part is an FPN+PAN structure. Based on FPN, PANet adds bottom up path augmentation, mainly cons ...

Posted by UrbanCondor on Thu, 17 Feb 2022 11:49:18 +0100