Mateo commited on
Commit
0f59f34
·
verified ·
1 Parent(s): 8957c4f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -3
README.md CHANGED
@@ -1,3 +1,47 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - computer vision
7
+ - wildfire
8
+ ---
9
+ # Pyronear YOLOv11s for Early Wildfire Detection
10
+
11
+ This repository contains the custom YOLOv11s model trained by Pyronear for early wildfire detection. Our model leverages the powerful capabilities of the Ultralytics YOLOv11 framework to accurately identify potential wildfire hotspots in real-time.
12
+
13
+ ## Installation
14
+
15
+ Install the ultralytics package including all requirements in a Python>=3.8 environment with PyTorch>=1.8.
16
+
17
+ ```bash
18
+ pip install ultralytics
19
+ ```
20
+
21
+ For alternative installation methods including Conda, Docker, and Git, please refer to the [Ultralytics Quickstart Guide](https://docs.ultralytics.com/quickstart).
22
+
23
+ ## Usage
24
+
25
+ ### Python
26
+
27
+ You can also use the YOLOv11 model in a Python environment:
28
+
29
+ ```python
30
+ from ultralytics import YOLO
31
+ from PIL import Image
32
+
33
+ # Load the model
34
+ model = YOLO('pyronear/yolov11s.pt')
35
+
36
+ # Run inference
37
+ results = model('path/to/your/image.jpg', conf=0.2, iou=0.1)
38
+
39
+ # Display results
40
+ results.show()
41
+ ```
42
+
43
+ For more examples and detailed usage, see the [YOLOv11 Python Docs](https://docs.ultralytics.com/usage/python).
44
+
45
+ ## Acknowledgements
46
+
47
+ This project utilizes the [Ultralytics YOLOv11 framework](https://ultralytics.com/yolov11). Special thanks to the Ultralytics team for their support and contributions to the open-source community.