duan8/yolov3-tiny
2020-12-16 12:54:00 +08:00
..
CMakeLists.txt fix cmake 2020-12-16 12:54:00 +08:00
gen_wts.py fix 2020-07-06 19:40:28 +08:00
logging.h add yolov3-tiny 2020-07-06 17:15:03 +08:00
README.md add model zoo 2020-11-06 23:40:11 +08:00
utils.h add yolov3-tiny 2020-07-06 17:15:03 +08:00
yololayer.cu add yolov3-tiny 2020-07-06 17:15:03 +08:00
yololayer.h fix register plugin and cmp 2020-11-06 22:24:28 +08:00
yolov3-tiny.cpp fix register plugin and cmp 2020-11-06 22:24:28 +08:00

yolov3-tiny

The Pytorch implementation is ultralytics/yolov3.

Excute:

1. generate yolov3-tiny.wts from pytorch implementation with yolov3-tiny.cfg and yolov3-tiny.weights, or download .wts from model zoo

git clone https://github.com/ultralytics/yolov3.git
// download its weights 'yolov3-tiny.pt' or 'yolov3-tiny.weights'
// put tensorrtx/yolov3-tiny/gen_wts.py into ultralytics/yolov3 and run
python gen_wts.py yolov3-tiny.weights
// a file 'yolov3-tiny.wts' will be generated.

2. put yolov3-tiny.wts into tensorrtx/yolov3-tiny, build and run

// go to tensorrtx/yolov3-tiny
mkdir build
cd build
cmake ..
make
sudo ./yolov3-tiny -s             // serialize model to plan file i.e. 'yolov3-tiny.engine'
sudo ./yolov3-tiny -d  ../../yolov3-spp/samples // deserialize plan file and run inference, the images in samples will be processed.

3. check the images generated, as follows. _zidane.jpg and _bus.jpg

Config

  • Input shape defined in yololayer.h
  • Number of classes defined in yololayer.h
  • FP16/FP32 can be selected by the macro in yolov3-tiny.cpp
  • GPU id can be selected by the macro in yolov3-tiny.cpp
  • NMS thresh in yolov3-tiny.cpp
  • BBox confidence thresh in yolov3-tiny.cpp

More Information

See the readme in home page.