YongchengYAO commited on
Commit
0947f6b
·
verified ·
1 Parent(s): 31ac7c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -73
README.md CHANGED
@@ -1,73 +1,76 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- task_categories:
4
- - image-segmentation
5
- language:
6
- - en
7
- tags:
8
- - medical
9
- - image
10
- pretty_name: 'bcv15-lite'
11
- size_categories:
12
- - n<1K
13
- ---
14
-
15
-
16
- ## About
17
- This is a redistribution of the [BCV15 dataset](https://www.synapse.org/Synapse:syn3193805/wiki/89480) which is a open dataset on Synapse.
18
-
19
- We inlcude data (images + segmentation masks) for these tasks in BCV15:
20
-
21
- - Abdomen: https://www.synapse.org/Synapse:syn3193805/wiki/217789
22
-
23
- - Cervix: https://www.synapse.org/Synapse:syn3193805/wiki/217790
24
-
25
-
26
-
27
- ## Segmentation Labels
28
-
29
- ```python
30
- labels_map_Abdomen = {
31
- "1": "spleen",
32
- "2": "right kidney",
33
- "3": "left kidney",
34
- "4": "gallbladder",
35
- "5": "esophagus",
36
- "6": "liver",
37
- "7": "stomach",
38
- "8": "aorta",
39
- "9": "inferior vena cava",
40
- "10": "portal vein and splenic vein",
41
- "11": "pancreas",
42
- "12": "right adrenal gland",
43
- "13": "left adrenal gland",
44
- }
45
-
46
- labels_map_Cervix = {
47
- "1": "bladder",
48
- "2": "uterus",
49
- "3": "rectum",
50
- "4": "small bowel",
51
- }
52
- ```
53
-
54
-
55
-
56
- ## Official Release
57
-
58
- For more information, please go to the official release site: https://www.synapse.org/Synapse:syn3193805/wiki/89480. You have to register for data access on Synapse. Using this HF dataset is an alternative.
59
-
60
-
61
-
62
-
63
- ## Download from Huggingface
64
- ```bash
65
- #!/bin/bash
66
- pip install huggingface-hub[cli]
67
- huggingface-cli login --token $HF_TOKEN
68
- ```
69
- ```python
70
- # python
71
- from huggingface_hub import snapshot_download
72
- snapshot_download(repo_id="YongchengYAO/BCV15-Lite", repo_type='dataset', local_dir="/your/local/folder")
73
- ```
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - image-segmentation
5
+ language:
6
+ - en
7
+ tags:
8
+ - medical
9
+ - image
10
+ pretty_name: 'bcv15-lite'
11
+ size_categories:
12
+ - n<1K
13
+ ---
14
+
15
+
16
+ ## About
17
+ This is a redistribution of the [BCV15 dataset](https://www.synapse.org/Synapse:syn3193805/wiki/89480) which is a open dataset on Synapse.
18
+
19
+ We inlcude data (images + segmentation masks) for these tasks in BCV15:
20
+
21
+ - Abdomen: https://www.synapse.org/Synapse:syn3193805/wiki/217789
22
+
23
+ - Cervix: https://www.synapse.org/Synapse:syn3193805/wiki/217790
24
+
25
+
26
+ ## News
27
+ - [10 Oct, 2025] This dataset is integrated into 🔥[MedVision](https://huggingface.co/datasets/YongchengYAO/MedVision)🔥
28
+
29
+
30
+ ## Segmentation Labels
31
+
32
+ ```python
33
+ labels_map_Abdomen = {
34
+ "1": "spleen",
35
+ "2": "right kidney",
36
+ "3": "left kidney",
37
+ "4": "gallbladder",
38
+ "5": "esophagus",
39
+ "6": "liver",
40
+ "7": "stomach",
41
+ "8": "aorta",
42
+ "9": "inferior vena cava",
43
+ "10": "portal vein and splenic vein",
44
+ "11": "pancreas",
45
+ "12": "right adrenal gland",
46
+ "13": "left adrenal gland",
47
+ }
48
+
49
+ labels_map_Cervix = {
50
+ "1": "bladder",
51
+ "2": "uterus",
52
+ "3": "rectum",
53
+ "4": "small bowel",
54
+ }
55
+ ```
56
+
57
+
58
+
59
+ ## Official Release
60
+
61
+ For more information, please go to the official release site: https://www.synapse.org/Synapse:syn3193805/wiki/89480. You have to register for data access on Synapse. Using this HF dataset is an alternative.
62
+
63
+
64
+
65
+
66
+ ## Download from Huggingface
67
+ ```bash
68
+ #!/bin/bash
69
+ pip install huggingface-hub[cli]
70
+ huggingface-cli login --token $HF_TOKEN
71
+ ```
72
+ ```python
73
+ # python
74
+ from huggingface_hub import snapshot_download
75
+ snapshot_download(repo_id="YongchengYAO/BCV15-Lite", repo_type='dataset', local_dir="/your/local/folder")
76
+ ```