Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- detection-datasets/fashionpedia
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
pipeline_tag: object-detection
|
7 |
+
tags:
|
8 |
+
- YOLOS
|
9 |
+
- Object detection
|
10 |
+
- KYC
|
11 |
+
- Face detection
|
12 |
+
base_model:
|
13 |
+
- hustvl/yolos-small
|
14 |
+
library_name: transformers
|
15 |
+
---
|
16 |
+
|
17 |
+
# YOLO-Face-4-KYC
|
18 |
+
|
19 |
+
A fine-tuned YOLO model for detecting facial features and personal headwear, including glasses, hats, and masks — optimized for identity verification and KYC (Know Your Customer) applications. This model is built upon the YOLOS architecture and trained on a filtered and relabeled subset of the [Fashionpedia dataset](https://huggingface.co/datasets/detection-datasets/fashionpedia), focusing exclusively on categories relevant to liveness verification and facial compliance checks. For more details of the implementation, check out the source code [here](https://github.com/Genereux-akotenou/Yolo-Face-4-Kyc)
|
20 |
+
|
21 |
+
## Supported Categories
|
22 |
+
|
23 |
+
The model detects the following classes:
|
24 |
+
|
25 |
+
```python
|
26 |
+
CATEGORIES = [
|
27 |
+
'face',
|
28 |
+
'glasses',
|
29 |
+
'hat',
|
30 |
+
'mask',
|
31 |
+
'headband',
|
32 |
+
'head covering'
|
33 |
+
]
|
34 |
+
```
|
35 |
+
<img src="https://raw.githubusercontent.com/genereux-akotenou/Yolo-Face-4-Kyc/master/docs-utils/img1.png" style="width: 15em;"/>
|