Evaluates a model's ability to classify EEG signals into three affective states (negative, neutral, positive) using a semi-supervised learning framework. It tests representation learning and classification performance on high-dimensional, noisy time-series data with limited labeled sessions. Use when the user wants to benchmark on SEED, 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 seed-emotion-recognition-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Seed Emotion Recognition Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-seed-emotion-recognition-eval)More formats (shields.io, HTML) on the badges page.
---
name: seed-emotion-recognition-eval
description: Evaluates a model's ability to classify EEG signals into three affective states (negative, neutral, positive) using a semi-supervised learning framework. It tests representation learning and classification performance on high-dimensional, noisy time-series data with limited labeled sessions. Use when the user wants to benchmark on SEED, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2107.13505
bibtex_key: zhang2021deeprecurrent
confidence: high
---
# seed-emotion-recognition-eval
> Deep Recurrent Semi-Supervised EEG Representation Learning for Emotion Recognition — Zhang et al. (2021) (arXiv:2107.13505, 2021)
## What this evaluates
Evaluates a model's ability to classify EEG signals into three affective states (negative, neutral, positive) using a semi-supervised learning framework. It tests representation learning and classification performance on high-dimensional, noisy time-series data with limited labeled sessions.
## Datasets
- **SEED** — total ?; splits: train (9), test (6)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Standard classification accuracy: the proportion of correctly predicted emotion labels (negative, neutral, positive) out of the total number of test instances.
## Input / output format
**Input**: EEG time-series recordings from 62 scalp electrodes sampled at 1 KHz, structured into 15 sessions per experiment (5s pre-stimuli notice + visual stimuli).
**Output**: Predicted emotion label from the set {negative, neutral, positive}.
## 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
- The dataset is split per subject/experiment (9 sessions train, 6 test), not randomly shuffled across all sessions.
- The evaluation is semi-supervised, meaning the model leverages unlabeled sessions during training alongside a small fraction of labeled data.
## Evidence (verbatim from paper)
> We use the SEED dataset to conduct emotion recognition experiments with three affective labels namely negative, neutral, and positive. ... In each of the 30 experiments, we use the first 9 sessions for training and the remaining 6 sessions for testing, as pre-defined in [[10]].
## Citation
```bibtex
@misc{zhang2021deeprecurrent,
title={Deep Recurrent Semi-Supervised EEG Representation Learning for Emotion Recognition},
author={Zhang et al. (2021)},
year={2021},
note={arXiv:2107.13505}
}
```
- arXiv: 2107.13505
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!