Ungraceful
Ungraceful

Reputation: 87

iOS Facial Recognition Continuous Learning

I was tasked to find the best way to create a facial recognition feature on an app with machine learning. This feature will be used to clock employees into the app. The feature will support...

What I've tried.

Upvotes: 1

Views: 1261

Answers (2)

Lou Franco
Lou Franco

Reputation: 89232

Take a look at Turi Create -- also from Apple: https://github.com/apple/turicreate

It can do everything Create ML does, but is in python and programmable, so you could automate the whole process on your backend. If you know how to do it in CreateML, you will find Turi Create easy to pick up.

Upvotes: 1

velociraptor11
velociraptor11

Reputation: 604

To have an accurate result you should look into more powerful machine learning models. Here is an example of a really powerful face recognition model: https://github.com/davidsandberg/facenet.

Now, the next question becomes how would you integrate your app with this new model. This is really up to you but I would recommend you to checkout a few backend alternatives like leveraging AWS Services (EC2 compute servers , Sagemaker, API Gateway, etc) to run and coordinate the inferences. A couple of benefits to doing this is that your app would just be mainly front-end thus making it light and also scalable across different and older IOS platforms and devices. But more importantly, it gives you extra leg-space to do more sophisticated things in the future, where as using CoreML you will be mainly limited to on-device computational power and also the swift-based language.

However, leveraging cloud services would also have other cons attached like the learning curve (learning AWS Services) and potentially privacy issues.

This is just one of the ways, there are many other similar cloud providers like Google , IBM and Azure. Without knowing further your timeline, budget, technical expertise, I can only give you these options and the rest of the choice is yours to make

Upvotes: 0

Related Questions