Shortcuts

Source code for torcheeg.trainers.domain_adaption.ada

import math
from itertools import chain, cycle
from typing import List, Tuple, Optional

import numpy as np
import torch
import torch.nn as nn
import torchmetrics
from torch.utils.data.dataloader import DataLoader

from ..classification_trainer import ClassificationTrainer
import torch.nn.functional as F


class WalkerLoss(nn.Module):
    def forward(self, P_aba, y):
        equality_matrix = torch.eq(y.reshape(-1, 1), y).float()
        p_target = equality_matrix / equality_matrix.sum(dim=1, keepdim=True)
        p_target.requires_grad = False

        L_walker = F.kl_div(torch.log(1e-8 + P_aba),
                            p_target,
                            size_average=False)
        L_walker /= p_target.shape[0]

        return L_walker


class VisitLoss(nn.Module):
    def forward(self, P_b):
        p_visit = torch.ones([1, P_b.shape[1]]) / float(P_b.shape[1])
        p_visit.requires_grad = False
        p_visit = p_visit.to(P_b.device)
        L_visit = F.kl_div(torch.log(1e-8 + P_b), p_visit, size_average=False)
        L_visit /= p_visit.shape[0]

        return L_visit


class AssociationMatrix(nn.Module):
    def __init__(self):
        super(AssociationMatrix, self).__init__()

    def forward(self, X_source, X_target):
        X_source = X_source.reshape(X_source.shape[0], -1)
        X_target = X_target.reshape(X_target.shape[0], -1)

        W = torch.mm(X_source, X_target.transpose(1, 0))

        P_ab = F.softmax(W, dim=1)
        P_ba = F.softmax(W.transpose(1, 0), dim=1)

        P_aba = P_ab.mm(P_ba)
        P_b = torch.mean(P_ab, dim=0, keepdim=True)

        return P_aba, P_b


class AssociativeLoss(nn.Module):
    def __init__(self, walker_weight=1., visit_weight=1.):
        super(AssociativeLoss, self).__init__()

        self.matrix = AssociationMatrix()
        self.walker = WalkerLoss()
        self.visit = VisitLoss()

        self.walker_weight = walker_weight
        self.visit_weight = visit_weight

    def forward(self, X_source, X_target, y):

        P_aba, P_b = self.matrix(X_source, X_target)
        L_walker = self.walker(P_aba, y)
        L_visit = self.visit(P_b)

        return self.visit_weight * L_visit + self.walker_weight * L_walker


