Shortcuts

BaselineRemoval

class torcheeg.transforms.BaselineRemoval[source][source]

A transform method to subtract the baseline signal (the signal recorded before the emotional stimulus), the nosie signal is removed from the emotional signal unrelated to the emotional stimulus.

TorchEEG recommends using this class in online_transform for higher processing speed. Even though, this class is also supported in offline_transform. Usually, the baseline needs the same transformation as the experimental signal, please add apply_to_baseline=True to all transforms before this operation to ensure that the transformation is performed on the baseline signal

transform = Compose([
    BandDifferentialEntropy(apply_to_baseline=True),
    ToTensor(apply_to_baseline=True),
    BaselineRemoval(),
    ToGrid(DEAP_CHANNEL_LOCATION_DICT)
])

transform(eeg=np.random.randn(32, 128), baseline=np.random.randn(32, 128))['eeg'].shape
>>> (4, 9, 9)
__call__(*args, eeg: any, baseline: any | None = None, **kwargs) Dict[str, any][source][source]
Parameters:
  • eeg (any) – The input EEG signal.

  • baseline (any) – The corresponding baseline signal.

Returns:

The transformed result after removing the baseline signal.

Return type:

any

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources