AlfredXiangWu / face_verification_experiment

Original Caffe Version for LightCNN-9. Highly recommend to use PyTorch Version (https://github.com/AlfredXiangWu/LightCNN)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no an issue but a doubt

shashankvkt opened this issue · comments

Hello sir,
Using your caffemodel(A) trained on casia webface database..I actually wanted to extract features using matcaffe by first loading the model(Deploy) and the weights of model A.
while doing so i create a variable
net = caffe.Net(model, weights, 'test');
to compute the features i do, feats = net.forward({img});

but the output of the feats variable are all zeros. Could you kindly guide me to find a solution.

Thank you.

The model A and B were trained on caffe-rc two years ago. It seems the interfaces of matcaffe and the details of implements are different between caffe-rc and caffe-1.0. So the released model A is not used by the current caffe version.

I suggest you use the model C which is trained on caffe-rc3.

Cool thank you