Instructions to use UEmmanuel5/ProFSAM-Fire-Detector with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use UEmmanuel5/ProFSAM-Fire-Detector with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("UEmmanuel5/ProFSAM-Fire-Detector") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Upload README.md
Browse files
README.md
CHANGED
|
@@ -28,8 +28,6 @@ Ultralytics YOLOv11n initialized then trained 100 epochs.
|
|
| 28 |
|
| 29 |
### Script used
|
| 30 |
```python
|
| 31 |
-
import os
|
| 32 |
-
os.environ["CUDA_VISIBLE_DEVICES"] = "0"
|
| 33 |
from ultralytics import YOLO
|
| 34 |
import torch
|
| 35 |
torch.backends.cudnn.benchmark = True
|
|
|
|
| 28 |
|
| 29 |
### Script used
|
| 30 |
```python
|
|
|
|
|
|
|
| 31 |
from ultralytics import YOLO
|
| 32 |
import torch
|
| 33 |
torch.backends.cudnn.benchmark = True
|