Datasets:
Tasks:
Image-Text-to-Image
Formats:
webdataset
Languages:
English
Size:
100K - 1M
ArXiv:
Tags:
medical
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,65 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-text-to-image
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- medical
|
| 9 |
+
pretty_name: a
|
| 10 |
+
size_categories:
|
| 11 |
+
- 100K<n<1M
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
<div align="center">
|
| 15 |
+
<h1>MieDB-100k: A Comprehensive Dataset for Medical Image Editing</h1>
|
| 16 |
+
|
| 17 |
+
<a href='https://github.com/Raiiyf/MieDB-100k'><img src='https://img.shields.io/badge/Github-code-blue'></a>
|
| 18 |
+
<a href='https://arxiv.org/abs/2602.09587'><img src='https://img.shields.io/badge/Arxiv-paper-red'></a>
|
| 19 |
+
<a href='https://huggingface.co/datasets/Laiyf/MieDB-100k'><img src='https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-MieDB 100k-yellow'></a>
|
| 20 |
+
|
| 21 |
+
<p align="center"><img src="figure_1.jpg"></p>
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
## 📄 Introduction
|
| 25 |
+
|
| 26 |
+
**MieDB-100k** is a large-scale, high-quality and diverse dataset for text-guided medical image editing,
|
| 27 |
+
which includes **112, 228** editing data, covering **69** distinct editing targets and **10** diverse medical image modalities.
|
| 28 |
+
We categorize editing tasks into three types: **Perception**, **Modification** and **Transformation**, which consider both model's intrinsic understanding and generation abilities on medical images.
|
| 29 |
+
The dataset is constructed by both modality-specific expert models and rule-based data synthetic methods.
|
| 30 |
+
Additionally, for some complex tasks such as lesion modification, we introduce individuals with medical knowledge to perform manual quality checks on the data to ensure data quality.
|
| 31 |
+
|
| 32 |
+
## ⚙️ Dataset Setup
|
| 33 |
+
|
| 34 |
+
‼️NOTICE: We will release the train split of MieDB-100k ASAP
|
| 35 |
+
|
| 36 |
+
1. Download compressed MieDB-100k dataset
|
| 37 |
+
2. Extract compressed file via:
|
| 38 |
+
|
| 39 |
+
Benchmark split:
|
| 40 |
+
```bash
|
| 41 |
+
mkdir dataBenchmark
|
| 42 |
+
pv dataBenchmark_*.tar | tar -xf - -C dataBenchmark --skip-old-files
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
Train split (Coming Soon):
|
| 46 |
+
```bash
|
| 47 |
+
mkdir dataTrain
|
| 48 |
+
pv dataTrain_*.tar | tar -xf - -C dataTrain --skip-old-files
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
Note:
|
| 52 |
+
- `pv` is used for progress visualization. You can switch to `cat` if you want to extract in silence manner.
|
| 53 |
+
- macOS doesn't support --skip-old-files, use `tar -xkf - -C /path/to/dst/` instead after the pipe.
|
| 54 |
+
|
| 55 |
+
## 🐑 Citation
|
| 56 |
+
|
| 57 |
+
```
|
| 58 |
+
@article{miedb100k,
|
| 59 |
+
title={MieDB-100k: A Comprehensive Dataset for Medical Image Editing},
|
| 60 |
+
author={Yongfan Lai and Wen Qian and Bo Liu and Hongyan Li and Hao Luo and Fan Wang and Bohan Zhuang and Shenda Hong},
|
| 61 |
+
year={2026},
|
| 62 |
+
journel={Preprint at arXiv}
|
| 63 |
+
url={https://arxiv.org/abs/2602.09587},
|
| 64 |
+
}
|
| 65 |
+
```
|