[docs]class ADATrainer(ClassificationTrainer): r''' The individual differences and nonstationary of EEG signals make it difficult for deep learning models trained on the training set of subjects to correctly classify test samples from unseen subjects, since the training set and test set come from different data distributions. Domain adaptation is used to address the problem of distribution drift between training and test sets and thus achieves good performance in subject-independent (cross-subject) scenarios. This class supports the implementation of Associative Domain Adaptation (ADA) for deep domain adaptation. NOTE: ADA belongs to unsupervised domain adaptation methods, which only use labeled source and unlabeled target data. This means that the target dataset does not have to return labels. - Paper: Haeusser P, Frerix T, Mordvintsev A, et al. Associative domain adaptation[C]//Proceedings of the IEEE international conference on computer vision. 2017: 2765-2773. - URL: https://arxiv.org/abs/1708.00938 - Related Project: https://github.com/stes/torch-associative .. code-block:: python trainer = ADATrainer(extractor, classifier) trainer.fit(source_loader, target_loader, val_loader) trainer.test(test_loader) The class provides the following hook functions for inserting additional implementations in the training, validation and testing lifecycle: - :obj:`before_training_epoch`: executed before each epoch of training starts - :obj:`before_training_step`: executed before each batch of training starts - :obj:`on_training_step`: the training process for each batch - :obj:`after_training_step`: execute after the training of each batch - :obj:`after_training_epoch`: executed after each epoch of training - :obj:`before_validation_epoch`: executed before each round of validation starts - :obj:`before_validation_step`: executed before the validation of each batch - :obj:`on_validation_step`: validation process for each batch - :obj:`after_validation_step`: executed after the validation of each batch - :obj:`after_validation_epoch`: executed after each round of validation - :obj:`before_test_epoch`: executed before each round of test starts - :obj:`before_test_step`: executed before the test of each batch - :obj:`on_test_step`: test process for each batch - :obj:`after_test_step`: executed after the test of each batch - :obj:`after_test_epoch`: executed after each round of test If you want to customize some operations, you just need to inherit the class and override the hook function: .. code-block:: python class MyADATrainer(ADATrainer): def before_training_epoch(self, epoch_id: int, num_epochs: int): # Do something here. super().before_training_epoch(epoch_id, num_epochs) If you want to use multiple GPUs for parallel computing, you need to specify the GPU indices you want to use in the python file: .. code-block:: python trainer = ADATrainer(model, device_ids=[1, 2, 7]) trainer.fit(train_loader, val_loader) trainer.test(test_loader) Then, you can use the :obj:`torch.distributed.launch` or :obj:`torchrun` to run your python file. .. code-block:: shell python -m torch.distributed.launch \ --nproc_per_node=3 \ --nnodes=1 \ --node_rank=0 \ --master_addr="localhost" \ --master_port=2345 \ your_python_file.py Here, :obj:`nproc_per_node` is the number of GPUs you specify. Args: extractor (nn.Module): The feature extraction model, learning the feature representation of EEG signal by forcing the correlation matrixes of source and target data close. classifier (nn.Module): The classification model, learning the classification task with source labeled data based on the feature of the feature extraction model. The dimension of its output should be equal to the number of categories in the dataset. The output layer does not need to have a softmax activation function. lambd (float): The weight of ADA loss to trade-off between the classification loss and ADA loss. (defualt: :obj:`1.0`) adaption_factor (bool): Whether to adjust the cross-domain-related loss term using the fitness factor, which was first proposed in DANN but works in many cases. (defualt: :obj:`False`) num_classes (int, optional): The number of categories in the dataset. If :obj:`None`, the number of categories will be inferred from the attribute :obj:`num_classes` of the model. (defualt: :obj:`None`) lr (float): The learning rate. (defualt: :obj:`0.0001`) walker_weight (float): The weight of walker loss. (defualt: :obj:`1.0`) visit_weight (float): The weight of visit loss. (defualt: :obj:`1.0`) weight_decay (float): The weight decay (L2 penalty). (defualt: :obj:`0.0`) device_ids (list): Use cpu if the list is empty. If the list contains indices of multiple GPUs, it needs to be launched with :obj:`torch.distributed.launch` or :obj:`torchrun`. (defualt: :obj:`[]`) ddp_sync_bn (bool): Whether to replace batch normalization in network structure with cross-GPU synchronized batch normalization. Only valid when the length of :obj:`device_ids` is greater than one. (defualt: :obj:`True`) ddp_replace_sampler (bool): Whether to replace sampler in dataloader with :obj:`DistributedSampler`. Only valid when the length of :obj:`device_ids` is greater than one. (defualt: :obj:`True`) ddp_val (bool): Whether to use multi-GPU acceleration for the validation set. For experiments where data input order is sensitive, :obj:`ddp_val` should be set to :obj:`False`. Only valid when the length of :obj:`device_ids` is greater than one. (defualt: :obj:`True`) ddp_test (bool): Whether to use multi-GPU acceleration for the test set. For experiments where data input order is sensitive, :obj:`ddp_test` should be set to :obj:`False`. Only valid when the length of :obj:`device_ids` is greater than one. (defualt: :obj:`True`) .. automethod:: fit .. automethod:: test ''' def __init__(self, extractor: nn.Module, classifier: nn.Module, lambd: float = 1.0, adaption_factor: bool = False, num_classes: Optional[int] = None, lr: float = 1e-4, walker_weight: float = 1.0, visit_weight: float = 1.0, weight_decay: float = 0.0, device_ids: List[int] = [], ddp_sync_bn: bool = True, ddp_replace_sampler: bool = True, ddp_val: bool = True, ddp_test: bool = True): # call BasicTrainer # pylint: disable=bad-super-call super(ClassificationTrainer, self).__init__(modules={ 'extractor': extractor, 'classifier': classifier }, device_ids=device_ids, ddp_sync_bn=ddp_sync_bn, ddp_replace_sampler=ddp_replace_sampler, ddp_val=ddp_val, ddp_test=ddp_test) self.lr = lr self.weight_decay = weight_decay self.lambd = lambd self.adaption_factor = adaption_factor self.walker_weight = walker_weight self.visit_weight = visit_weight if not num_classes is None: self.num_classes = num_classes elif hasattr(classifier, 'num_classes'): self.num_classes = classifier.num_classes else: raise ValueError('The number of classes is not specified.') self.optimizer = torch.optim.Adam(chain(extractor.parameters(), classifier.parameters()), lr=lr, weight_decay=weight_decay) self.loss_fn = nn.CrossEntropyLoss().to(self.device) self.ada_loss_fn = AssociativeLoss(walker_weight=walker_weight, visit_weight=visit_weight).to(self.device) # init metric self.train_loss = torchmetrics.MeanMetric().to(self.device) self.train_accuracy = torchmetrics.Accuracy(task='multiclass', num_classes=self.num_classes, top_k=1).to(self.device) self.val_loss = torchmetrics.MeanMetric().to(self.device) self.val_accuracy = torchmetrics.Accuracy(task='multiclass', num_classes=self.num_classes, top_k=1).to(self.device) self.test_loss = torchmetrics.MeanMetric().to(self.device) self.test_accuracy = torchmetrics.Accuracy(task='multiclass', num_classes=self.num_classes, top_k=1).to(self.device) def on_training_step(self, source_loader: DataLoader, target_loader: DataLoader, batch_id: int, num_batches: int, epoch_id: int, num_epochs: int, **kwargs): self.train_accuracy.reset() self.train_loss.reset() self.optimizer.zero_grad() X_source = source_loader[0].to(self.device) y_source = source_loader[1].to(self.device) X_target = target_loader[0].to(self.device) X_source_feat = self.modules['extractor'](X_source) y_source_pred = self.modules['classifier'](X_source_feat) X_target_feat = self.modules['extractor'](X_target) if self.adaption_factor: p = float(batch_id + epoch_id * num_batches) / num_epochs / num_batches gamma = 2. / (1. + np.exp(-10 * p)) - 1 else: gamma = 1.0 ada_loss = self.lambd * gamma * self.ada_loss_fn( X_source_feat, X_target_feat, y_source) task_loss = self.loss_fn(y_source_pred, y_source) loss = task_loss + ada_loss loss.backward() self.optimizer.step() # log five times log_step = math.ceil(num_batches / 5) if batch_id % log_step == 0: self.train_loss.update(loss) self.train_accuracy.update(y_source_pred.argmax(1), y_source) train_loss = self.train_loss.compute() train_accuracy = 100 * self.train_accuracy.compute() # if not distributed, world_size is 1 batch_id = batch_id * self.world_size num_batches = num_batches * self.world_size if self.is_main: self.log( f"loss: {train_loss:>8f}, accuracy: {train_accuracy:>0.1f}% [{batch_id:>5d}/{num_batches:>5d}]" )
[docs] def fit(self, source_loader: DataLoader, target_loader: DataLoader, val_loader: DataLoader, num_epochs: int = 1, **kwargs): r''' Args: source_loader (DataLoader): Iterable DataLoader for traversing the data batch from the source domain (torch.utils.data.dataloader.DataLoader, torch_geometric.loader.DataLoader, etc). target_loader (DataLoader): Iterable DataLoader for traversing the training data batch from the target domain (torch.utils.data.dataloader.DataLoader, torch_geometric.loader.DataLoader, etc). The target dataset does not have to return labels. val_loader (DataLoader): Iterable DataLoader for traversing the validation data batch (torch.utils.data.dataloader.DataLoader, torch_geometric.loader.DataLoader, etc). num_epochs (int): training epochs. (defualt: :obj:`1`) ''' source_loader = self.on_reveive_dataloader(source_loader, mode='train') target_loader = self.on_reveive_dataloader(target_loader, mode='train') val_loader = self.on_reveive_dataloader(val_loader, mode='val') for t in range(num_epochs): if hasattr(source_loader, 'need_to_set_epoch'): source_loader.sampler.set_epoch(t) if hasattr(target_loader, 'need_to_set_epoch'): target_loader.sampler.set_epoch(t) if hasattr(val_loader, 'need_to_set_epoch'): val_loader.sampler.set_epoch(t) num_batches = max(len(source_loader), len(target_loader)) # set model to train mode for k, m in self.modules.items(): self.modules[k].train() zip_loader = zip(source_loader, cycle(target_loader)) if len( source_loader) > len(target_loader) else zip( cycle(source_loader), target_loader) # hook self.before_training_epoch(t + 1, num_epochs, **kwargs) for batch_id, (cur_source_loader, cur_target_loader) in enumerate(zip_loader): # hook self.before_training_step(batch_id, num_batches, **kwargs) # hook self.on_training_step(cur_source_loader, cur_target_loader, batch_id, num_batches, t, num_epochs, **kwargs) # hook self.after_training_step(batch_id, num_batches, **kwargs) # hook self.after_training_epoch(t + 1, num_epochs, **kwargs) # set model to val mode for k, m in self.modules.items(): self.modules[k].eval() num_batches = len(val_loader) # hook self.before_validation_epoch(t + 1, num_epochs, **kwargs) for batch_id, val_batch in enumerate(val_loader): # hook self.before_validation_step(batch_id, num_batches, **kwargs) # hook self.on_validation_step(val_batch, batch_id, num_batches, **kwargs) # hook self.after_validation_step(batch_id, num_batches, **kwargs) # hook self.after_validation_epoch(t + 1, num_epochs, **kwargs) return self
[docs] def test(self, test_loader: DataLoader, **kwargs): r''' Args: test_loader (DataLoader): Iterable DataLoader for traversing the test data batch (torch.utils.data.dataloader.DataLoader, torch_geometric.loader.DataLoader, etc). ''' super().test(test_loader=test_loader, **kwargs)
def on_validation_step(self, val_batch: Tuple, batch_id: int, num_batches: int, **kwargs): X = val_batch[0].to(self.device) y = val_batch[1].to(self.device) feat = self.modules['extractor'](X) pred = self.modules['classifier'](feat) self.val_loss.update(self.loss_fn(pred, y)) self.val_accuracy.update(pred.argmax(1), y) def on_test_step(self, test_batch: Tuple, batch_id: int, num_batches: int, **kwargs): X = test_batch[0].to(self.device) y = test_batch[1].to(self.device) feat = self.modules['extractor'](X) pred = self.modules['classifier'](feat) self.test_loss.update(self.loss_fn(pred, y)) self.test_accuracy.update(pred.argmax(1), y)

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