minerva.models.nets.time_series.cnns
Classes
Simple pipeline for supervised models. |
|
Base class for all neural network modules. |
|
Simple pipeline for supervised models. |
|
Base class for all neural network modules. |
|
Simple pipeline for supervised models. |
|
Simple pipeline for supervised models. |
|
Base class for all neural network modules. |
|
Base class for all neural network modules. |
Module Contents
- class minerva.models.nets.time_series.cnns.CNN_HaEtAl_1D(input_shape=(6, 60), num_classes=6, learning_rate=0.001, *args, **kwargs)[source]
Bases:
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:
Make a forward pass with the input data on the backbone model;
Make a forward pass with the input data on the fc model;
Compute the loss between the output and the label data;
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
- backbonetorch.nn.Module
The backbone model. Usually the encoder/decoder part of the model.
- fctorch.nn.Module
The fully connected model, usually used to classification tasks. Use torch.nn.Identity() if no FC model is needed.
- loss_fntorch.nn.Module
The function used to compute the loss.
- learning_ratefloat, optional
The learning rate to Adam optimizer, by default 1e-3
- flattenbool, optional
If True the input data will be flattened before passing through the fc model, by default True
- train_metricsDict[str, Metric], optional
The metrics to be used during training, by default None
- val_metricsDict[str, Metric], optional
The metrics to be used during validation, by default None
- test_metricsDict[str, Metric], optional
The metrics to be used during testing, by default None
- predict_metricsDict[str, Metric], optional
The metrics to be used during prediction, by default None
- _calculate_fc_input_features(backbone, input_shape)[source]
Run a single forward pass with a random input to get the number of features after the convolutional layers.
Parameters
- backbonetorch.nn.Module
The backbone of the network
- input_shapeTuple[int, int, int]
The input shape of the network.
Returns
- int
The number of features after the convolutional layers.
- Parameters:
backbone (torch.nn.Module)
input_shape (Tuple[int, int, int])
- Return type:
int
- _create_fc(input_features, num_classes)[source]
- Parameters:
input_features (int)
num_classes (int)
- Return type:
torch.nn.Module
- fc_input_channels
- input_shape = (6, 60)
- num_classes = 6
- Parameters:
input_shape (Union[Tuple[int, int], Tuple[int, int, int]])
num_classes (int)
learning_rate (float)
- class minerva.models.nets.time_series.cnns.CNN_HaEtAl_1D_Backbone(in_channels=1)[source]
Bases:
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
to()
, etc.Note
As per the example above, an
__init__()
call to the parent class must be made before assignment on the child.- Variables:
training (bool) – Boolean represents whether this module is in training or evaluation mode.
- Parameters:
in_channels (int)
Initialize internal Module state, shared by both nn.Module and ScriptModule.
- backbone
- class minerva.models.nets.time_series.cnns.CNN_HaEtAl_2D(pad_at=(3,), input_shape=(6, 60), num_classes=6, learning_rate=0.001, *args, **kwargs)[source]
Bases:
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:
Make a forward pass with the input data on the backbone model;
Make a forward pass with the input data on the fc model;
Compute the loss between the output and the label data;
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
- backbonetorch.nn.Module
The backbone model. Usually the encoder/decoder part of the model.
- fctorch.nn.Module
The fully connected model, usually used to classification tasks. Use torch.nn.Identity() if no FC model is needed.
- loss_fntorch.nn.Module
The function used to compute the loss.
- learning_ratefloat, optional
The learning rate to Adam optimizer, by default 1e-3
- flattenbool, optional
If True the input data will be flattened before passing through the fc model, by default True
- train_metricsDict[str, Metric], optional
The metrics to be used during training, by default None
- val_metricsDict[str, Metric], optional
The metrics to be used during validation, by default None
- test_metricsDict[str, Metric], optional
The metrics to be used during testing, by default None
- predict_metricsDict[str, Metric], optional
The metrics to be used during prediction, by default None
- _calculate_fc_input_features(backbone, input_shape)[source]
Run a single forward pass with a random input to get the number of features after the convolutional layers.
Parameters
- backbonetorch.nn.Module
The backbone of the network
- input_shapeTuple[int, int, int]
The input shape of the network.
Returns
- int
The number of features after the convolutional layers.
- Parameters:
backbone (torch.nn.Module)
input_shape (Tuple[int, int, int])
- Return type:
int
- _create_fc(input_features, num_classes)[source]
- Parameters:
input_features (int)
num_classes (int)
- Return type:
torch.nn.Module
- fc_input_channels
- input_shape = (6, 60)
- num_classes = 6
- pad_at = (3,)
- Parameters:
pad_at (Union[int, Tuple[int]])
input_shape (Union[Tuple[int, int], Tuple[int, int, int]])
num_classes (int)
learning_rate (float)
- class minerva.models.nets.time_series.cnns.CNN_HaEtAl_2D_Backbone(input_shape, pad_at=3, first_kernel_size=4)[source]
Bases:
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
to()
, etc.Note
As per the example above, an
__init__()
call to the parent class must be made before assignment on the child.- Variables:
training (bool) – Boolean represents whether this module is in training or evaluation mode.
- Parameters:
input_shape (Tuple[int, int, int])
pad_at (int)
first_kernel_size (int)
Initialize internal Module state, shared by both nn.Module and ScriptModule.
- backbone
- class minerva.models.nets.time_series.cnns.CNN_PFF_2D(*args, **kwargs)[source]
Bases:
CNN_PF_2D
Simple pipeline for supervised models.
This class implements a very common deep learning pipeline, which is composed by the following steps:
Make a forward pass with the input data on the backbone model;
Make a forward pass with the input data on the fc model;
Compute the loss between the output and the label data;
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
- backbonetorch.nn.Module
The backbone model. Usually the encoder/decoder part of the model.
- fctorch.nn.Module
The fully connected model, usually used to classification tasks. Use torch.nn.Identity() if no FC model is needed.
- loss_fntorch.nn.Module
The function used to compute the loss.
- learning_ratefloat, optional
The learning rate to Adam optimizer, by default 1e-3
- flattenbool, optional
If True the input data will be flattened before passing through the fc model, by default True
- train_metricsDict[str, Metric], optional
The metrics to be used during training, by default None
- val_metricsDict[str, Metric], optional
The metrics to be used during validation, by default None
- test_metricsDict[str, Metric], optional
The metrics to be used during testing, by default None
- predict_metricsDict[str, Metric], optional
The metrics to be used during prediction, by default None
- class minerva.models.nets.time_series.cnns.CNN_PF_2D(pad_at=3, input_shape=(1, 6, 60), out_channels=16, num_classes=6, learning_rate=0.001, include_middle=False, *args, **kwargs)[source]
Bases:
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:
Make a forward pass with the input data on the backbone model;
Make a forward pass with the input data on the fc model;
Compute the loss between the output and the label data;
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
- backbonetorch.nn.Module
The backbone model. Usually the encoder/decoder part of the model.
- fctorch.nn.Module
The fully connected model, usually used to classification tasks. Use torch.nn.Identity() if no FC model is needed.
- loss_fntorch.nn.Module
The function used to compute the loss.
- learning_ratefloat, optional
The learning rate to Adam optimizer, by default 1e-3
- flattenbool, optional
If True the input data will be flattened before passing through the fc model, by default True
- train_metricsDict[str, Metric], optional
The metrics to be used during training, by default None
- val_metricsDict[str, Metric], optional
The metrics to be used during validation, by default None
- test_metricsDict[str, Metric], optional
The metrics to be used during testing, by default None
- predict_metricsDict[str, Metric], optional
The metrics to be used during prediction, by default None
- _calculate_fc_input_features(backbone, input_shape)[source]
Run a single forward pass with a random input to get the number of features after the convolutional layers.
Parameters
- backbonetorch.nn.Module
The backbone of the network
- input_shapeTuple[int, int, int]
The input shape of the network.
Returns
- int
The number of features after the convolutional layers.
- Parameters:
backbone (torch.nn.Module)
input_shape (Tuple[int, int, int])
- Return type:
int
- _create_fc(input_features, num_classes)[source]
- Parameters:
input_features (int)
num_classes (int)
- Return type:
torch.nn.Module
- fc_input_channels
- input_shape = (1, 6, 60)
- num_classes = 6
- out_channels = 16
- pad_at = 3
- Parameters:
pad_at (int)
input_shape (Tuple[int, int, int])
out_channels (int)
num_classes (int)
learning_rate (float)
include_middle (bool)
- class minerva.models.nets.time_series.cnns.CNN_PF_Backbone(in_channels=1, pad_at=3, out_channels=16, include_middle=False, permute=False, flatten=False)[source]
Bases:
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
to()
, etc.Note
As per the example above, an
__init__()
call to the parent class must be made before assignment on the child.- Variables:
training (bool) – Boolean represents whether this module is in training or evaluation mode.
- Parameters:
in_channels (int)
pad_at (int)
out_channels (int)
include_middle (bool)
permute (bool)
flatten (bool)
Initialize internal Module state, shared by both nn.Module and ScriptModule.
- first_pad_size = 2
- first_padder
- flatten = False
- in_channels = 1
- include_middle = False
- lower_part
- out_channels = 16
- pad_at = 3
- permute = False
- upper_part
- class minerva.models.nets.time_series.cnns.ZeroPadder2D(pad_at, padding_size)[source]
Bases:
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
to()
, etc.Note
As per the example above, an
__init__()
call to the parent class must be made before assignment on the child.- Variables:
training (bool) – Boolean represents whether this module is in training or evaluation mode.
- Parameters:
pad_at (Tuple[int])
padding_size (int)
Initialize internal Module state, shared by both nn.Module and ScriptModule.
- pad_at
- padding_size