Skip to content

yaochx/caffe-yolo9000

Repository files navigation

CAFFE for YOLO

Reference

YOLO9000: Better, Faster, Stronger

http://pjreddie.com/yolo9000/

https://github.com/yeahkun/caffe-yolo

Usage

Data preparation

  cd data/yolo
  ln -s /your/path/to/VOCdevkit/ .
  python ./get_list.py
  # change related path in script convert.sh
  ./convert.sh 

Train

  cd examples/yolo/darknet_v3
  # change related path in script train.sh
  mkdir models
  ./train_darknet_v3.sh

Test (The first way online)

  # if everything goes well, mAP reach ~56.
  cd examples/yolo/darknet_v3
  ./test_darknet_v3.sh

MODEL=./models/gnet_yolo_region_darknet_v3_pretrain_rectify_iter_200000.caffemodel

model is here:

Test (The second way offline)

  cd examples/eval_detection
  python test_yolo_v2.py

About

Caffe for YOLOv2 & YOLO9000

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 80.1%
  • Python 8.0%
  • Cuda 5.5%
  • CMake 2.7%
  • Protocol Buffer 1.7%
  • MATLAB 0.9%
  • Other 1.1%