# PyTorch-YOLOv3-kitti **Repository Path**: zhang--hao/PyTorch-YOLOv3-kitti ## Basic Information - **Project Name**: PyTorch-YOLOv3-kitti - **Description**: use yolov3 pytorch to train kitti - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PyTorch-YOLOv3-Kitti Minimal implementation of YOLOv3 in PyTorch. And Training from Kitti dataset ## Table of Contents - [PyTorch-YOLOv3](#pytorch-yolov3-kitti) * [Table of Contents](#table-of-contents) * [Paper](#paper) * [Installation](#installation) * [Inference](#inference) * [Video](#video) * [Test](#test) * [Detect](#detect) * [Train](#train) * [Credit](#credit) ## HI THERE~ THIS repo is forked from [eriklindernoren](https://github.com/eriklindernoren/PyTorch-YOLOv3) ## Installation $ git clone https://github.com/packyan/PyTorch-YOLOv3-kitti.git $ cd PyTorch-YOLOv3-kitti/ $ sudo pip3 install -r requirements.txt ##### Download pretrained weights if you wan use pretrained darknet-53 on IMAGENET weights, please download [darknet53.conv.74](https://pjreddie.com/media/files/darknet53.conv.74),and put it into `checkpoints/` if you just want a pretrained weights on kitti dataset for test or detect, please download [pretrained weights file](https://drive.google.com/file/d/1BRJDDCMRXdQdQs6-x-3PmlzcEuT9wxJV/view?usp=sharing), and put it into `weights` folder, the path: `weights/yolov3-kitti.weights` ##### Download Kitti [The KITTI Vision Benchmark Suite](http://www.cvlibs.net/datasets/kitti/eval_object.php) and you should transfrom kitti lable to coco label, by using [label_transform](label_transform/README.md) ## Inference Uses pretrained weights to make predictions on images. `weights/yolov3-kitti.weights` was trained by kitti data set. `python3 detect.py --image_folder /data/samples`