minerva.models.nets.time_series.imu_transformer =============================================== .. py:module:: minerva.models.nets.time_series.imu_transformer Classes ------- .. autoapisummary:: minerva.models.nets.time_series.imu_transformer.IMUCNN minerva.models.nets.time_series.imu_transformer.IMUTransformerEncoder minerva.models.nets.time_series.imu_transformer._IMUTransformerEncoder Module Contents --------------- .. py:class:: IMUCNN(input_shape = (6, 60), hidden_dim = 64, num_classes = 6, dropout_factor = 0.1, learning_rate = 0.001, *args, **kwargs) Bases: :py:obj:`minerva.models.nets.base.SimpleSupervisedModel` Simple pipeline for supervised models. This class implements a very common deep learning pipeline, which is composed by the following steps: 1. Make a forward pass with the input data on the backbone model; 2. Make a forward pass with the input data on the fc model; 3. Compute the loss between the output and the label data; 4. Optimize the model (backbone and FC) parameters with respect to the loss. This reduces the code duplication for autoencoder models, and makes it easier to implement new models by only changing the backbone model. More complex models, that does not follow this pipeline, should not inherit from this class. Note that, for this class the input data is a tuple of tensors, where the first tensor is the input data and the second tensor is the mask or label. Initialize the model with the backbone, fc, loss function and metrics. Metrics are used to evaluate the model during training, validation, testing or prediction. It will be logged using lightning logger at the end of each epoch. Metrics should implement the `torchmetrics.Metric` interface. Parameters ---------- backbone : torch.nn.Module The backbone model. Usually the encoder/decoder part of the model. fc : torch.nn.Module The fully connected model, usually used to classification tasks. Use `torch.nn.Identity()` if no FC model is needed. loss_fn : torch.nn.Module The function used to compute the loss. learning_rate : float, optional The learning rate to Adam optimizer, by default 1e-3 flatten : bool, optional If `True` the input data will be flattened before passing through the fc model, by default True train_metrics : Dict[str, Metric], optional The metrics to be used during training, by default None val_metrics : Dict[str, Metric], optional The metrics to be used during validation, by default None test_metrics : Dict[str, Metric], optional The metrics to be used during testing, by default None predict_metrics : Dict[str, Metric], optional The metrics to be used during prediction, by default None .. py:method:: _calculate_fc_input_features(backbone, input_shape) .. py:method:: _create_backbone(input_shape, hidden_dim, dropout_factor) .. py:method:: _create_fc(input_features, hidden_dim, num_classes) .. py:attribute:: dropout_factor :value: 0.1 .. py:attribute:: fc_input_channels .. py:attribute:: hidden_dim :value: 64 .. py:attribute:: input_shape :value: (6, 60) .. py:class:: IMUTransformerEncoder(input_shape = (6, 60), transformer_dim = 64, encode_position = True, nhead = 8, dim_feedforward = 128, transformer_dropout = 0.1, transformer_activation = 'gelu', num_encoder_layers = 6, num_classes = 6, learning_rate = 0.001, *args, **kwargs) Bases: :py:obj:`minerva.models.nets.base.SimpleSupervisedModel` Simple pipeline for supervised models. This class implements a very common deep learning pipeline, which is composed by the following steps: 1. Make a forward pass with the input data on the backbone model; 2. Make a forward pass with the input data on the fc model; 3. Compute the loss between the output and the label data; 4. Optimize the model (backbone and FC) parameters with respect to the loss. This reduces the code duplication for autoencoder models, and makes it easier to implement new models by only changing the backbone model. More complex models, that does not follow this pipeline, should not inherit from this class. Note that, for this class the input data is a tuple of tensors, where the first tensor is the input data and the second tensor is the mask or label. Initialize the model with the backbone, fc, loss function and metrics. Metrics are used to evaluate the model during training, validation, testing or prediction. It will be logged using lightning logger at the end of each epoch. Metrics should implement the `torchmetrics.Metric` interface. Parameters ---------- backbone : torch.nn.Module The backbone model. Usually the encoder/decoder part of the model. fc : torch.nn.Module The fully connected model, usually used to classification tasks. Use `torch.nn.Identity()` if no FC model is needed. loss_fn : torch.nn.Module The function used to compute the loss. learning_rate : float, optional The learning rate to Adam optimizer, by default 1e-3 flatten : bool, optional If `True` the input data will be flattened before passing through the fc model, by default True train_metrics : Dict[str, Metric], optional The metrics to be used during training, by default None val_metrics : Dict[str, Metric], optional The metrics to be used during validation, by default None test_metrics : Dict[str, Metric], optional The metrics to be used during testing, by default None predict_metrics : Dict[str, Metric], optional The metrics to be used during prediction, by default None .. py:method:: _create_backbone(input_shape, transformer_dim, encode_position, nhead, dim_feedforward, transformer_dropout, transformer_activation, num_encoder_layers) .. py:method:: _create_fc(transform_dim, num_classes) .. py:attribute:: input_shape :value: (6, 60) .. py:class:: _IMUTransformerEncoder(input_shape = (6, 60), transformer_dim = 64, encode_position = True, nhead = 8, dim_feedforward = 128, transformer_dropout = 0.1, transformer_activation = 'gelu', num_encoder_layers = 6, permute = False) Bases: :py:obj:`torch.nn.Module` Base class for all neural network modules. Your models should also subclass this class. Modules can also contain other Modules, allowing them to be nested in a tree structure. You can assign the submodules as regular attributes:: import torch.nn as nn import torch.nn.functional as F class Model(nn.Module): def __init__(self) -> None: super().__init__() self.conv1 = nn.Conv2d(1, 20, 5) self.conv2 = nn.Conv2d(20, 20, 5) def forward(self, x): x = F.relu(self.conv1(x)) return F.relu(self.conv2(x)) Submodules assigned in this way will be registered, and will also have their parameters converted when you call :meth:`to`, etc. .. note:: As per the example above, an ``__init__()`` call to the parent class must be made before assignment on the child. :ivar training: Boolean represents whether this module is in training or evaluation mode. :vartype training: bool input_shape: (tuple) shape of the input data transformer_dim: (int) dimension of the transformer encode_position: (bool) whether to encode position or not nhead: (int) number of attention heads dim_feedforward: (int) dimension of the feedforward network transformer_dropout: (float) dropout rate for the transformer transformer_activation: (str) activation function for the transformer num_encoder_layers: (int) number of transformer encoder layers num_classes: (int) number of output classes permute: bool, optional. If `True` the input data will be permuted before passing through the model, by default False. .. py:attribute:: cls_token .. py:attribute:: encode_position :value: True .. py:method:: forward(x) Forward Parameters ---------- x : _type_ A tensor of shape (B, C, S) with B = batch size, C = channels, S = sequence length .. py:attribute:: input_proj .. py:attribute:: input_shape :value: (6, 60) .. py:attribute:: permute :value: False .. py:attribute:: transformer_dim :value: 64 .. py:attribute:: transformer_encoder