Face Recognition Using Pytorch(github.com)
github.com
Face Recognition Using Pytorch
https://github.com/timesler/facenet-pytorch
5 comments
I have used this before: https://github.com/blaueck/tf-mtcnn which uses tensorflow for all the xNets.
Example in rust: https://cetra3.github.io/blog/face-detection-with-tensorflow...
Example in rust: https://cetra3.github.io/blog/face-detection-with-tensorflow...
I'm not aware of any implementation with these features, but they are both on the roadmap for the linked repo. Both should also be achievable. Batch processing, in particular, will be a straight-forward change and should result in quite a speed-up. Although it will require the input images to have the same dimensions.
Good stuff.
In my experience inputs to MTCNN tend to be full frames, so the uniform dimension requirement is usually met.
In my experience inputs to MTCNN tend to be full frames, so the uniform dimension requirement is usually met.
I usually use this one: https://github.com/deepinsight/insightface
That's a good repo. It uses mxnet right? The aim of the repo in the topic was mainly to provide a clean implementation that could slot easily into an existing pytorch workflow.
Thanks for sharing. I'm working on face recognition with homomorphic encryption, therefore without compromising the user privacy. The bold goal is the first privacy preserving videocamera.
If you find this interesting, I would love to chat about it.
That sounds like a pretty interesting challenge. Happy to chat more - you can get in touch using the contact details on github.
Where in the page is the evidence of the speed claim made in the headline for this submission?
Edit: title has now been changed
Edit: title has now been changed
So many ML repos make this mistake in pre/post-processing and end up bottlenecked on CPU.
Anyone know of an MTCNN that's been ported to run more or less fully on GPU? (Or even that does batching instead of an image-by-image approach?)