AdamCodd commited on
Commit
329441f
·
verified ·
1 Parent(s): 093a7cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -5,7 +5,7 @@ base_model:
5
  pipeline_tag: object-detection
6
  ---
7
 
8
- ## YOLOv11-Face-Detection
9
 
10
  A lightweight face detection model based on YOLO architecture ([YOLOv11 nano](https://huggingface.co/Ultralytics/YOLO11)), trained for 225 epochs on the WIDERFACE dataset.
11
 
@@ -23,7 +23,7 @@ It achieves the following results on the evaluation set:
23
  from huggingface_hub import hf_hub_download
24
  from ultralytics import YOLO
25
 
26
- model_path = hf_hub_download(repo_id="AdamCodd/YOLOv11-face-detection", filename="model.pt")
27
  model = YOLO(model_path)
28
 
29
  results = model.predict("/path/to/your/image", save=True) # saves the result in runs/detect/predict
 
5
  pipeline_tag: object-detection
6
  ---
7
 
8
+ ## YOLOv11n-Face-Detection
9
 
10
  A lightweight face detection model based on YOLO architecture ([YOLOv11 nano](https://huggingface.co/Ultralytics/YOLO11)), trained for 225 epochs on the WIDERFACE dataset.
11
 
 
23
  from huggingface_hub import hf_hub_download
24
  from ultralytics import YOLO
25
 
26
+ model_path = hf_hub_download(repo_id="AdamCodd/YOLOv11n-face-detection", filename="model.pt")
27
  model = YOLO(model_path)
28
 
29
  results = model.predict("/path/to/your/image", save=True) # saves the result in runs/detect/predict