CoolFace
Datasetpublic

lila-bc-community/missouri-camera-traps

Missouri Camera Traps — Detection Camera-trap images with bounding-box annotations, from the LILA BC Missouri Camera Traps dataset. Unofficial community mirror — not affiliated with or endorsed by LILA BC. This is an HF-native, viewer-ready object-detection build (parquet, dataset viewer renders boxes, trains in one command). For the full multi-dataset collection use the streaming loader society-ethics/lila_camera_traps. What this is This build keeps only the… See the full description on the dataset page: https://huggingface.co/datasets/lila-bc-community/missouri-camera-traps.

sourceHugging Facecdla-permissive-1.0updated 4mo agoView on Hugging Face
0likes17downloads
Dataset Card

Missouri Camera Traps — Detection

Camera-trap images with bounding-box annotations, from the LILA BC Missouri Camera Traps dataset.

Unofficial community mirror — not affiliated with or endorsed by LILA BC. This is an HF-native, viewer-ready object-detection build (parquet, dataset viewer renders boxes, trains in one command). For the full multi-dataset collection use the streaming loader `society-ethics/lila_camera_traps`.

What this is

This build keeps only the bounding-box–annotated subset of Missouri Camera Traps (--boxed-only): 947 images, ~956 boxes, 20 species. The original LILA dataset is larger (~25k images) and mostly sequence-level classification labels — only a subset carries boxes, so the class distribution here differs from the full set's headline species. Non-object labels (empty, human, etc.) are excluded.

Species (20 categories)

SpeciesBoxesSpeciesBoxes
agouti87great_tinamou44
collared_peccary82common_opossum44
red_deer68red_squirrel39
redbrocketdeer63white-nosed_coati38
ocelot63bird_spec38
paca57spiny_rat34
wild_boar56wood_mouse29
whitetaileddeer47european_hare28
roe_deer46red_fox25
mouflon45coiban_agouti23

Structure

image     : Image
image_id  : string
width     : int32
height    : int32
objects   : { bbox: [x, y, w, h] (COCO xywh), category: ClassLabel, area: float32 }

Usage

python
from datasets import load_dataset

ds = load_dataset("lila-bc-community/missouri-camera-traps", split="train")

Train an object detector (one command)

bash
hf jobs uv run --flavor l4x1 \
  https://huggingface.co/datasets/hugging-face-vision-trainer/scripts/raw/main/object_detection_training.py \
  --dataset_name lila-bc-community/missouri-camera-traps \
  --model_name_or_path facebook/detr-resnet-50 \
  --output_dir missouri-detector --do_train --do_eval --push_to_hub

Source, license & citation

bibtex
@article{zhang2016animal,
  title={Animal detection from highly cluttered natural scenes using spatiotemporal
         object region proposals and patch verification},
  author={Zhang, Zhi and He, Zhihai and Cao, Guitao and Cao, Wenming},
  journal={IEEE Transactions on Multimedia},
  volume={18}, number={10}, pages={2079--2092}, year={2016}, publisher={IEEE}
}

See also