Xception¶
- class torch_ecg.models.Xception(in_channels: int, **config)[source]¶
Bases:
Sequential
,SizeMixin
,CitationMixin
Xception model.
Xception is an architecture that uses depthwise separable convolutions to build light-weight deep neural networks, as described in [1]. Its official implementation is available in [2], and a PyTorch implementation is available in [3]. Xception is currently not widely used in the field of ECG analysis, but has the potential to be highly effective for this task.
- Parameters:
References
- compute_output_shape(seq_len: int | None = None, batch_size: int | None = None) Sequence[int | None] [source]¶
Compute the output shape the model.