From the course: Deep Learning: Face Recognition

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Tuning the face recognition system

Tuning the face recognition system - Python Tutorial

From the course: Deep Learning: Face Recognition

Start my 1-month free trial

Tuning the face recognition system

- [Instructor] Let's see how our face recognition system performs in different scenarios. Let's open up face_recognition_tuning.py. This code is a completed face recognition system and those have recognized three people from three different images, listed here. So we've got person_1.jpg, which is this person. Person two, and person three. Alright, let's close this. And then down here on line 21, we load unknown_2.jpg. We wanna check that image to see who it matches. So if you look at that file, we can see that it should match all three people. Let's run the code and make sure that happens. Right+click, run. Great, I found all three people. It looks like everything's working perfectly. Let's try something a little bit more difficult. Let's close this and let's open up unknown_7.jpg. This image is much lower resolution than the other images. Because of that, the system might run into problems. Let's close this and go back to the code. Here on line 21, let's update the code to say…

Contents