Evaluates the capability of neural architectures to perform binary emotion recognition (valence, arousal, dominance) directly from raw, multi-channel EEG time-series data without hand-crafted features. It measures how well a model generalizes across subjects using a standard cross-validation protocol. Use when the user wants to benchmark on DEAP, 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 deap-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Deap Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-deap-eval)More formats (shields.io, HTML) on the badges page.
---
name: deap-eval
description: Evaluates the capability of neural architectures to perform binary emotion recognition (valence, arousal, dominance) directly from raw, multi-channel EEG time-series data without hand-crafted features. It measures how well a model generalizes across subjects using a standard cross-validation protocol. Use when the user wants to benchmark on DEAP, or asks about evaluating this task. Reports Accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2105.13987
bibtex_key: hu2021scalingnet
confidence: high
---
# deap-eval
> ScalingNet: extracting features from raw EEG data for emotion recognition — Hu et al. (2021) (arXiv:2105.13987, 2021)
## What this evaluates
Evaluates the capability of neural architectures to perform binary emotion recognition (valence, arousal, dominance) directly from raw, multi-channel EEG time-series data without hand-crafted features. It measures how well a model generalizes across subjects using a standard cross-validation protocol.
## Datasets
- **DEAP** — total 1280; splits: 5-fold cross-validation (-1)
## Metrics
- `Accuracy` **(primary)** — range: [0, 1]
- Standard classification accuracy: the proportion of correctly predicted binary labels out of the total number of samples in the evaluation fold.
## Input / output format
**Input**: Raw EEG time-series signals (downsampled to 128Hz, filtered 4–45Hz) for 40 videos per subject across 32 subjects.
**Output**: Binary classification labels for three emotion dimensions: valence, arousal, and dominance (positive/negative based on a self-rating threshold of 5).
## Scoring recipe
```python
def compute_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
- Using physiological signals (e.g., EDA, ECG) instead of strictly EEG-only signals as specified in the protocol.
- Applying a different rating threshold than 5 for binary classification, which changes the class distribution.
- Not using the standard 5-fold cross-validation strategy, leading to non-comparable results with reported baselines.
## Evidence (verbatim from paper)
> The five-fold cross-validation strategy is employed to objectively evaluate the raw EEG data based emotion recognition performance of the proposed ScalingNet architecture. ... Where evaluation criteria are the emotion recognition accuracies of arousal, valance, dominance in closely following previous studies.
## Citation
```bibtex
@misc{hu2021scalingnet,
title={ScalingNet: extracting features from raw EEG data for emotion recognition},
author={Hu et al. (2021)},
year={2021},
note={arXiv:2105.13987}
}
```
- arXiv: 2105.13987
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!