Shortcuts

GIN

class torcheeg.models.pyg.GIN(in_channels: int = 4, hid_channels: int = 64, num_classes: int = 3)[source][source]

A simple but effective graph isomorphism network (GIN) structure from the book of Zhang et al. For more details, please refer to the following information.

Below is a recommended suite for use in emotion recognition tasks:

from torcheeg.datasets import DEAPDataset
from torcheeg import transforms
from torcheeg.transforms.pyg import ToG
from torcheeg.datasets.constants import SEED_STANDARD_ADJACENCY_MATRIX
from torcheeg.models import GIN
from torch_geometric.data import DataLoader

dataset = DEAPDataset(root_path='./data_preprocessed_python',
                      offline_transform=transforms.BandDifferentialEntropy(),
                      online_transform=ToG(SEED_STANDARD_ADJACENCY_MATRIX),
                      label_transform=transforms.Compose([
                          transforms.Select('valence'),
                          transforms.Binary(5.0),
                      ]))

model = GIN(in_channels=4, hid_channels=64, num_classes=2)

x, y = next(iter(DataLoader(dataset, batch_size=64)))
model(x)
Parameters:
  • in_channels (int) – The feature dimension of each electrode. (default: 4)

  • hid_channels (int) – The number of hidden nodes in the GRU layers and the fully connected layer. (default: 64)

  • num_classes (int) – The number of classes to predict. (default: 2)

forward(data: Batch) Tensor[source][source]
Parameters:

data (torch_geometric.data.Batch) – EEG signal representation, the ideal input shape of data.x is [n, 62, 4]. Here, n corresponds to the batch size, 62 corresponds to the number of electrodes, and 4 corresponds to in_channels.

Returns:

the predicted probability that the samples belong to the classes.

Return type:

torch.Tensor[number of sample, number of classes]

Read the Docs v: latest
Versions
latest
stable
v1.1.1
v1.1.0
v1.0.11
v1.0.10
v1.0.9
v1.0.8.post1
v1.0.8
v1.0.7
v1.0.6
v1.0.4
v1.0.3
v1.0.2
v1.0.1
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.

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