face_verification / README.md
tahirsiddique's picture
Updated
6ff19e6

A newer version of the Streamlit SDK is available: 1.45.1

Upgrade
metadata
title: Face Verification
emoji: smile
colorFrom:
  '[object Object]': null
colorTo:
  '[object Object]': null
sdk: streamlit
sdk_version: 1.27.2
app_file: app.py
library_name: deepface
pinned: false

Model Name

Face Verification Model

Description

This model performs face verification by comparing two images and determining if the faces match.

Model Architecture

The model uses the VGG-Face architecture for facial recognition.

Input

The model expects URLs of two images for face verification.

Output

The output indicates whether the faces in the given images match or not.

Usage

from face_verification_script import verify_faces

# Example usage
result = verify_faces(img1_url='url_to_image1', img2_url='url_to_image2')
print(result)

Dependencies

deepface
Pillow
requests

License

This model is released under the MIT License.

Limitations and Known Issues The model may have limitations in certain lighting conditions.