AlfredXiangWu / face_verification_experiment

Original Caffe Version for LightCNN-9. Highly recommend to use PyTorch Version (https://github.com/AlfredXiangWu/LightCNN)
726 stars 325 forks source link

Some questions regarding LFW benchmark report #104

Closed ntvy95 closed 7 years ago

ntvy95 commented 7 years ago

Hello, I'm new to these technologies so pardon me if I say anything ridiculous.

According to LFW's new update, it looks like in unsupervised protocol they adopt AUC as a measure of accuracy rather than EER and they do not allow the label or identity information to be introduced in the training phase in any way. So it looks like you are not following LFW's official unsupervised setting? Can you please provide me the link / paper to the benchmark that you are following? I'm curious about this benchmark and would like to learn more.

Aside from that, I also have a question regarding the VGG performance in Table 3. Did you use the configuration A model provided by VGG or you yourself additionally train VGG's configuration B network based on their provided configuration A model? If it is the latter case, can you please publish your trained configuration B model? If you can't, can you please tell me the information of the two convolution layers that you added to turn configuration A into configuration B?

Thank you very much!

AlfredXiangWu commented 7 years ago
  1. The "unsupervised" in the paper means the model is not trained on LFW followed the 10-fold evaluation. We train the CNN on MS-Celeb-1M and extract features of LFW. And then we directly compute cosine similarities of 6000 pairs.

  2. We only use the official released VGG model.

ntvy95 commented 7 years ago

Thank you very much for your reply! I have found that MS-Celeb-1M and LFW share some mutual identities, such as Charlotte Rampling. So did you exclude identities in LFW from MS-Celeb-1M before the training or not?

AlfredXiangWu commented 7 years ago

I don't remove the inclusive identities of LFW in MS-Celeb-1M.

ntvy95 commented 7 years ago

Thank you very much for your reply!