Update README.md
Browse files
README.md
CHANGED
|
@@ -6,4 +6,89 @@ tags:
|
|
| 6 |
- medical
|
| 7 |
size_categories:
|
| 8 |
- 10K<n<100K
|
| 9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- medical
|
| 7 |
size_categories:
|
| 8 |
- 10K<n<100K
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
# Dataset for Singpath-VL
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
- **Paper:** [Singpath-VL](https://arxiv.org/pdf/2602.09523)
|
| 17 |
+
|
| 18 |
+
## Singpath-CytoText
|
| 19 |
+
### Dataset Description
|
| 20 |
+
|
| 21 |
+
Singpath-CytoText is a cervical cytology image dataset with structured pathological descriptions and annotations. Each image contains a bounding box highlighting anchor cell and provides a **structured description** (e.g., nuclear size, chromatin pattern, nuclear membrane status, etc.), a natural language **caption**, and a final cytological **label** (e.g., ASC-H). This dataset can be used for multimodal learning, vision-language pre-training, and medical image report generation.
|
| 22 |
+
|
| 23 |
+
### Supported Tasks and Leaderboards
|
| 24 |
+
|
| 25 |
+
- **Image Classification**: Predict the Bethesda category (e.g., ASC-H, NILM) from a cell image.
|
| 26 |
+
- **Vision-Language Modeling**: Generate structured pathological descriptions or reports from images.
|
| 27 |
+
- **Cross-Modal Retrieval**: Retrieve similar cell images using natural language queries.
|
| 28 |
+
|
| 29 |
+
### Languages
|
| 30 |
+
|
| 31 |
+
All text fields (structured description, caption, label) are in Chinese.
|
| 32 |
+
|
| 33 |
+
## Dataset Structure
|
| 34 |
+
|
| 35 |
+
### Data Instances
|
| 36 |
+
|
| 37 |
+
A typical data point from `Singpath-CytoText.json`:
|
| 38 |
+
|
| 39 |
+
```json
|
| 40 |
+
{
|
| 41 |
+
"image_name": "dEPhZAhdwBFttBzk_2363_130_280_244.jpg",
|
| 42 |
+
"structured description": {
|
| 43 |
+
"核大小": "增大",
|
| 44 |
+
"核染色质": "不均匀,颗粒粗,聚集明显",
|
| 45 |
+
"核数量": "单核",
|
| 46 |
+
"核质比": "增高",
|
| 47 |
+
"核膜": "不规则",
|
| 48 |
+
"核仁": "未见",
|
| 49 |
+
"胞质状态": "胞浆量少,着色浅,无特殊结构",
|
| 50 |
+
"异常病理指征": "细胞核异型性:存在;角化异常:未见,不存在挖空细胞",
|
| 51 |
+
"细胞空间构型": "未见聚集成团"
|
| 52 |
+
},
|
| 53 |
+
"caption": "框中细胞核增大,核染色质不均匀、深染,颗粒较粗且聚集明显;核膜轮廓不规则,核质比增高,为单核结构,未见明显核仁。胞浆量较少,着色较浅,无空泡化或其他特殊结构。细胞呈分散分布,未见聚集成团。。不存在挖空细胞。",
|
| 54 |
+
"label": "ASC-H"
|
| 55 |
+
}
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
## CytoCell-Bench
|
| 59 |
+
|
| 60 |
+
### Dataset Description
|
| 61 |
+
|
| 62 |
+
CytoCell-Bench is a benchmark dataset for cervical cytology image classification. Each image corresponds to a cell region and provides a classification label according to the Bethesda system (e.g., NILM, ASC-US, LSIL, HSIL). This dataset is intended to serve as a standardized testbed for cytology image classification algorithms.
|
| 63 |
+
|
| 64 |
+
### Supported Tasks and Leaderboards
|
| 65 |
+
|
| 66 |
+
- **Image Classification**: Predict the Bethesda category of a cell image. This task can serve as a benchmark in medical image classification.
|
| 67 |
+
|
| 68 |
+
### Languages
|
| 69 |
+
|
| 70 |
+
Labels are in English abbreviations (e.g., NILM) following the international Bethesda reporting system.
|
| 71 |
+
|
| 72 |
+
## Dataset Structure
|
| 73 |
+
|
| 74 |
+
### Data Instances
|
| 75 |
+
|
| 76 |
+
A typical data point from `CytoCell-Bench.json`:
|
| 77 |
+
|
| 78 |
+
```json
|
| 79 |
+
{
|
| 80 |
+
"image_name": "AIMS-419_19096.0_44486.0_crop_000.jpg",
|
| 81 |
+
"label": "NILM"
|
| 82 |
+
}
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## 📖 Citation
|
| 86 |
+
If you find the dataset useful in your research, please consider citing:
|
| 87 |
+
```
|
| 88 |
+
@article{qiu2026singpath,
|
| 89 |
+
title={Singpath-VL Technical Report},
|
| 90 |
+
author={Qiu, Zhen and Xiao, Kaiwen and Lu, Zhengwei and Liu, Xiangyu and Zhao, Lei and Zhang, Hao},
|
| 91 |
+
journal={arXiv preprint arXiv:2602.09523},
|
| 92 |
+
year={2026}
|
| 93 |
+
}
|
| 94 |
+
```
|