Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ Available Datasets
datasets/pyhealth.datasets.MIMIC4Dataset
datasets/pyhealth.datasets.MedicalTranscriptionsDataset
datasets/pyhealth.datasets.CardiologyDataset
datasets/pyhealth.datasets.LUDBDataset
datasets/pyhealth.datasets.eICUDataset
datasets/pyhealth.datasets.ISRUCDataset
datasets/pyhealth.datasets.MIMICExtractDataset
Expand Down
11 changes: 11 additions & 0 deletions docs/api/datasets/pyhealth.datasets.LUDBDataset.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
pyhealth.datasets.LUDBDataset
=============================

The Lobachevsky University Database (LUDB) contains 200 12-lead ECG recordings at 500 Hz from healthy volunteers and patients with cardiovascular diseases, with manual cardiologist annotations of P wave, QRS complex, and T wave boundaries. Refer to the `dataset page <https://physionet.org/content/ludb/1.0.1/>`_ for more information.

.. autoclass:: pyhealth.datasets.LUDBDataset
:members:
:undoc-members:
:show-inheritance:

.. autofunction:: pyhealth.datasets.get_stratified_ludb_split
1 change: 1 addition & 0 deletions docs/api/tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ Available Tasks
In-Hospital Mortality (MIMIC-IV) <tasks/pyhealth.tasks.InHospitalMortalityMIMIC4>
MIMIC-III ICD-9 Coding <tasks/pyhealth.tasks.MIMIC3ICD9Coding>
Cardiology Detection <tasks/pyhealth.tasks.cardiology_detect>
ECG Delineation (LUDB) <tasks/pyhealth.tasks.ecg_delineation>
COVID-19 CXR Classification <tasks/pyhealth.tasks.COVID19CXRClassification>
DKA Prediction (MIMIC-IV) <tasks/pyhealth.tasks.dka>
Drug Recommendation <tasks/pyhealth.tasks.drug_recommendation>
Expand Down
6 changes: 6 additions & 0 deletions docs/api/tasks/pyhealth.tasks.ecg_delineation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pyhealth.tasks.ecg_delineation
===============================

ECG wave delineation task for the LUDB dataset. Segments each 10-second ECG lead signal into background (0), P wave (1), QRS complex (2), and T wave (3) regions. Designed for replication of Park et al., "Benchmarking ECG Delineation using Deep Neural Network-based Semantic Segmentation Models," CHIL 2025.

.. autofunction:: pyhealth.tasks.ecg_delineation_ludb_fn
Loading