two-wheeler-model / README.md
sparshagra51's picture
Upload README.md with huggingface_hub
7534f24 verified
|
Raw
History Blame Contribute Delete
296 Bytes
# Two-Wheeler YOLOv8s
Trained on IDD + COCO motorcycle dataset.
## Metrics
- mAP@50: `0.7174`
- mAP@50-95: `0.4320`
- Precision: `0.8266`
- Recall: `0.6458`
## Usage
```python
from ultralytics import YOLO
model = YOLO('sparshagra51/two-wheeler-model')
results = model.predict('image.jpg')
```