Evaluates a model's ability to recognize human activities from RGB videos by leveraging skeleton-driven attention to focus on spatial-temporal regions of interest. It measures classification accuracy under standard cross-subject and cross-view protocols. Use when the user wants to benchmark on NTU-RGB+D, Northwestern-UCLA Multiview, 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 ntu-rgb-d-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ntu Rgb D Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-ntu-rgb-d-eval)More formats (shields.io, HTML) on the badges page.
---
name: ntu-rgb-d-eval
description: Evaluates a model's ability to recognize human activities from RGB videos by leveraging skeleton-driven attention to focus on spatial-temporal regions of interest. It measures classification accuracy under standard cross-subject and cross-view protocols. Use when the user wants to benchmark on NTU-RGB+D, Northwestern-UCLA Multiview, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2004.13979
bibtex_key: yu2020skeleton
confidence: high
---
# ntu-rgb-d-eval
> Skeleton Focused Human Activity Recognition in RGB Video — Yu et al. (2020) (arXiv:2004.13979, 2020)
## What this evaluates
Evaluates a model's ability to recognize human activities from RGB videos by leveraging skeleton-driven attention to focus on spatial-temporal regions of interest. It measures classification accuracy under standard cross-subject and cross-view protocols.
## Datasets
- **NTU-RGB+D** — total ?; splits: cross-subject (-1), cross-view (-1)
- **Northwestern-UCLA Multiview** — total ?; splits: cross-view (-1)
## Metrics
- `accuracy` **(primary)** — range: percent
- Percentage of correctly classified video samples out of the total number of samples in the evaluation split.
## Input / output format
**Input**: RGB video frames and corresponding skeleton joint coordinates for each frame.
**Output**: Predicted activity class label.
## Scoring recipe
```python
correct = sum(1 for pred, gold in zip(predictions, gold_labels) if pred == gold)
accuracy = (correct / len(gold_labels)) * 100
return accuracy
```
## Common pitfalls
- Must strictly follow the official cross-subject and cross-view train/test splits for NTU-RGB+D.
- Ensemble methods require freezing the GCN skeleton encoder weights during RGB branch training and evaluation to match reported results.
- Accuracy is reported as a percentage, not a decimal fraction.
## Evidence (verbatim from paper)
> In Fig. 6, we illustrated the effectiveness of the weighted ST-ROI method that improves the recognition accuracy of every activity of Northwestern-UCLA Dataset.
## Citation
```bibtex
@misc{yu2020skeleton,
title={Skeleton Focused Human Activity Recognition in RGB Video},
author={Yu et al. (2020)},
year={2020},
note={arXiv:2004.13979}
}
```
- arXiv: 2004.13979
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!