Skip to content

kevjn/pytorch-yolov3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Pytorch YOLOv3

A slimmed down implementation of yolov3 for inference using pretrained weights.

Usage

download coco dataset labels and weights

wget https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names
wget https://pjreddie.com/media/files/yolov3.weights

run yolov3.py with arguments

python3 yolov3.py --image dog-cycle-car.png --weights_path yolov3.weights --labels_path coco.names

You'll see some output like this:

Label: bicycle, Confidence: 0.99
Label: truck, Confidence: 0.85
Label: dog, Confidence: 1.00

dog-cycle-car

About

YOLOv3 implementation using PyTorch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages