File size: 316 Bytes
2d7f226
 
 
 
 
 
 
 
 
 
9ddb16a
2d7f226
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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:

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