YongchengYAO commited on
Commit
ceb0fe2
·
1 Parent(s): 64bc68c
Files changed (5) hide show
  1. Images-CT.zip +3 -0
  2. Images-contrastCT.zip +3 -0
  3. Masks-Task1.zip +3 -0
  4. Masks-Task2.zip +3 -0
  5. README.md +0 -108
Images-CT.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e7b849c5f0296200e5ad9503eeeb9b2a8b3360297078d0ce016c8f8335534ef
3
+ size 14329394712
Images-contrastCT.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:000cc8bf9041c49f7e28ad3e183f7af3f9e701b1842031fb17e21a89db0a8f6a
3
+ size 17848124772
Masks-Task1.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3441d2bd56ecff4485b99a197b36251b09d2030468840f9399419b517691d297
3
+ size 52591886
Masks-Task2.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d412baf209f7a2d2432f05d1f39b5ce1944e1ff2d2b6ccfc4f727626a02f3d55
3
+ size 8333305
README.md DELETED
@@ -1,108 +0,0 @@
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: 'segrap23-lite'
11
- size_categories:
12
- - n<1K
13
- ---
14
-
15
-
16
- ## About
17
- This is a subset of the [SegRap23 dataset](https://segrap2023.grand-challenge.org/dataset/).
18
- - 120 images (for both contrast-CT and CT) and segmentation masks (for both task 1 and 2 in [SegRap23 challenge](https://segrap2023.grand-challenge.org))
19
- - No change to any image or segmentation mask
20
- - Files are renamed according to case IDs
21
-
22
- This dataset is released under the `CC BY-NC 4.0` license.
23
-
24
-
25
- ## Segmentation Labels
26
- ```python
27
- labels_map_tasks1 = {
28
- "1": "brain",
29
- "2": "brainstem",
30
- "3": "optic chiasm",
31
- "4": "left temporal lobe",
32
- "5": "right temporal lobe",
33
- "6": "left overlap region of temporal lobe & hippocampus",
34
- "7": "right overlap region of temporal lobe & hippocampus",
35
- "8": "left hippocampus",
36
- "9": "right hippocampus",
37
- "10": "left eye",
38
- "11": "right eye",
39
- "12": "left lens",
40
- "13": "right lens",
41
- "14": "left optic nerve",
42
- "15": "right optic nerve",
43
- "16": "left middle ear",
44
- "17": "right middle ear",
45
- "18": "left internal auditory canal",
46
- "19": "right internal auditory canal",
47
- "20": "left overlap region of middle ear & tympanic cavity",
48
- "21": "right overlap region of middle ear & tympanic cavity",
49
- "22": "left tympanic cavity",
50
- "23": "right tympanic cavity",
51
- "24": "left overlap region of middle ear & vestibular semicircular canal",
52
- "25": "right overlap region of middle ear & vestibular semicircular canal",
53
- "26": "left vestibular semicircular canal",
54
- "27": "right vestibular semicircular canal",
55
- "28": "left cochlea",
56
- "29": "right cochlea",
57
- "30": "left overlap region of middle ear & eustachian tube bone",
58
- "31": "right overlap region of middle ear & eustachian tube bone",
59
- "32": "left eustachian tube bone",
60
- "33": "right eustachian tube bone",
61
- "34": "pituitary gland",
62
- "35": "oral cavity",
63
- "36": "left mandible",
64
- "37": "right mandible",
65
- "38": "left submandibular gland",
66
- "39": "right submandibular gland",
67
- "40": "left parotid gland",
68
- "41": "right parotid gland",
69
- "42": "left mastoid",
70
- "43": "right mastoid",
71
- "44": "left temporomandibular joint",
72
- "45": "right temporomandibular joint",
73
- "46": "spinal cord",
74
- "47": "esophagus",
75
- "48": "larynx",
76
- "49": "larynx glottic",
77
- "50": "larynx supraglottic",
78
- "51": "overlap region of larynx & pharynx constrictors",
79
- "52": "pharynx constrictor",
80
- "53": "thyroid",
81
- "54": "trachea",
82
- }
83
-
84
- labels_map_tasks2 = {
85
- "1": "gross target volume of nasopharynx tumor",
86
- "2": "gross target volume of lymph node tumor",
87
- }
88
- ```
89
-
90
-
91
- ## Official Release
92
- For more information, please refer to the [SegRap23 challenge](https://segrap2023.grand-challenge.org).
93
- - Data License (official): N/A (Please contact [me](https://yongchengyao.github.io) if there are any licensing issues.)
94
- - Challenge (official): https://segrap2023.grand-challenge.org
95
- - Data (official): https://segrap2023.grand-challenge.org/dataset/
96
-
97
-
98
- ## Download from Huggingface
99
- ```bash
100
- #!/bin/bash
101
- pip install huggingface-hub[cli]
102
- huggingface-cli login --token $HF_TOKEN
103
- ```
104
- ```python
105
- # python
106
- from huggingface_hub import snapshot_download
107
- snapshot_download(repo_id="YongchengYAO/SegRap23-Lite", repo_type='dataset', local_dir="/your/local/folder")
108
- ```