Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: 'crossmoda-lite'
|
11 |
+
size_categories:
|
12 |
+
- n<1K
|
13 |
+
---
|
14 |
+
|
15 |
+
|
16 |
+
## About
|
17 |
+
This is a subset of the [CrossMoDA dataset](https://zenodo.org/records/4662239).
|
18 |
+
- 105 contrast-enhanced T1 MR images and corresponding segmentation masks
|
19 |
+
- No change to any image or segmentation mask
|
20 |
+
- Files are rearrange into `Images` and `Masks` folders
|
21 |
+
- This is labeled data in the training set of [CrossMoDA dataset](https://zenodo.org/records/4662239)
|
22 |
+
|
23 |
+
This dataset is released under the `CC BY-NC-SA 4.0` license.
|
24 |
+
|
25 |
+
|
26 |
+
## Segmentation Labels
|
27 |
+
```python
|
28 |
+
labels_map = {
|
29 |
+
"1": "vestibular schwannoma (acoustic neuroma)",
|
30 |
+
"2": "cochlea",
|
31 |
+
}
|
32 |
+
```
|
33 |
+
|
34 |
+
|
35 |
+
## Official Release
|
36 |
+
For more information, please refer to the offical sites:
|
37 |
+
- Challenge (official): https://crossmoda-challenge.ml
|
38 |
+
- Data (official): https://zenodo.org/records/4662239
|
39 |
+
- Paper: https://doi.org/10.1016/j.media.2022.102628
|
40 |
+
|
41 |
+
|
42 |
+
## Download from Huggingface
|
43 |
+
```bash
|
44 |
+
#!/bin/bash
|
45 |
+
pip install huggingface-hub[cli]
|
46 |
+
huggingface-cli login --token $HF_TOKEN
|
47 |
+
```
|
48 |
+
```python
|
49 |
+
# python
|
50 |
+
from huggingface_hub import snapshot_download
|
51 |
+
snapshot_download(repo_id="YongchengYAO/CrossMoDA-Lite", repo_type='dataset', local_dir="/your/local/folder")
|
52 |
+
```
|