Face_recognition: where did the value of 128 d dimensional array comes from ?

Created on 8 Aug 2020  路  1Comment  路  Source: ageitgey/face_recognition

  • face_recognition version: latest
  • Python version:3.6
  • Operating System: Ubuntu 20

i just wanna ask where did the value of 128 d dimensional array comes from ? is it the vector value from HOG feature descriptor or something else ? thank you in advance

Most helpful comment

I think I can help with this since I worked with dlib before. The 128D vector is the outputted feature vector from a ResNet DNN. dlib has a Python API for it's C++ models that obscures the details of what's going on...

Follow this link to see an example of dlib's facial recognition. You'll see that anet_type is the DNN template that is later initialized as net and takes in the processed faces as a parameter. This then outputs the 128D vector called face_descriptors.

The specific model that's being used is the dlib_face_recognition_resnet_model_v1.

I hope this was helpful. Let me know if you have other questions or if I missed something.

>All comments

I think I can help with this since I worked with dlib before. The 128D vector is the outputted feature vector from a ResNet DNN. dlib has a Python API for it's C++ models that obscures the details of what's going on...

Follow this link to see an example of dlib's facial recognition. You'll see that anet_type is the DNN template that is later initialized as net and takes in the processed faces as a parameter. This then outputs the 128D vector called face_descriptors.

The specific model that's being used is the dlib_face_recognition_resnet_model_v1.

I hope this was helpful. Let me know if you have other questions or if I missed something.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Nijinsha picture Nijinsha  路  5Comments

paulaceccon picture paulaceccon  路  5Comments

damey2011 picture damey2011  路  3Comments

ramineniraviteja picture ramineniraviteja  路  5Comments

InnovativeInventor picture InnovativeInventor  路  6Comments