UWyo/wildlife-north-american-wildlife
014
Model Card — North American Wildlife (26-class)
Single-stage object detection model covering 26 North American wildlife species, fine-tuned from the Ultralytics YOLO26s backbone (pretrained on COCO).
Model file: yolo26s_finetuned_26-wildlife-class_by_J.Gong_uwyo_2026-05-28.pt
Classes
Training Details
Dataset
Images sourced from iNaturalist (research-grade observations). Bounding boxes generated by MegaDetector v5a (confidence ≥ 0.15), then converted to YOLO format. Split 80 / 10 / 10 train / val / test.
Performance
Evaluated on the held-out validation set (best checkpoint).
Per-class breakdown requires re-running training/04_evaluate.py --weights <this model>.Usage
from ultralytics import YOLO
model = YOLO("models/north_american_wildlife/yolo26s_finetuned_26-wildlife-class_by_J.Gong_uwyo_2026-05-28.pt")
results = model.predict("image.jpg", conf=0.25)
for r in results:
for box in r.boxes:
print(model.names[int(box.cls)], float(box.conf))Notes
- Use this model as a general-purpose wildlife detector, or as a base for per-species fine-tuning (
models/north_american_wildlife/→ species folder). - For deployment on Jetson Orin Nano, export to TensorRT FP16:
yolo export model=<this file> format=engine half=True imgsz=640
