Tencent / ncnn

ncnn is a high-performance neural network inference framework optimized for the mobile platform
Other
20.52k stars 4.17k forks source link

YoloV5-6.0的c++推理问题 #5752

Open PengPeng-JunJun opened 1 month ago

PengPeng-JunJun commented 1 month ago

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对应输出字符改怎么编写? 如果不是该原因,请指教是什么原因造成的不一致呢?