VGG16¶
- class torch_ecg.models.VGG16(in_channels: int, **config)[source]¶
Bases:
torch.nn.modules.container.Sequential
,torch_ecg.utils.utils_nn.SizeMixin
,torch_ecg.utils.misc.CitationMixin
CNN feature extractor of VGG architecture.
- Parameters
in_channels (int) – Number of channels in the input.
config (dict) –
Other hyper-parameters of the Module, including number of convolutional layers, number of filters for each layer, and more for
VGGBlock
. Key word arguments that have to be set:num_convs: sequence of int, number of convolutional layers for each
VGGBlock
.num_filters: sequence of int, number of filters for each
VGGBlock
.groups: int, connection pattern (of channels) of the inputs and outputs.
block: dict, other parameters that can be set for
VGGBlock
.
For a full list of configurable parameters, ref. corr. config file.