Dhanush4149's picture
Update README.md
9ddb16a verified

YOLOv8n Gender Classification

This repository contains a YOLOv8 model fine-tuned for gender classification.

How to Use

Use ultralytics library to load and use the model:

from ultralytics import YOLO
model = YOLO('yolo8nGender.pt')
results = model.predict(source='image.jpg')
results.show()