Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 837 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 837 Bytes

Facial keypoints detection

Detect facial keypoints using Convolutional Neural Network in Pytorch.

Use image processing techniques and deep learning techniques to detect faces in an image and find facial keypoints, such as the position of the eyes, nose, and mouth on a face.

How to proceed?

  • First, design your model in model.py file.
  • Then, use notebook 2 to train your model.
  • Use notebook 3 to test your model along with haar cascades on different faces.

What to learn?

  1. How to transform input data
  2. How to design neural network architecture
  3. How to train and test your network
  4. Pipelining haar cascade algorithm along with your network
  5. Some applications of facial keypoints detection (Notebook 4)