Skip to main content

ecg-transform

Installation

pip install ecg-transform

Example

Here is an example of defining an input schema and transforms,

from ecg_transform.inp import ECGInputSchema
from ecg_transform.t.common import LinearResample, ReorderLeads
from ecg_transform.t.scale import MinMaxNormalize
from ecg_transform.t.cut import Pad, SegmentNonoverlapping

LEAD_ORDER = ['I', 'II', 'III', 'aVR', 'aVL', 'aVF', 'V1', 'V2', 'V3', 'V4', 'V5', 'V6']
SAMPLE_RATE = 500
N_SAMPLES = SAMPLE_RATE*10

SCHEMA = ECGInputSchema(
    sample_rate=SAMPLE_RATE,
    expected_lead_order=LEAD_ORDER,
    required_num_samples=N_SAMPLES,
)

TRANSFORMS = [
    ReorderLeads(
        expected_order=LEAD_ORDER,
        missing_lead_strategy='raise',
    ),
    LinearResample(desired_sample_rate=SAMPLE_RATE),
    MinMaxNormalize(),
    SegmentNonoverlapping(segment_length=N_SAMPLES),
    Pad(pad_to_num_samples=N_SAMPLES, value=0)
]

Unit conversion & fixed-length resampling

For models with amplitude-sensitive front-ends (e.g. frozen BatchNorm calibrated in mV), use ConvertUnit to bring a signal to physical mV based on the unit declared on ECGMetadata.unit, and FourierResampleToLength to pin a fixed sample grid via scipy.signal.resample (FFT):

from ecg_transform.t.unit import ConvertUnit, FourierResampleToLength

TRANSFORMS = [
    ConvertUnit('mV'),                              # 'adc'/'counts' -> mV; 'mV' is a no-op
    ReorderLeads(LEAD_ORDER, 'raise'),
    FourierResampleToLength(1000, sample_rate=100), # length-normalize to a fixed grid
]

ConvertUnit raises if the declared unit is unknown (incl. None) — callers must declare the source unit, which makes "ADC counts silently treated as mV" (or vice versa) impossible.

The ADC gain belongs to the data, not to the transform, so there is no device-specific default. When converting ADC counts → mV, supply the gain (µV/count) one of two ways:

# (a) per-record (real, sample-specific) gain on the metadata:
meta = ECGMetadata(..., unit='adc', adc_microvolts_per_count=4.88)
transforms = [ConvertUnit('mV')]                       # reads it off each record

# (b) one corpus-wide constant (mock / no per-record metadata):
transforms = [ConvertUnit('mV', adc_microvolts_per_count=4.88)]  # applies to all

A constant passed to ConvertUnit takes precedence over per-record metadata; ADC input with neither raises.

FourierResampleToLength preserves the input dtype and is a no-op when the signal is already the target length. Prefer it over LinearResample when output must match an FFT-based pipeline — linear interpolation lacks anti-aliasing and diverges at sharp QRS peaks.

Here is an example of how ecg-transform could be used in PyTorch (which we do not require to minimize dependencies),

from typing import List
from itertools import chain

from scipy.io import loadmat

import numpy as np

import torch
from torch.utils.data import Dataset
from torch.utils.data.dataloader import DataLoader

from ecg_transform.inp import ECGInput, ECGInputSchema
from ecg_transform.t.base import ECGTransform
from ecg_transform.sample import ECGMetadata, ECGSample

class ECGDataset(Dataset):
    def __init__(
        self,
        schema,
        transforms,
        file_paths,
    ):
        self.schema = schema
        self.transforms = transforms
        self.file_paths = file_paths

    def __len__(self):
        return len(self.file_paths)

    def __getitem__(self, idx):
        mat = loadmat(self.file_paths[idx])
        metadata = ECGMetadata(
            sample_rate=int(mat['org_sample_rate'][0, 0]),
            num_samples=mat['feats'].shape[1],
            lead_names=['I', 'II', 'III', 'aVR', 'aVL', 'aVF', 'V1', 'V2', 'V3', 'V4', 'V5', 'V6'],
            unit=None,
            input_start=0,
            input_end=mat['feats'].shape[1],
        )
        inp = ECGInput(mat['feats'], metadata)
        sample = ECGSample(
            inp,
            self.schema,
            self.transforms,
        )

        return torch.from_numpy(sample.out).float(), self.file_paths[idx]

def collate_fn(inps):
    sample_ids = list(
        chain.from_iterable([[inp[1]]*inp[0].shape[0] for inp in inps])
    )
    return torch.concatenate([inp[0] for inp in inps]), sample_ids

def file_paths_to_loader(
    file_paths: List[str],
    schema: ECGInputSchema,
    transforms: List[ECGTransform],
    batch_size = 64,
    num_workers = 7,
):
    dataset = ECGDataset(
        schema,
        transforms,
        file_paths,
    )

    return DataLoader(
        dataset,
        batch_size=batch_size,
        num_workers=num_workers,
        pin_memory=True,
        sampler=None,
        shuffle=False,
        collate_fn=collate_fn,
        drop_last=False,
    )

Release files for ecg-transform 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for ecg-transform 0.2.0
File Size Uploaded
ecg_transform-0.2.0.tar.gz 21.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for ecg-transform 0.2.0
File Interpreter ABI Platform
ecg_transform-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 40.6 kB

Release files / ecg_transform-0.2.0.tar.gz

Download URL ecg_transform-0.2.0.tar.gz
Size 21.2 kB
Tags Source
SHA-256 checksum
How to use checksums
134aebdd7deb4d27fd990052d06ccc62092da97d0dcfcfe3902f69391518ed81
BLAKE2b-256 checksum
How to use checksums
35d7eeffb69a03c195296a887816dd45793acc44957fde9320ec5a481d791db1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release files / ecg_transform-0.2.0-py3-none-any.whl

Download URL ecg_transform-0.2.0-py3-none-any.whl
Size 19.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
04e2d3e91599c472fc0c2bdc22f7721cdb1b793e05b718f6a85ba5c19de683f6
BLAKE2b-256 checksum
How to use checksums
180276efc5673b0155e9785c866fb03e5a75061b0d75418054d0e31e60027aba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.12

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page