Datasets:
Write dataset card
Browse files
README.md
CHANGED
|
@@ -10,8 +10,10 @@ tags:
|
|
| 10 |
- spatial-reasoning
|
| 11 |
- computer-vision
|
| 12 |
- multimodal
|
|
|
|
|
|
|
| 13 |
size_categories:
|
| 14 |
-
-
|
| 15 |
configs:
|
| 16 |
- config_name: default
|
| 17 |
data_files:
|
|
@@ -77,12 +79,52 @@ dataset_info:
|
|
| 77 |
num_examples: 19279
|
| 78 |
download_size: 421666211
|
| 79 |
dataset_size: 466678289.0
|
|
|
|
| 80 |
---
|
| 81 |
|
| 82 |
-
# Depth Point
|
| 83 |
|
| 84 |
-
|
|
|
|
| 85 |
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
- spatial-reasoning
|
| 11 |
- computer-vision
|
| 12 |
- multimodal
|
| 13 |
+
- vlm
|
| 14 |
+
- ablate-to-validate
|
| 15 |
size_categories:
|
| 16 |
+
- 10K<n<100K
|
| 17 |
configs:
|
| 18 |
- config_name: default
|
| 19 |
data_files:
|
|
|
|
| 79 |
num_examples: 19279
|
| 80 |
download_size: 421666211
|
| 81 |
dataset_size: 466678289.0
|
| 82 |
+
pretty_name: 'Mixed-Depth: Relative-Depth Point QA (ADE20K)'
|
| 83 |
---
|
| 84 |
|
| 85 |
+
# Mixed-Depth: Relative-Depth Point QA (ADE20K)
|
| 86 |
|
| 87 |
+
Training data for **Ablate-to-Validate: Are Vision-Language Models Really Using Visual Reasoning Tokens?**
|
| 88 |
+
([code](https://github.com/tjazhang/ablate_to_validate) · [project page](https://tjazhang.github.io/ablate_to_validate/) · [arXiv](https://arxiv.org/abs/2605.21642)).
|
| 89 |
|
| 90 |
+
Each example shows an ADE20K image with **3, 4, or 5 labeled points** circled and asks **which point is
|
| 91 |
+
closest to the camera**. It is used to train the LLaVA and Qwen2.5-VL relative-depth models in the paper.
|
| 92 |
+
|
| 93 |
+
- **Examples:** 19,279 — 3-point: 6,736 · 4-point: 6,562 · 5-point: 5,981
|
| 94 |
+
- **Image resolution:** 336 × 336
|
| 95 |
+
- **Source imagery:** ADE20K (train split)
|
| 96 |
+
|
| 97 |
+
## Browse / load (parquet, default config)
|
| 98 |
+
|
| 99 |
+
The default config powers the dataset viewer and loads directly:
|
| 100 |
+
|
| 101 |
+
```python
|
| 102 |
+
from datasets import load_dataset
|
| 103 |
+
ds = load_dataset("agianbig/mixed_depth", split="train")
|
| 104 |
+
ds[0]["image"] # PIL.Image (336x336)
|
| 105 |
+
ds[0]["answer_letter"] # e.g. "C"
|
| 106 |
+
```
|
| 107 |
+
|
| 108 |
+
Columns: `id`, `image`, `question`, `answer`, `answer_letter`, `answer_type`, `num_points`,
|
| 109 |
+
`point_labels`, per-point `point_{A..E}_x` / `point_{A..E}_y` (pixel coords) and
|
| 110 |
+
`point_{A..E}_depth` (relative depth).
|
| 111 |
+
|
| 112 |
+
## Finetuning files (LLaVA / Qwen conversation format)
|
| 113 |
+
|
| 114 |
+
For training, use the conversation-format JSON plus the image folder. Image fields are **basenames**
|
| 115 |
+
relative to `images/`:
|
| 116 |
+
|
| 117 |
+
```bash
|
| 118 |
+
hf download agianbig/mixed_depth --repo-type dataset --local-dir mixed_depth
|
| 119 |
+
# then, e.g.:
|
| 120 |
+
# --data_path mixed_depth/mixed_depth_long.json # or mixed_depth_short.json
|
| 121 |
+
# --image_folder mixed_depth/images
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
- `mixed_depth_long.json` — long chain-of-thought answers (point coordinates + depth reasoning + final letter)
|
| 125 |
+
- `mixed_depth_short.json` — short answers (final letter only, e.g. `(C)`)
|
| 126 |
+
- `images/` — 19,279 JPGs, referenced by basename in the JSON
|
| 127 |
+
|
| 128 |
+
## License
|
| 129 |
+
|
| 130 |
+
Released under MIT. Imagery is derived from ADE20K; please also observe the ADE20K terms.
|