Datasets:
Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- object-detection
|
| 5 |
+
- image-to-text
|
| 6 |
+
- zero-shot-object-detection
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
pretty_name: ORCA 100-image random sample
|
| 10 |
+
size_categories:
|
| 11 |
+
- n<1K
|
| 12 |
+
source_datasets:
|
| 13 |
+
- WongYukKwan/ORCA
|
| 14 |
+
tags:
|
| 15 |
+
- marine-species
|
| 16 |
+
- coco-format
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# ORCA 100-image random sample
|
| 20 |
+
|
| 21 |
+
A random sample of **100 images** (with their annotations) drawn from the ORCA dataset
|
| 22 |
+
([WongYukKwan/ORCA](https://huggingface.co/datasets/WongYukKwan/ORCA)), the benchmark from
|
| 23 |
+
*ORCA: Object Recognition and Comprehension for Archiving Marine Species* (WACV 2026,
|
| 24 |
+
[arXiv:2512.21150](https://arxiv.org/abs/2512.21150)).
|
| 25 |
+
|
| 26 |
+
## How it was sampled
|
| 27 |
+
|
| 28 |
+
- 100 images sampled uniformly at random with a fixed seed (`random.Random(42)`) from the
|
| 29 |
+
14,645 images in the source dataset.
|
| 30 |
+
- The 100 sampled images span all 670 species categories in expectation; the sample contains
|
| 31 |
+
269 bounding-box annotations (with captions).
|
| 32 |
+
- Annotations in `data.json` are filtered to only the sampled images; the full `categories`
|
| 33 |
+
taxonomy (670 entries) is kept unchanged so category IDs still resolve.
|
| 34 |
+
|
| 35 |
+
## Structure
|
| 36 |
+
|
| 37 |
+
COCO format, identical to the source dataset:
|
| 38 |
+
|
| 39 |
+
- `data.json` — `{"images": [...], "annotations": [...], "categories": [...]}`
|
| 40 |
+
- `images/` — the 100 sampled image files
|
| 41 |
+
|
| 42 |
+
Each annotation carries `bbox`, `caption`, and `label`
|
| 43 |
+
(0 = LLM-generated positive caption, 1 = LLM-generated negative caption,
|
| 44 |
+
2 = expert-refined positive caption).
|
| 45 |
+
|
| 46 |
+
## License
|
| 47 |
+
|
| 48 |
+
The source dataset is released under **CC-BY-4.0**; this sample inherits that license.
|
| 49 |
+
Please cite the original ORCA paper if you use this sample:
|
| 50 |
+
|
| 51 |
+
```bibtex
|
| 52 |
+
@InProceedings{Wong_2026_WACV,
|
| 53 |
+
author = {Wong, Yuk-Kwan and Liang, Haixin and Ma, Zeyu and Chen, Yiwei and Zheng, Ziqiang and Gotama, Rinaldi and Sebastian, Pascal and Sparks, Lauren D. and Yeung, Sai-Kit},
|
| 54 |
+
title = {ORCA: Object Recognition and Comprehension for Archiving Marine Species},
|
| 55 |
+
booktitle = {Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV)},
|
| 56 |
+
month = {March},
|
| 57 |
+
year = {2026},
|
| 58 |
+
pages = {1597-1609}
|
| 59 |
+
}
|
| 60 |
+
```
|