YongchengYAO commited on
Commit
4df0409
·
verified ·
1 Parent(s): 7266316

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -3
README.md CHANGED
@@ -1,3 +1,51 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ language:
6
+ - en
7
+ tags:
8
+ - medical
9
+ - image
10
+ pretty_name: 'acdc'
11
+ size_categories:
12
+ - n<1K
13
+ ---
14
+
15
+
16
+ ## About
17
+ This is a redistribution of the [ACDC dataset](https://www.creatis.insa-lyon.fr/Challenge/acdc/databases.html), containing 300 cardiac MR images and corresponding segmentation masks.
18
+
19
+ There is no change to any image or segmentation mask. Files are rearranged.
20
+
21
+ This dataset is released under the `CC BY-NC-SA 4.0` license.
22
+
23
+
24
+ ## Segmentation Labels
25
+ ```
26
+ labels_map = {
27
+ "1": "right ventricular cavity",
28
+ "2": "myocardium",
29
+ "3": "left ventricular cavity",
30
+ }
31
+ ```
32
+
33
+
34
+ ## Official Release
35
+ For more information, please go to these sites:
36
+ - Data License (official): [CC BY-NC-SA 4.0](https://humanheart-project.creatis.insa-lyon.fr/database/#item/66e290e0961576b1bad4ee3c)
37
+ - Challenge (official): https://www.creatis.insa-lyon.fr/Challenge/acdc/
38
+ - Data (official): https://www.creatis.insa-lyon.fr/Challenge/acdc/databases.html
39
+
40
+
41
+ ## Download from Huggingface
42
+ ```bash
43
+ #!/bin/bash
44
+ pip install huggingface-hub[cli]
45
+ huggingface-cli login --token $HF_TOKEN
46
+ ```
47
+ ```python
48
+ # python
49
+ from huggingface_hub import snapshot_download
50
+ snapshot_download(repo_id="YongchengYAO/ACDC", repo_type='dataset', local_dir="/your/local/folder")
51
+ ```