Edit model card

Pyronear YOLOv8s for Early Wildfire Detection

This repository contains the custom YOLOv8s model trained by Pyronear for early wildfire detection. Our model leverages the powerful capabilities of the Ultralytics YOLOv8 framework to accurately identify potential wildfire hotspots in real-time.

Installation

Install the ultralytics package including all requirements in a Python>=3.8 environment with PyTorch>=1.8.

pip install ultralytics

For alternative installation methods including Conda, Docker, and Git, please refer to the Ultralytics Quickstart Guide.

Usage

Python

You can also use the YOLOv8 model in a Python environment:

from ultralytics import YOLO
from PIL import Image

# Load the model
model = YOLO('pyronear/yolov8s.pt')

# Run inference
results = model('path/to/your/image.jpg', conf=0.2, iou=0.1)

# Display results
results.show()

For more examples and detailed usage, see the YOLOv8 Python Docs.

Acknowledgements

This project utilizes the Ultralytics YOLOv8 framework. Special thanks to the Ultralytics team for their support and contributions to the open-source community.

Downloads last month

-

Downloads are not tracked for this model. How to track
Unable to determine this model's library. Check the docs .