File size: 1,612 Bytes
73cc4cf
 
178ce84
 
b9b8aa5
 
73cc4cf
b080c4d
73cc4cf
b9b8aa5
4f8d501
73cc4cf
b9b8aa5
e926420
b9b8aa5
e926420
 
b9b8aa5
e926420
 
73cc4cf
a5661ba
 
73cc4cf
b9b8aa5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: Face Match
short_description: Upload an Image to Identify Faces
emoji: 🤖
colorFrom: gray
colorTo: gray
sdk: gradio
sdk_version: 4.37.2
app_file: app.py
pinned: true
header: default
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
- **Creator:** [Daniel Ialcin Misser Westergaard](https://huggingface.co/dwancin)
- **License:** [MIT](https://opensource.org/licenses/MIT)
- **Repository:** [dwancin/facial-embeds](https://huggingface.co/datasets/dwancin/facial-embeds)
- **Demo:** [dwancin/face-match](https://huggingface.co/spaces/dwancin/face-match)

### 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]                         |
| ...| ...            | ...           | ...                                          |