enazoe / yolo-tensorrt

TensorRT8.Support Yolov5n,s,m,l,x .darknet -> tensorrt. Yolov4 Yolov3 use raw darknet *.weights and *.cfg fils. If the wrapper is useful to you,please Star it.
MIT License
1.19k stars 315 forks source link

yolov4-tiny #23

Open ybc-ybc opened 4 years ago

ybc-ybc commented 4 years ago

yolov4 runs successfully but yolov4-tiny has no output. res.size is 0

Config config_v4;
config_v4.net_type = YOLOV4;
config_v4.file_model_cfg = "./model/yolov4-tiny.cfg";
config_v4.file_model_weights = "./model/yolov4-tiny.weights";
config_v4.inference_precison = FP32;
enazoe commented 4 years ago

@ybc-ybc the yolov4-tiny is not yet supported, but I am working on it and support soon.

beizhengren commented 4 years ago

@enazoe 感谢作者!

ybc-ybc commented 4 years ago

@enazoe great work, thanks!