Overview
This dataset contains the raw multimodal signals and metadata.
The goal of the competition is to predict the imagined handwriting class for each test trial using synchronized:
- EEG signals
- fNIRS signals
The dataset is organized to support an end-to-end competition workflow:
train_meta.csvprovides labeled training trialstest_meta.csvprovides unlabeled test trialsraw/contains the corresponding raw EEG and fNIRS recordings
Files
train_meta.csv
Training trial metadata with labels.
Columns:
trial_id: unique trial identifiersubject: subject id, for examplesub_01session: session idonset_sec: trial onset time in seconds, relative to the start of the EEG recordingevent_code: original event code in the source datalabel: class index in{0, 1, 2, 3}
test_meta.csv
Test trial metadata without labels.
Columns:
trial_id: unique trial identifiersubject: subject idsession: session idonset_sec: trial onset time in seconds, relative to the start of the EEG recording
raw/
Raw signal files organized by subject and session:
raw/
βββ sub_01/
β βββ EEG/
β β βββ 1.bdf
β β βββ 2.bdf
β β βββ ...
β βββ fNIRS/
β βββ 1.csv
β βββ 2.csv
β βββ ...
βββ ...
For each available subject/session pair:
EEG/{session}.bdfstores the EEG recordingfNIRS/{session}.csvstores the fNIRS recording
Data Split
The competition split is subject-independent:
- Training subjects:
sub_01tosub_20 - Test subjects:
sub_21tosub_30
Labels
The competition is a 4-class classification task.
Original event codes are mapped to class labels as follows:
200 -> 0201 -> 1202 -> 2203 -> 3
The final classification target uses these mapped labels in {0, 1, 2, 3}, rather than the original event codes.
Only valid task events are included in the released metadata. Rest markers and non-task events are excluded.
Important Notes
onset_secis aligned to the start of the EEG recording.- EEG and fNIRS files in the same subject/session pair are time-aligned at recording start.
- The released raw files were sanitized for competition use:
- EEG annotations were removed from BDF files
- potentially informative free-text header fields were cleared
- the fNIRS event column was removed
These steps were applied to prevent label leakage while preserving the raw signal content needed for preprocessing and modeling.
Recommended Usage
Typical pipeline:
- Read
train_meta.csvortest_meta.csv - Locate the corresponding raw files under
raw/{subject}/EEG/{session}.bdfandraw/{subject}/fNIRS/{session}.csv - Extract signal windows using
onset_sec - Train on labeled training trials
- Predict labels for test trials
Example Submission File
An example submission file is provided as submission_example.csv.
This file is only intended to demonstrate the required submission format:
- column 1:
trial_id - column 2:
label
The label values in this example are randomly generated and are not a valid baseline or reference result.
- Downloads last month
- 324