Skip to content

LUDB Dataset

Overview

The Lobachevsky University Electrocardiography database (LUDB) consists of 200 10-second 12-lead records. The boundaries and peaks of P, T waves and QRS complexes were manually annotated by cardiologists. Each record is annotated with the corresponding diagnosis.

Please visit Physionet for more details.

Funding

The study was supported by the Ministry of Education of the Russian Federation (contract No. 02.G25.31.0157 of 01.12.2015).

License

The LUDB is available for commercial use.

Supported Tasks

Usage

Example

from pathlib import Path
import heartkit as hk

# Download dataset
hk.datasets.download_datasets(hk.HKDownloadParams(
    ds_path=Path("./datasets"),
    datasets=["ludb"],
    progress=True
))