ECG_UNET#
- class torch_ecg.models.ECG_UNET(classes: Sequence[str], n_leads: int, config: CFG | None = None)[source]#
Bases:
Module
,CkptMixin
,SizeMixin
,CitationMixin
U-Net for (multi-lead) ECG wave delineation.
The U-Net is a fully convolutional network originally proposed for biomedical image segmentation [1]. This architecture is applied to ECG wave delineation in [2]. This implementation is based on an open-source implementation on GitHub [3].
- Parameters:
References
- compute_output_shape(seq_len: int | None = None, batch_size: int | None = None) Sequence[int | None] [source]#
Compute the output shape of the model.
- forward(input: Tensor) Tensor [source]#
Forward pass of the model.
- Parameters:
input (torch.Tensor) – Input signal tensor, of shape
(batch_size, n_channels, seq_len)
.- Returns:
output – Output tensor, of shape
(batch_size, n_channels, seq_len)
.- Return type: