This benchmark evaluates deep learning models on fine-grained bird species classification and spatio-temporal behavior recognition in ecological video footage. It probes the model's ability to localize birds, identify their species, and classify their actions across video frames in real-world wetland environments. Use when the user wants to benchmark on Visual WetlandBirds Dataset, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill visual-wetlandbirds-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Visual Wetlandbirds Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-visual-wetlandbirds-eval)More formats (shields.io, HTML) on the badges page.
---
name: visual-wetlandbirds-eval
description: This benchmark evaluates deep learning models on fine-grained bird species classification and spatio-temporal behavior recognition in ecological video footage. It probes the model's ability to localize birds, identify their species, and classify their actions across video frames in real-world wetland environments. Use when the user wants to benchmark on Visual WetlandBirds Dataset, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2501.08931
bibtex_key: rodriguezjuan2025visualwetlandbirds
confidence: medium
---
# visual-wetlandbirds-eval
> Visual WetlandBirds Dataset: Bird Species Identification and Behavior Recognition in Videos — Rodriguez-Juan et al. (2025) (arXiv:2501.08931, 2025)
## What this evaluates
This benchmark evaluates deep learning models on fine-grained bird species classification and spatio-temporal behavior recognition in ecological video footage. It probes the model's ability to localize birds, identify their species, and classify their actions across video frames in real-world wetland environments.
## Datasets
- **Visual WetlandBirds Dataset** — total 178; splits: train (-1), val (-1), test (-1); repo https://github.com/3dperceptionlab/Visual-WetlandBirds
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Not specified in provided text. Standard classification accuracy is implied for species and behavior recognition tasks.
## Input / output format
**Input**: Video sequences (resolutions vary: 1920x1080, 1296x720, 1280x720, 960x540, 3840x2160) containing bird footage from Spanish wetlands.
**Output**: Per-frame predictions including bird species identity, bounding box coordinates, and behavior class labels.
## Scoring recipe
```python
def compute_accuracy(predictions, gold):
correct = sum(1 for p, g in zip(predictions, gold) if p == g)
return correct / len(gold) if gold else 0.0
```
## Common pitfalls
- Camera traps have fixed perspectives, resulting in short video clips per individual and requiring models to handle limited temporal context.
- Semi-automated annotation relies on YOLOv7 for initial localization, which may introduce bounding box errors that require manual correction.
- Subject tracking across frames is not natively supported by the annotation tool, requiring post-processing scripts to correlate bounding boxes using Euclidean distance.
## Evidence (verbatim from paper)
> To ensure annotation accuracy, the use of annotation tools has been extended, as they provide a user-friendly interface that makes this process easy and accessible to non-technical staff.
## Citation
```bibtex
@misc{rodriguezjuan2025visualwetlandbirds,
title={Visual WetlandBirds Dataset: Bird Species Identification and Behavior Recognition in Videos},
author={Rodriguez-Juan et al. (2025)},
year={2025},
note={arXiv:2501.08931}
}
```
- arXiv: 2501.08931
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!