Instructions to use UWyo/wildlife-pika with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use UWyo/wildlife-pika 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-pika") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Model Card โ American Pika (Ochotona princeps)
Single-class detection model for American Pika, fine-tuned from the Ultralytics YOLO26s backbone (pretrained on COCO).
Model file: yolo26s_finetuned_pika_by_J.Gong_uwyo_2026-05-28.pt
Training Details
| Property | Value |
|---|---|
| Base model | yolo26s.pt (COCO pretrained, Ultralytics) |
| Architecture | YOLO26s |
| Input size | 640 ร 640 |
| Epochs | 150 |
| Optimizer | MuSGD, lr=0.002, momentum=0.9 |
| Augmentation | mosaic=1.0, degrees=10ยฐ, scale=0.5, fliplr=0.5, hsv_h/s/v |
| Device | NVIDIA RTX 5000 Ada Generation (32 GB, CUDA 12.8) |
| Training date | 2026-05-28 |
| Author | Jian Gong, University of Wyoming |
Dataset
Images sourced from iNaturalist (research-grade observations). Bounding boxes generated by MegaDetector v5a (confidence โฅ 0.15). Split 80 / 10 / 10 train / val / test.
| Split | Images |
|---|---|
| train | 217 |
| val | 27 |
| test | 28 |
Performance
Evaluated on the held-out validation set (best checkpoint).
| Metric | Value |
|---|---|
| mAP50 | 0.8985 |
| mAP50-95 | 0.7769 |
Usage
from ultralytics import YOLO
model = YOLO("models/pika/yolo26s_finetuned_pika_by_J.Gong_uwyo_2026-05-28.pt")
results = model.predict("image.jpg", conf=0.25)
- Downloads last month
- 30