Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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: 'kipa22-lite'
|
| 11 |
+
size_categories:
|
| 12 |
+
- n<1K
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
## About
|
| 17 |
+
This is a redistribution of the [KiPA22 dataset](https://kipa22.grand-challenge.org).
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## News 🔥
|
| 21 |
+
- [10 Oct, 2025] This dataset is integrated into 🔥[MedVision](https://huggingface.co/datasets/YongchengYAO/MedVision)🔥
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Segmentation Labels
|
| 25 |
+
```python
|
| 26 |
+
labels_map = {"1": "renal vein",
|
| 27 |
+
"2": "kidney",
|
| 28 |
+
"3": "renal artery",
|
| 29 |
+
"4": "kidney tumor"}
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## Official Release
|
| 34 |
+
For more information, please go to the KiPA22 challenge: https://kipa22.grand-challenge.org
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
## Download from Huggingface
|
| 38 |
+
```bash
|
| 39 |
+
#!/bin/bash
|
| 40 |
+
pip install huggingface-hub[cli]
|
| 41 |
+
huggingface-cli login --token $HF_TOKEN
|
| 42 |
+
```
|
| 43 |
+
```python
|
| 44 |
+
# python
|
| 45 |
+
from huggingface_hub import snapshot_download
|
| 46 |
+
snapshot_download(repo_id="YongchengYAO/KiPA22", repo_type='dataset', local_dir="/your/local/folder")
|
| 47 |
+
```
|