Source code for torcheeg.datasets.module.emotion_recognition.mahnob
import glob
import json
import os
from typing import Callable, Dict, Tuple, Union
import mne
import numpy as np
import xmltodict
from ....utils import get_random_dir_path
from ..base_dataset import BaseDataset
[docs]class MAHNOBDataset(BaseDataset):
r'''
MAHNOB-HCI is a multimodal database recorded in response to affective stimuli with the goal of emotion recognition and implicit tagging research. This class generates training samples and test samples according to the given parameters, and caches the generated results in a unified input and output format (IO). The relevant information of the dataset is as follows:
- Author: Soleymani et al.
- Year: 2011
- Download URL: https://mahnob-db.eu/hci-tagging/
- Reference: Soleymani M, Lichtenauer J, Pun T, et al. A multimodal database for affect recognition and implicit tagging[J]. IEEE transactions on affective computing, 2011, 3(1): 42-55.
- Stimulus: 20 videos from famous movies. Each video clip lasts 34-117 seconds (may not be an integer), in addition to 30 seconds before the beginning of the affective stimuli experience and another 30 seconds after the end.
- Signals: Electroencephalogram (32 channels at 512Hz), peripheral physiological signals (ECG, GSR, Temp, Resp at 256 Hz), and eye movement signals (at 60Hz) of 30-5=25 subjects (3 subjects with missing data records and 2 subjects with incomplete data records).
- Rating: Arousal, valence, control and predictability (all ona scale from 1 to 9).
In order to use this dataset, the download folder :obj:`Sessions` (Physiological files of emotion elicitation) is required, containing the following files:
.. code-block:: text
Sessions/
├── 1/
│ ├── Part_1_N_Trial1_emotion.bdf
│ └── session.xml
├── ...
└── 3810/
├── Part_30_S_Trial20_emotion.bdf
└── session.xml
An example dataset for CNN-based methods:
.. code-block:: python
from torcheeg.datasets import MAHNOBDataset
from torcheeg import transforms
from torcheeg.datasets.constants import MAHNOB_CHANNEL_LOCATION_DICT
dataset = MAHNOBDataset(root_path='./Sessions',
offline_transform=transforms.Compose([
transforms.BandDifferentialEntropy(),
transforms.ToGrid(MAHNOB_CHANNEL_LOCATION_DICT)
]),
online_transform=transforms.ToTensor(),
label_transform=transforms.Compose([
transforms.Select('feltVlnc'),
transforms.Binary(5.0),
]))
print(dataset[0])
# EEG signal (torch.Tensor[4, 9, 9]),
# coresponding baseline signal (torch.Tensor[4, 9, 9]),
# label (int)
Another example dataset for CNN-based methods:
.. code-block:: python
from torcheeg.datasets import MAHNOBDataset
from torcheeg import transforms
dataset = MAHNOBDataset(root_path='./Sessions',
online_transform=transforms.Compose([
transforms.To2d(),
transforms.ToTensor()
]),
label_transform=transforms.Compose([
transforms.Select(['feltVlnc', 'feltArsl']),
transforms.Binary(5.0),
transforms.BinariesToCategory()
]))
print(dataset[0])
# EEG signal (torch.Tensor[1, 32, 128]),
# coresponding baseline signal (torch.Tensor[1, 32, 128]),
# label (int)
An example dataset for GNN-based methods:
.. code-block:: python
from torcheeg.datasets import MAHNOBDataset
from torcheeg import transforms
from torcheeg.datasets.constants import MAHNOB_ADJACENCY_MATRIX
from torcheeg.transforms.pyg import ToG
dataset = MAHNOBDataset(root_path='./Sessions',
online_transform=transforms.Compose([
ToG(MAHNOB_ADJACENCY_MATRIX)
]),
label_transform=transforms.Compose([
transforms.Select('feltArsl'),
transforms.Binary(5.0)
]))
print(dataset[0])
# EEG signal (torch_geometric.data.Data),
# coresponding baseline signal (torch_geometric.data.Data),
# label (int)
Args:
root_path (str): Downloaded data files in bdf and xml (unzipped Sessions.zip) formats (default: :obj:`'./Sessions'`)
chunk_size (int): Number of data points included in each EEG chunk as training or test samples. If set to -1, the EEG signal of a trial is used as a sample of a chunk. (default: :obj:`128`)
sampling_rate (int): The number of data points taken over a second. (default: :obj:`128`)
overlap (int): The number of overlapping data points between different chunks when dividing EEG chunks. (default: :obj:`0`)
num_channel (int): Number of channels used, of which the first 32 channels are EEG signals. (default: :obj:`32`)
num_baseline (int): Number of baseline signal chunks used. (default: :obj:`30`)
baseline_chunk_size (int): Number of data points included in each baseline signal chunk. The baseline signal in the MAHNOB dataset has a total of 512 (downsampled to 128) * 30 data points. (default: :obj:`128`)
num_trial_sample (int): Number of samples picked from each trial. If set to -1, all samples in trials are used. (default: :obj:`30`)
online_transform (Callable, optional): The transformation of the EEG signals and baseline EEG signals. The input is a :obj:`np.ndarray`, and the ouput is used as the first and second value of each element in the dataset. (default: :obj:`None`)
offline_transform (Callable, optional): The usage is the same as :obj:`online_transform`, but executed before generating IO intermediate results. (default: :obj:`None`)
label_transform (Callable, optional): The transformation of the label. The input is an information dictionary, and the ouput is used as the third value of each element in the dataset. (default: :obj:`None`)
before_trial (Callable, optional): The hook performed on the trial to which the sample belongs. It is performed before the offline transformation and thus typically used to implement context-dependent sample transformations, such as moving averages, etc. The input of this hook function is a 2D EEG signal with shape (number of electrodes, number of data points), whose ideal output shape is also (number of electrodes, number of data points).
after_trial (Callable, optional): The hook performed on the trial to which the sample belongs. It is performed after the offline transformation and thus typically used to implement context-dependent sample transformations, such as moving averages, etc. The input and output of this hook function should be a sequence of dictionaries representing a sequence of EEG samples. Each dictionary contains two key-value pairs, indexed by :obj:`eeg` (the EEG signal matrix) and :obj:`key` (the index in the database) respectively.
io_path (str): The path to generated unified data IO, cached as an intermediate result. If set to None, a random path will be generated. (default: :obj:`None`)
io_size (int): Maximum size database may grow to; used to size the memory mapping. If database grows larger than ``map_size``, an exception will be raised and the user must close and reopen. (default: :obj:`1048576`)
io_mode (str): Storage mode of EEG signal. When io_mode is set to :obj:`lmdb`, TorchEEG provides an efficient database (LMDB) for storing EEG signals. LMDB may not perform well on limited operating systems, where a file system based EEG signal storage is also provided. When io_mode is set to :obj:`pickle`, pickle-based persistence files are used. When io_mode is set to :obj:`memory`, memory are used. (default: :obj:`lmdb`)
num_worker (int): Number of subprocesses to use for data loading. 0 means that the data will be loaded in the main process. (default: :obj:`0`)
verbose (bool): Whether to display logs during processing, such as progress bars, etc. (default: :obj:`True`)
'''
def __init__(self,
root_path: str = './Sessions',
chunk_size: int = 128,
sampling_rate: int = 128,
overlap: int = 0,
num_channel: int = 32,
num_baseline: int = 30,
baseline_chunk_size: int = 128,
num_trial_sample: int = 30,
online_transform: Union[None, Callable] = None,
offline_transform: Union[None, Callable] = None,
label_transform: Union[None, Callable] = None,
before_trial: Union[None, Callable] = None,
after_trial: Union[Callable, None] = None,
after_session: Union[Callable, None] = None,
after_subject: Union[Callable, None] = None,
io_path: Union[None, str] = None,
io_size: int = 1048576,
io_mode: str = 'lmdb',
num_worker: int = 0,
verbose: bool = True):
if io_path is None:
io_path = get_random_dir_path(dir_prefix='datasets')
# pass all arguments to super class
params = {
'root_path': root_path,
'chunk_size': chunk_size,
'sampling_rate': sampling_rate,
'overlap': overlap,
'num_channel': num_channel,
'num_baseline': num_baseline,
'baseline_chunk_size': baseline_chunk_size,
'num_trial_sample': num_trial_sample,
'online_transform': online_transform,
'offline_transform': offline_transform,
'label_transform': label_transform,
'before_trial': before_trial,
'after_trial': after_trial,
'after_session': after_session,
'after_subject': after_subject,
'io_path': io_path,
'io_size': io_size,
'io_mode': io_mode,
'num_worker': num_worker,
'verbose': verbose
}
super().__init__(**params)
# save all arguments to __dict__
self.__dict__.update(params)
@staticmethod
def read_record(record: str,
root_path: str = './Sessions',
sampling_rate: int = 128,
num_channel: int = 32,
num_baseline: int = 30,
baseline_chunk_size: int = 128, **kwargs) -> Dict:
trial_dir = os.path.join(root_path, record)
# record the common meta info for the trial
label_file = os.path.join(trial_dir, 'session.xml')
with open(label_file) as f:
label_info = xmltodict.parse('\n'.join(f.readlines()))
label_info = json.loads(json.dumps(label_info))['session']
# extract signals
sample_file = glob.glob(str(os.path.join(trial_dir, '*.bdf')))[0]
raw = mne.io.read_raw_bdf(sample_file,
preload=True,
stim_channel='Status')
events = mne.find_events(raw, stim_channel='Status')
montage = mne.channels.make_standard_montage(kind='biosemi32')
raw.set_montage(montage, on_missing='ignore')
# pick channels
raw.pick_channels(raw.ch_names[:num_channel])
start_samp, end_samp = events[0][0] + 1, events[1][0] - 1
# extract baseline signals
trial_baseline_raw = raw.copy().crop(raw.times[0],
raw.times[end_samp])
trial_baseline_raw = trial_baseline_raw.resample(sampling_rate)
trial_baseline_sample = trial_baseline_raw.to_data_frame().to_numpy(
)[:, 1:].swapaxes(1, 0) # channel(32), timestep(30 * 128)
trial_baseline_sample = trial_baseline_sample[:, :num_baseline *
baseline_chunk_size]
trial_baseline_sample = trial_baseline_sample.reshape(
num_channel, num_baseline,
baseline_chunk_size).mean(axis=1) # channel(32), timestep(128)
# extract experimental signals
trial_raw = raw.copy().crop(raw.times[start_samp],
raw.times[end_samp])
trial_raw = trial_raw.resample(sampling_rate)
trial_samples = trial_raw.to_data_frame().to_numpy()[:,
1:].swapaxes(
1, 0)
return {
'trial_samples': trial_samples,
'label_info': label_info,
'trial_baseline_sample': trial_baseline_sample
}
@staticmethod
def fake_record(record: str, **kwargs) -> Dict:
num_channels = 32
sampling_rate = 128
duration = 30
trial_samples = np.random.randn(num_channels, sampling_rate * duration)
trial_baseline_sample = np.random.randn(num_channels, sampling_rate)
label_info = {
'@mediaFile': record,
'@cutLenSec': duration,
'@feltArsl': np.random.randint(1, 10),
'@feltCtrl': np.random.randint(1, 10),
'@feltEmo': np.random.randint(1, 10),
'@feltPred': np.random.randint(1, 10),
'@feltVlnc': np.random.randint(1, 10),
'@isStim': 1,
'subject': {
'@id': np.random.randint(1, 33)
}
}
return {
'trial_samples': trial_samples,
'label_info': label_info,
'trial_baseline_sample': trial_baseline_sample
}
@staticmethod
def process_record(record: str,
trial_samples: np.ndarray,
trial_baseline_sample: np.ndarray,
label_info: Dict,
chunk_size: int = 128,
overlap: int = 0,
num_trial_sample: int = 30,
offline_transform: Union[None, Callable] = None,
before_trial: Union[None, Callable] = None,
**kwargs):
emodims = [
'@feltArsl', '@feltCtrl', '@feltEmo', '@feltPred', '@feltVlnc',
'@isStim'
]
if not '@feltArsl' in label_info:
# skip label_info['@isStim'] == '0' and other exception
yield None
trial_meta_info = {
'subject_id': label_info['subject']['@id'],
'trial_id': label_info['@mediaFile'],
'duration': float(label_info['@cutLenSec'])
}
# feltArsl, feltCtrl, feltEmo, feltPred, feltVlnc, isStim
trial_meta_info.update({k[1:]: int(label_info[k]) for k in emodims})
write_pointer = 0
if before_trial:
trial_samples = before_trial(trial_samples)
start_at = 0
if chunk_size <= 0:
dynamic_chunk_size = trial_samples.shape[1] - start_at
else:
dynamic_chunk_size = chunk_size
# chunk with chunk size
end_at = dynamic_chunk_size
# calculate moving step
step = dynamic_chunk_size - overlap
max_len = trial_samples.shape[1]
if not (num_trial_sample <= 0):
max_len = min(num_trial_sample * dynamic_chunk_size,
trial_samples.shape[1])
while end_at <= max_len:
clip_sample = trial_samples[:, start_at:end_at]
t_eeg = clip_sample
t_baseline = trial_baseline_sample
if not offline_transform is None:
t = offline_transform(eeg=clip_sample,
baseline=trial_baseline_sample)
t_eeg = t['eeg']
t_baseline = t['baseline']
# put baseline signal into IO
if not 'baseline_id' in trial_meta_info:
trial_base_id = f'{record}_{write_pointer}'
yield {'eeg': t_baseline, 'key': trial_base_id}
write_pointer += 1
trial_meta_info['baseline_id'] = trial_base_id
clip_id = f'{record}_{write_pointer}'
write_pointer += 1
# record meta info for each signal
record_info = {
'start_at': start_at,
'end_at': end_at,
'clip_id': clip_id
}
record_info.update(trial_meta_info)
yield {'eeg': t_eeg, 'key': clip_id, 'info': record_info}
start_at = start_at + step
end_at = start_at + dynamic_chunk_size
def set_records(self, root_path: str = './Sessions', **kwargs):
assert os.path.exists(
root_path
), f'root_path ({root_path}) does not exist. Please download the dataset and set the root_path to the downloaded path.'
files = os.listdir(root_path)
return files
def __getitem__(self, index: int) -> Tuple:
info = self.read_info(index)
eeg_index = str(info['clip_id'])
eeg_record = str(info['_record_id'])
eeg = self.read_eeg(eeg_record, eeg_index)
baseline_index = str(info['baseline_id'])
baseline = self.read_eeg(eeg_record, baseline_index)
signal = eeg
label = info
if self.online_transform:
signal = self.online_transform(eeg=eeg, baseline=baseline)['eeg']
if self.label_transform:
label = self.label_transform(y=info)['y']
return signal, label
@property
def repr_body(self) -> Dict:
return dict(
super().repr_body, **{
'root_path': self.root_path,
'chunk_size': self.chunk_size,
'sampling_rate': self.sampling_rate,
'overlap': self.overlap,
'num_channel': self.num_channel,
'num_baseline': self.num_baseline,
'baseline_chunk_size': self.baseline_chunk_size,
'num_trial_sample': self.num_trial_sample,
'online_transform': self.online_transform,
'offline_transform': self.offline_transform,
'label_transform': self.label_transform,
'before_trial': self.before_trial,
'after_trial': self.after_trial,
'num_worker': self.num_worker,
'verbose': self.verbose,
'io_size': self.io_size
})