A fine-tuned YOLOv8 Nano model trained on the Datacluster Labs Mobile Phone Image Dataset for object detection of mobile phones in images.
1from ultralytics import YOLO
2
3# Load model from Hugging Face
4model = YOLO('huggingface://IndUSV/yolov8n-mobile-phone-detector/pytorch_model.bin')
5
6# Run inference
7results = model.predict(source='image.jpg', conf=0.5)
The model was trained on the Datacluster Labs Mobile Phone Image Dataset which contains:
Check results.csv for detailed training metrics and evaluation results.
This model is released under the MIT License.