vlbthambawita commited on
Commit
834d301
·
1 Parent(s): ae3a65f

updated readme

Browse files
Files changed (1) hide show
  1. README.md +33 -1
README.md CHANGED
@@ -2,4 +2,36 @@
2
  license: cc-by-4.0
3
  ---
4
 
5
- Test
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: cc-by-4.0
3
  ---
4
 
5
+ # ECG Dataset
6
+
7
+ This repository contains an small version of the ECG dataset: https://huggingface.co/datasets/deepsynthbody/deepfake_ecg, split into training, validation, and test sets. The dataset is provided as CSV files and corresponding ECG data files in .asc format. The ECG data files are organized into separate folders for the train, validation, and test sets.
8
+
9
+ ## Folder Structure
10
+
11
+ .
12
+ ├── train.csv
13
+ ├── validate.csv
14
+ ├── test.csv
15
+ ├── train
16
+ │ ├── file_1.asc
17
+ │ ├── file_2.asc
18
+ │ └── ...
19
+ ├── validation
20
+ │ ├── file_1.asc
21
+ │ ├── file_2.asc
22
+ │ └── ...
23
+ └── test
24
+ ├── file_1.asc
25
+ ├── file_2.asc
26
+ └── ...
27
+
28
+
29
+ - `train.csv`: Contains 10,000 records with metadata and the corresponding ECG file names for the training set.
30
+ - `validate.csv`: Contains 2,500 records with metadata and the corresponding ECG file names for the validation set.
31
+ - `test.csv`: Contains 2,500 records with metadata and the corresponding ECG file names for the test set.
32
+ - `train`, `validation`, `test` folders: Contain the corresponding ECG data files (.asc) for the records in the train.csv, validate.csv, and test.csv files, respectively.
33
+
34
+
35
+
36
+
37
+