Update README with dataset info

#1
Files changed (1) hide show
  1. README.md +52 -0
README.md CHANGED
@@ -1,3 +1,55 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - synthetic
9
+ - ecg
10
+ - cardiology
11
+ - healthcare
12
+ - time-series
13
+ - mit-bih
14
+ pretty_name: "CardioSynth-5k: Synthetic ECG Dataset"
15
+ size_categories:
16
+ - 5K<n<10K
17
  ---
18
+
19
+ # CardioSynth-5k
20
+
21
+ A synthetic dataset of 5,000 patient records with ECG and Echo measurements.
22
+ Purpose: Train and benchmark AI models in healthcare without privacy concerns.
23
+
24
+ ## Dataset Description
25
+ This dataset contains synthetic tabular patient data generated to mimic real-world clinical distributions for research and ML.
26
+
27
+ ## Features
28
+ | Column | Description |
29
+ | --- | --- |
30
+ | `patient_id` | Unique patient identifier |
31
+ | `age` | Age in years |
32
+ | `gender` | Sex: M/F |
33
+ | `height_cm` | Height in centimeters |
34
+ | `weight_kg` | Weight in kilograms |
35
+ | `heart_rate_bpm` | Heart rate |
36
+ | `systolic_bp` | Systolic blood pressure |
37
+ | `diastolic_bp` | Diastolic blood pressure |
38
+ | `ecg_pr_interval_ms` | ECG PR interval in ms |
39
+ | `ecg_qrs_duration_ms` | ECG QRS duration in ms |
40
+ | `echo_ef_percent` | Ejection Fraction % from Echo |
41
+ | `source` | Data source |
42
+
43
+ ## Example - 10 Rows
44
+ | patient_id | age | gender | heart_rate_bpm | systolic_bp | diastolic_bp | echo_ef_percent |
45
+ | --- | --- | --- | --- | --- | --- | --- |
46
+ | DEMO-0001 | 72 | M | 68 | 134 | 82 | 55 |
47
+ | DEMO-0002 | 41 | F | 84 | 126 | 76 | 61 |
48
+ | DEMO-0003 | 68 | M | 74 | 130 | 80 | 60 |
49
+ | DEMO-0004 | 29 | F | 91 | 122 | 73 | 68 |
50
+ | DEMO-0005 | 55 | M | 77 | 138 | 86 | 53 |
51
+ | DEMO-0006 | 47 | F | 86 | 128 | 77 | 57 |
52
+ | DEMO-0007 | 76 | M | 65 | 144 | 90 | 50 |
53
+ | DEMO-0008 | 33 | F | 93 | 121 | 74 | 69 |
54
+ | DEMO-0009 | 62 | M | 71 | 132 | 81 | 58 |
55
+ | DEMO-0010 | 50 | F | 88 | 129 | 78 | 62 |