Instructions to use kairess/baby-face-detection-yolov10 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use kairess/baby-face-detection-yolov10 with ultralytics:
from ultralytics import YOLOvv10 model = YOLOvv10.from_pretrained("kairess/baby-face-detection-yolov10") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - YOLOv10
How to use kairess/baby-face-detection-yolov10 with YOLOv10:
from ultralytics import YOLOvv10 model = YOLOvv10.from_pretrained("kairess/baby-face-detection-yolov10") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
metadata
license: agpl-3.0
library_name: ultralytics
tags:
- object-detection
- computer-vision
- yolov10
datasets:
- detection-datasets/coco
repo_url: https://github.com/THU-MIG/yolov10
inference: false
Model Description
YOLOv10: Real-Time End-to-End Object Detection
Installation
pip install git+https://github.com/THU-MIG/yolov10.git
Training and validation
from ultralytics import YOLOv10
model = YOLOv10.from_pretrained('jameslahm/yolov10n')
# Training
model.train(...)
# after training, one can push to the hub
model.push_to_hub("your-hf-username/yolov10-finetuned")
# Validation
model.val(...)
Inference
Here's an end-to-end example showcasing inference on a cats image:
from ultralytics import YOLOv10
model = YOLOv10.from_pretrained('jameslahm/yolov10n')
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)
which shows:
BibTeX Entry and Citation Info
@article{wang2024yolov10,
title={YOLOv10: Real-Time End-to-End Object Detection},
author={Wang, Ao and Chen, Hui and Liu, Lihao and Chen, Kai and Lin, Zijia and Han, Jungong and Ding, Guiguang},
journal={arXiv preprint arXiv:2405.14458},
year={2024}
}
