chiangfish commited on
Commit
f6d08fe
·
verified ·
1 Parent(s): b521bf4

Add Beat-age model card

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: pytorch
4
+ tags:
5
+ - ecg
6
+ - biological-age
7
+ - cardiology
8
+ - pytorch
9
+ - uk-biobank
10
+ pipeline_tag: tabular-regression
11
+ ---
12
+
13
+ # Beat-age
14
+
15
+ This is the official checkpoint release for the paper:
16
+
17
+ **Beat-Level Electrocardiographic Biological Age and Its Variability as Digital Biomarkers for Cardiovascular Risk Stratification**
18
+
19
+ Official GitHub repository: https://github.com/chiangfish/beat-age
20
+
21
+ ## Files
22
+
23
+ - `v1_best.pth`: Beat-age beat-level Net1D checkpoint trained on the UK Biobank Development Cohort.
24
+ - `ckpt_manifest.json`: checkpoint metadata, including file size, SHA-256 checksum, architecture, and intended use.
25
+
26
+ ## Model
27
+
28
+ Beat-age is a beat-level ECG biological age model. It predicts biological age from individual segmented 12-lead cardiac cycles and aggregates beat-level predictions at the ECG-recording level.
29
+
30
+ - Architecture: one-dimensional residual CNN (`Net1D`)
31
+ - Input: segmented 12-lead ECG beats
32
+ - Output: predicted biological age in years
33
+ - Age gap: predicted age minus chronological age
34
+
35
+ ## Usage
36
+
37
+ Download the checkpoint and place it under `ckpts/` in the GitHub repository:
38
+
39
+ ```bash
40
+ mkdir -p ckpts
41
+ hf download chiangfish/beat-age v1_best.pth --local-dir ckpts
42
+ ```
43
+
44
+ Then run the inference scripts from the GitHub repository following its README.
45
+
46
+ ## Data
47
+
48
+ The model was developed using controlled-access UK Biobank ECG data. Downstream external validation used MIMIC-IV-ECG. These datasets are not redistributed in this model repository.
49
+
50
+ ## Citation
51
+
52
+ ```bibtex
53
+ @article{beatage2026,
54
+ title = {Beat-Level Electrocardiographic Biological Age and Its Variability as Digital Biomarkers for Cardiovascular Risk Stratification},
55
+ author = {Zirui Jiang, Guangkun Nie, Qinghao Zhao, and Shenda Hong},
56
+ year = {2026}
57
+ }
58
+ ```