face-match / README.md
dwancin's picture
sklearn has been imported
a5661ba verified
|
raw
history blame
No virus
1.62 kB
metadata
title: Face Match
short_description: Upload an Image to Identify Faces
emoji: 🤖
colorFrom: gray
colorTo: gray
sdk: gradio
sdk_version: 4.28.0
app_file: app.py
pinned: true
header: mini
license: mit
datasets:
  - dwancin/facial-embeds
task_categories:
  - zero-shot-image-classification
  - image-classification
tags:
  - computer-vision
  - face-recognition

Face Match

Upload an image, and the system will find the most similar face in our dataset.

Dataset

Details

Data Structure

Each record in the dataset represents an image, organized as follows:

  • id: Unique identifier.
  • file_name: Path to image ('images/{file_name}').
  • text: Name or label associated with the image.
  • embeddings: Numerical facial embedding vector.

Example Entry

ID File Name Text Embeddings
1 images/1.jpg Person Name [0.1, 0.2, ..., 0.0]
2 images/2.jpg Person Name [0.2, 0.3, ..., 0.0]
3 images/3.jpg Person Name [0.3, 0.4, ..., 0.0]
... ... ... ...