layumi / 2015_Face_Detection

CVPR2015 Cascade CNNs for Face Detection
Other
135 stars 70 forks source link

The version of matconvnet #14

Open caiqi opened 8 years ago

caiqi commented 8 years ago

What's the version you are using for this project? I tried the newest version but it failed with the error:

Error in vl_simplenn (line 182) res(i+1).x = vl_nnconv(res(i).x, l.weights{1}, l.weights{2}, 'pad', l.pad, 'stride', l.stride) ;

Thanks!

layumi commented 8 years ago

@caiqi It's easy to solve. The matconvnet use two different name.
weights{1} weights{2} and filters bias
You may set a break point and see what to replace them

caiqi commented 8 years ago

Thanks!