-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when loading yolov3-tiny.weights #11
Comments
Please try to remove the last parameter "arc" of the constructor in the yolov3Layer custom layer. |
Thanks. |
Is there any mirror of baidu serwer providing weights and .cfg files? |
Can you please tell me where do i need to put arc='default'. |
|
|
remove these arc parameters. my coding running well............. |
你好,我删除arc之后,去跑预测,就会有误,,置信度很低的都显示上去了,这怎么解决呢?? |
Hi,
I got error when loading yolov3 weights after module No 17.
This module No: 1 [net] ,have #params:0 ,FLops:0 ,feature map size:(416416),channels in:- ,channels out:3
This module No: 2 [convolutional] ,have #params:512 ,FLops:88604672 ,feature map size:(416416),channels in:3 ,channels out:16
This module No: 3 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(208208),channels in:16 ,channels out:16
This module No: 4 [convolutional] ,have #params:4768 ,FLops:206282752 ,feature map size:(208208),channels in:16 ,channels out:32
This module No: 5 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(104104),channels in:32 ,channels out:32
This module No: 6 [convolutional] ,have #params:18752 ,FLops:202821632 ,feature map size:(104104),channels in:32 ,channels out:64
This module No: 7 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(52 *52 ),channels in:64 ,channels out:64
This module No: 8 [convolutional] ,have #params:74368 ,FLops:201091072 ,feature map size:(52 *52 ),channels in:64 ,channels out:128
This module No: 9 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(26 *26 ),channels in:128 ,channels out:128
This module No:10 [convolutional] ,have #params:296192 ,FLops:200225792 ,feature map size:(26 *26 ),channels in:128 ,channels out:256
This module No:11 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(13 *13 ),channels in:256 ,channels out:256
This module No:12 [convolutional] ,have #params:1182208 ,FLops:199793152 ,feature map size:(13 *13 ),channels in:256 ,channels out:512
This module No:13 [maxpool] ,have #params:0 ,FLops:0 ,feature map size:(13 *13 ),channels in:512 ,channels out:512
This module No:14 [convolutional] ,have #params:4723712 ,FLops:798307328 ,feature map size:(13 *13 ),channels in:512 ,channels out:1024
This module No:15 [convolutional] ,have #params:263424 ,FLops:44518656 ,feature map size:(13 *13 ),channels in:1024 ,channels out:256
This module No:16 [convolutional] ,have #params:1182208 ,FLops:199793152 ,feature map size:(13 *13 ),channels in:256 ,channels out:512
This module No:17 [convolutional] ,have #params:130815 ,FLops:22107735 ,feature map size:(13 *13 ),channels in:512 ,channels out:255
Not enough input arguments.
Error in yolov3Layer (line 54)
', arc:',arc];
Error in importDarkNetLayers (line 372)
yolov3_layer = yolov3Layer(['yolo_v3_id',num2str(yoloIndex)],...
Error in importDarknetWeights (line 30)
moduleTypeList,moduleInfoList,layerToModuleIndex] = importDarkNetLayers(cfgfile);% only weights需要cutoff,layer都导入
Error in yolov3v4Predict (line 24)
[layerGraphYolo,hyperParams] = importDarknetWeights(cfg_file,weight_file);
Error in detect (line 26)
outFeatures = yolov3v4Predict(cfg_file,weight_file,im);% M*(5+nc) ,为[x,y,w,h,Pobj,p1,p2,...,pn]
The text was updated successfully, but these errors were encountered: