--- license: mit task_categories: - visual-question-answering - depth-estimation language: - en tags: - depth - spatial-reasoning - computer-vision - multimodal - vlm - ablate-to-validate size_categories: - 10K **Why no `images/` folder?** The Hugging Face Hub caps any directory at 10,000 files, and there are > 19,279 images. They are therefore distributed inside the parquet rather than as a flat folder. ## Finetuning (LLaVA / Qwen conversation format) The conversation-format JSONs reference images by **basename**, so first extract the images to a local `images/` folder from the parquet, then train: ```python import os from datasets import load_dataset ds = load_dataset("agianbig/mixed_depth", split="train") os.makedirs("images", exist_ok=True) for r in ds: r["image"].save(os.path.join("images", os.path.basename(r["image_filename"]))) ``` ```bash hf download agianbig/mixed_depth --repo-type dataset --local-dir mixed_depth # run the snippet above (cwd = mixed_depth) to create mixed_depth/images/, then: # --data_path mixed_depth/mixed_depth_long.json # CoT answers, or mixed_depth_short.json # --image_folder mixed_depth/images ``` - `mixed_depth_long.json` — long chain-of-thought answers (coords + depth reasoning + final letter) - `mixed_depth_short.json` — short answers (final letter only, e.g. `(C)`) ## License Released under MIT. Imagery derived from ADE20K; please also observe the ADE20K terms.