Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 979 Bytes

File metadata and controls

30 lines (23 loc) · 979 Bytes

Facial Recognition Authentication (Siamese Network)

This project implements a Facial Recognition Authentication System using a Siamese Network.
It uniquely identifies individuals during authentication activities like login by learning similarity functions.

Installation

pip install -r requirements.txt

Run Locally

python application.py
# open http://localhost:5000

Deploy on Heroku/Render

  • Ensure Procfile and requirements.txt are included.
  • Add your trained siamese_model.h5 at the project root.
  • Deploy 🚀

Usage

  • Upload two face images.
  • The system outputs a similarity score between 0 and 1.
  • Higher scores mean higher similarity.