Dataset card for image corpus
Browse files
README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
size_categories:
|
| 4 |
+
- 10K<n<100K
|
| 5 |
+
annotations_creators:
|
| 6 |
+
- no-annotation
|
| 7 |
+
language_creators:
|
| 8 |
+
- machine-generated
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
multilinguality:
|
| 12 |
+
- monolingual
|
| 13 |
+
source_datasets:
|
| 14 |
+
- agentsea/wave-ui-25k
|
| 15 |
+
- showlab/ShowUI-desktop
|
| 16 |
+
- xlangai/aguvis-stage2
|
| 17 |
+
- HuggingFaceM4/the_cauldron
|
| 18 |
+
task_categories:
|
| 19 |
+
- image-to-text
|
| 20 |
+
- visual-question-answering
|
| 21 |
+
pretty_name: Vision Adapter Agentic + Cauldron Images
|
| 22 |
+
---
|
| 23 |
+
|
| 24 |
+
# Vision Adapter Image Corpus
|
| 25 |
+
|
| 26 |
+
Processed image corpus used to train the Vision-Adapter: 79,659 agentic UI images
|
| 27 |
+
("screenshots" + "multistep" subsets derived from wave-ui-25k, ShowUI-desktop, and
|
| 28 |
+
aguvis-stage2) plus full embeddable subsets of `HuggingFaceM4/the_cauldron` used for
|
| 29 |
+
general/reasoning/conversational fine-tuning.
|
| 30 |
+
|
| 31 |
+
Each image has been resized to ≤300k pixels and padded to 28-pixel multiples to match
|
| 32 |
+
MoonViT-V2 preprocessing.
|
| 33 |
+
|
| 34 |
+
## Fields
|
| 35 |
+
|
| 36 |
+
- `image`: raw PNG bytes (bytes column).
|
| 37 |
+
- `filename`: `source/basename` (e.g. `agentic/waveui_000123.png`).
|
| 38 |
+
- `source`: `agentic` or `cauldron`.
|
| 39 |
+
- `size`: bytes of the raw image.
|
| 40 |
+
|
| 41 |
+
## How to use
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
|
| 46 |
+
ds = load_dataset("keypa/vision-adapter-images")
|
| 47 |
+
print(ds)
|
| 48 |
+
```
|