File size: 1,343 Bytes
0086ae1
 
 
 
 
 
 
 
aa7548c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0086ae1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
license: apache-2.0
language:
- en
tags:
- computer vision
- wildfire
---
# 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.

```bash
pip install ultralytics
```

For alternative installation methods including Conda, Docker, and Git, please refer to the [Ultralytics Quickstart Guide](https://docs.ultralytics.com/quickstart).

## Usage

### Python

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

```python
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](https://docs.ultralytics.com/usage/python).

## Acknowledgements

This project utilizes the [Ultralytics YOLOv8 framework](https://ultralytics.com/yolov8). Special thanks to the Ultralytics team for their support and contributions to the open-source community.