Tencent/ncnn

YoloV5-6.0的c++推理问题

Opened this issue · 0 comments

detail | 详细描述 | 詳細な説明

已经成功转成NCNN,在阅读C++推理代码时,看到如下代码段:
#if YOLOV5_V62
ex.extract("353", out);
#elif YOLOV5_V60
ex.extract("376", out);
#else
ex.extract("781", out);
#endif

以上输出和我得到的param文件中的输出不一致,请问是因为示例代码是用的yolov5s,而我是用的yolov5l的原因么?如果是该原因,请问yolov5l对应输出字符改怎么编写?
如果不是该原因,请指教是什么原因造成的不一致呢?