Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 2.57 KB

File metadata and controls

57 lines (43 loc) · 2.57 KB

Face Recognition System

In this project, we focus on MLOps by developing a face recognition system. The objective is to allow users to enroll in the system by taking a photograph of their face. During subsequent logins, their faces will be verified before granting access. We will utilize a pre-trained model from the MTCNN library for this purpose.

User Instructions

  1. Clone the GitHub repository
  • git clone https://github.com/Ignatiusboadi/face-detection-and-recognition.git
    cd face-detection-and-recognition
    
  1. Create a virtual environment
  • virtualenv venv
    source venv/bin/activate
    
  1. Install the required packages
  • pip install -r requirements.txt
    
  1. To run the backend locally, run the folllowing line of code
  • uvicorn main:app --reload