Browse Source

Fix yolov4 example load model (#2059)

tags/20200916
新无止竞博客 GitHub 5 years ago
parent
commit
8704ed418e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/yolov4.cpp

+ 1
- 1
examples/yolov4.cpp View File

@@ -69,7 +69,7 @@ static int init_yolov4(ncnn::Net* yolov4, int* target_size)
*target_size = 416;
#else
const char* yolov4_param = "yolov4-opt.param";
const char* yolov4_model = "yolov4-opt.param";
const char* yolov4_model = "yolov4-opt.bin";
*target_size = 608;
#endif



Loading…
Cancel
Save