Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CC-Bench
|
| 2 |
+
|
| 3 |
+
### Structure
|
| 4 |
+
|
| 5 |
+
```text
|
| 6 |
+
CC-Bench/
|
| 7 |
+
├── train/
|
| 8 |
+
│ ├── medical_diagnosis/
|
| 9 |
+
│ │ ├── imgs/
|
| 10 |
+
│ │ └── train.json
|
| 11 |
+
│ ├── industrial_inspection/
|
| 12 |
+
│ │ ├── imgs/
|
| 13 |
+
│ │ └── train.json
|
| 14 |
+
│ └── video_surveillance/
|
| 15 |
+
│ ├── imgs/
|
| 16 |
+
│ └── train.json
|
| 17 |
+
└── test/
|
| 18 |
+
├── medical_diagnosis/
|
| 19 |
+
│ ├── imgs/
|
| 20 |
+
│ ├── test_A.json
|
| 21 |
+
│ ├── test_B.json
|
| 22 |
+
│ ├── gt_A.json
|
| 23 |
+
│ └── gt_B.json
|
| 24 |
+
├── industrial_inspection/
|
| 25 |
+
│ ├── imgs/
|
| 26 |
+
│ ├── test_A.json
|
| 27 |
+
│ ├── test_B.json
|
| 28 |
+
│ ├── gt_A.json
|
| 29 |
+
│ └── gt_B.json
|
| 30 |
+
└── video_surveillance/
|
| 31 |
+
├── imgs/
|
| 32 |
+
├── test_A.json
|
| 33 |
+
├── test_B.json
|
| 34 |
+
├── gt_A.json
|
| 35 |
+
└── gt_B.json
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### Licensing Information
|
| 39 |
+
|
| 40 |
+
Each of the publicly available sub-datasets present in CC-Bench are governed by specific licensing conditions. Therefore, when making use of them you must take into consideration each of the licenses governing each dataset. To the extent we have any rights in the prompts, these are licensed under CC-BY-4.0.
|
| 41 |
+
|
| 42 |
+
### Citation
|
| 43 |
+
|
| 44 |
+
If you find this dataset useful, please cite:
|
| 45 |
+
```bibtex
|
| 46 |
+
@article{yang2026criterion,
|
| 47 |
+
title={Criterion-Conditional In-Context Learning: Evaluating Criterion-Shift Adaptation in Vision-Language Models},
|
| 48 |
+
author={Yang, Kaiyun and Yang, Ruilin and Yao, Zhimin and Wang, Jikai and Ge, Wei},
|
| 49 |
+
journal={arXiv preprint arXiv:2607.02575},
|
| 50 |
+
year={2026}
|
| 51 |
+
}
|
| 52 |
+
```
|