Evaluates video action recognition models on classifying untrimmed real-world videos of elderly individuals into six daily activity categories. It probes robustness and generalization in wild, uncontrolled settings using a held-out test set. Use when the user wants to benchmark on EAR Challenge Test Set, 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 ear-challenge-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ear Challenge Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-ear-challenge-eval)More formats (shields.io, HTML) on the badges page.
---
name: ear-challenge-eval
description: Evaluates video action recognition models on classifying untrimmed real-world videos of elderly individuals into six daily activity categories. It probes robustness and generalization in wild, uncontrolled settings using a held-out test set. Use when the user wants to benchmark on EAR Challenge Test Set, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2503.07821
bibtex_key: duong2025ear
confidence: high
---
# ear-challenge-eval
> Elderly Activity Recognition in the Wild: Results from the EAR Challenge — Duong (2025) (arXiv:2503.07821, 2025)
## What this evaluates
Evaluates video action recognition models on classifying untrimmed real-world videos of elderly individuals into six daily activity categories. It probes robustness and generalization in wild, uncontrolled settings using a held-out test set.
## Datasets
- **EAR Challenge Test Set** — total 4616; splits: test (4616)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Average accuracy of predictions on the test set, calculated as the number of correctly classified videos divided by the total number of videos.
## Input / output format
**Input**: Untrimmed video files representing daily activities of elderly individuals in real-world settings.
**Output**: A single class label from six predefined categories: locomotion, manipulation, hygiene, eating, communication, and leisure.
## Scoring recipe
```python
def calculate_accuracy(predictions, gold_labels):
correct = sum(1 for p, g in zip(predictions, gold_labels) if p == g)
return correct / len(gold_labels)
```
## Common pitfalls
- The test set is untrimmed and unlabeled during the challenge, requiring models to handle variable-length videos without explicit temporal boundaries.
- Leaderboard rankings are determined solely by the private split (50% of test set), so public split performance may not reflect final ranking.
- Performance heavily depends on training duration; the authors note significant gains from 10 to 100 epochs, which may not be feasible under competition time limits.
## Evidence (verbatim from paper)
> The evaluation metric used for ranking submissions was the average accuracy of predictions on the test set.
## Citation
```bibtex
@misc{duong2025ear,
title={Elderly Activity Recognition in the Wild: Results from the EAR Challenge},
author={Duong (2025)},
year={2025},
note={arXiv:2503.07821}
}
```
- arXiv: 2503.07821
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!