Instructions to use UWyo/wildlife-prairie-dog with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use UWyo/wildlife-prairie-dog with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("UWyo/wildlife-prairie-dog") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Upload yolo26s fine-tuned model (.pt, .onnx, model card)
Browse files
README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Model Card — Black-tailed Prairie Dog (*Cynomys ludovicianus*)
|
| 2 |
+
|
| 3 |
+
Single-class detection model for Black-tailed Prairie Dog, fine-tuned from the Ultralytics
|
| 4 |
+
YOLO26s backbone (pretrained on COCO).
|
| 5 |
+
|
| 6 |
+
**Model file:** `yolo26s_finetuned_prairie_dog_by_J.Gong_uwyo_2026-05-28.pt`
|
| 7 |
+
|
| 8 |
+
## Training Details
|
| 9 |
+
|
| 10 |
+
| Property | Value |
|
| 11 |
+
|----------|-------|
|
| 12 |
+
| Base model | yolo26s.pt (COCO pretrained, Ultralytics) |
|
| 13 |
+
| Architecture | YOLO26s |
|
| 14 |
+
| Input size | 640 × 640 |
|
| 15 |
+
| Epochs | 150 |
|
| 16 |
+
| Optimizer | MuSGD, lr=0.002, momentum=0.9 |
|
| 17 |
+
| Augmentation | mosaic=1.0, degrees=10°, scale=0.5, fliplr=0.5, hsv_h/s/v |
|
| 18 |
+
| Device | NVIDIA RTX 5000 Ada Generation (32 GB, CUDA 12.8) |
|
| 19 |
+
| Training date | 2026-05-28 |
|
| 20 |
+
| Author | Jian Gong, University of Wyoming |
|
| 21 |
+
|
| 22 |
+
## Dataset
|
| 23 |
+
|
| 24 |
+
Images sourced from iNaturalist (research-grade observations).
|
| 25 |
+
Bounding boxes generated by MegaDetector v5a (confidence ≥ 0.15).
|
| 26 |
+
Split 80 / 10 / 10 train / val / test.
|
| 27 |
+
|
| 28 |
+
| Split | Images |
|
| 29 |
+
|-------|-------:|
|
| 30 |
+
| train | 224 |
|
| 31 |
+
| val | 28 |
|
| 32 |
+
| test | 29 |
|
| 33 |
+
|
| 34 |
+
## Performance
|
| 35 |
+
|
| 36 |
+
Evaluated on the held-out validation set (best checkpoint).
|
| 37 |
+
|
| 38 |
+
| Metric | Value |
|
| 39 |
+
|--------|------:|
|
| 40 |
+
| mAP50 | 0.8355 |
|
| 41 |
+
| mAP50-95 | 0.7023 |
|
| 42 |
+
|
| 43 |
+
## Usage
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
from ultralytics import YOLO
|
| 47 |
+
model = YOLO("models/prairie_dog/yolo26s_finetuned_prairie_dog_by_J.Gong_uwyo_2026-05-28.pt")
|
| 48 |
+
results = model.predict("image.jpg", conf=0.25)
|
| 49 |
+
```
|
yolo26s_finetuned_prairie_dog_by_J.Gong_uwyo_2026-05-28.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:656f58bf11e0ac702123c0cc10e6102e300cd605d92a3a716dbbca930fd5d5d2
|
| 3 |
+
size 38120077
|
yolo26s_finetuned_prairie_dog_by_J.Gong_uwyo_2026-05-28.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cd81f870609a7c43ea00643d0c5db06dcc3b45120d5137bfd5265487206b4cf
|
| 3 |
+
size 20330821
|