Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 868 Bytes

README.md

File metadata and controls

43 lines (33 loc) · 868 Bytes

YOLOv8Face

Face Detection with YOLOv8

Examples

Material Bread logo

Usage

  • Make a pip env
python3 -m venv ./venv
  • Activate the env
source ./venv/bin/activate
  • Install ultralytics
pip install ultralytics
  • Use infer.py module for inference
python infer.py

Training process

  1. I made a dataset of over 20k images containing people.
  2. I get ground-truth bounding boxes using MTCNN
  3. Trained YOLOv8 on the dataset for face detection
Please note that the dataset and the training procedure should be improved for boosting the performance.

Refs

A big 👍 for ultralytics