Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Face Verification #1855

Open
pavitraag opened this issue Jul 7, 2024 · 2 comments
Open

Add Face Verification #1855

pavitraag opened this issue Jul 7, 2024 · 2 comments
Labels
enhancement New feature or request

Comments

@pavitraag
Copy link

The Goal of the project is to do Face recognition task using Siamese Neural Network that is trained over a triplet loss function , This is useful in situations where you have limited dataset for training the model.

This codebase implements a face recognition system using a Siamese Neural Network architecture. It helps you understand how this approach works and tackles the challenge of large datasets by employing one-shot learning techniques.

Model Functionality:

Feature Extraction: Generates a 128-dimensional vector embedding for any input image, capturing its key features.
Similarity Measurement: Compares the 128-dimensional vectors of two images to determine their similarity and classify them as belonging to the same person or not.
Triplet Loss for Training:

The model leverages a triplet loss function during training. This function uses triplets of images: anchor (reference), positive (same person), and negative (different person). It aims to:

Minimize the distance between the anchor and positive embeddings.
Maximize the distance between the anchor and negative embeddings.
This approach helps the model learn robust representations for effective face discrimination.

@pavitraag pavitraag added the enhancement New feature or request label Jul 7, 2024
Copy link

github-actions bot commented Jul 7, 2024

Hello @pavitraag, Thank you for generating an issue to this project! Please wait while we get back to you.

@pavitraag
Copy link
Author

hey @akshitagupta15june can u please assign me this under gssoc24

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant