README.md

May 9, 2025 ยท View on GitHub

Icon Hypo3D: Exploring Hypothetical Reasoning in 3D

Ye Mao,ย  Weixun Luo,ย  Junpeng Jing,ย  Anlan Qiu,ย  Krystian Mikolajczykย 
ย Imperial College London

Paper arXiv Project Page Data

๐Ÿ“ฃ Latest Updates

  • [2025-05-01] ๐ŸŽ‰ Hypo3D has been accepted to ICML 2025!
  • [2025-02-04] ๐Ÿ“ Hypo3D paper preprint is now available on arXiv.
  • [2025-02-09] ๐Ÿ“Š Hypo3D benchmark has been released.
  • [2025-02-09] ๐Ÿงช Evaluation scripts for multiple vision-language models are now publicly available.

๐Ÿ”‘ Key Takeaways

  • Hypo3D introduces a novel 3D reasoning benchmark.
    ๐Ÿง  Task Definition: Given a past 3D scene (e.g., point cloud, top-view image, scene captions) and a context change description, the goal is to imagine the updated scene after the change and answer questions based on that hypothetical scene state.

  • The benchmark includes 7,727 context changes and 14,885 QA pairs spanning 700 indoor scenes.
    These changes are categorized into five types:

    1. Movement โ€” Geometric transformations (e.g., translation, rotation)
    2. Removal โ€” Objects taken away from the scene
    3. Attribute โ€” Changes in object properties (e.g., color, open/closed state)
    4. Addition โ€” New objects introduced into the scene
    5. Replacement โ€” Existing objects substituted with different ones

sicl

About this code

The Hypo3D codebase is written in Python and provides simple modules for benchmarking 10 Foundation models, including LLM, 2D VLMs, and 3D VLMs. The core module structure is as follows:

Hypo3D/
โ”œโ”€โ”€ LLM/                          # Storing scripts for LLM models that use scene captions as input for 3D scene processing.
โ”‚   โ”œโ”€โ”€ GPT4o-text.               # Folder for evaluating GPT4o in text-only mode.
โ”‚   โ”œโ”€โ”€ llama/                    # Folder for evaluating LLama3.2 3B.
โ”œโ”€โ”€ 2D-VLM/                       # Storing scripts for 2D-VLM models that use top-view maps as input for 3D scene processing.
โ”‚   โ”œโ”€โ”€ Claude/                   # Folder for evaluating Claude 3.5 Sonnet.
โ”‚   โ”œโ”€โ”€ GPT4o/                    # Folder for evaluating GPT4o in vison-language mode.
โ”‚   โ”œโ”€โ”€ Qwen2-VL/                 # Folder for evaluating Qwen2-VL 7B and 72B.
โ”‚   โ”œโ”€โ”€ llava-ov/                 # Folder for evaluating LLaVA-OV 7B and 72B.
โ”œโ”€โ”€ 3D-VLM/                       # Storing scripts for 2D-VLM models that use point cloud/multi-view images as input for 3D scene processing.
โ”‚   โ”œโ”€โ”€ LLaVA-3D/                 # Folder for evaluating LLaVA-3D model 7B.
โ”‚   โ””โ”€โ”€ LEO/ (coming soon)        # Folder for evaluating LEO model 7B.
โ”œโ”€โ”€ exp/                          # Experiemental results for various models.
โ”œโ”€โ”€ metric_compute.py             # Compute exact match/partial match for each context change category.
โ”œโ”€โ”€ ...

Download the Hypo3D Benchmark

  1. Clone the repository recursively.
    git clone --recursive https://github.com/MatchLab-Imperial/Hypo3D.git
    
  2. Download 3D scene representations in Hypo3D dataset
    git clone https://huggingface.co/datasets/MatchLab/Hypo3D
    mv Hypo3D dataset # rename dataset folder
    cd dataset
    
    Expected data folder format:
     dataset/
     โ”œโ”€โ”€ LLM_data/                                          # Scene captions for Large Language Models (e.g., LLama3.2)
     โ”œโ”€โ”€ 2D_VLM_data/                                       # Scene Top-View Maps for 2D Vision-Language Models (e.g., GPT4o)
     โ”‚   โ”œโ”€โ”€ top_view_no_label_rotated/                     # Non-semantic top-view map.
     โ”‚   โ”œโ”€โ”€ top_view_with_label_rotated/                   # Semantic top-view map.
     โ”œโ”€โ”€ 3D_VLM_data/                                       # 3D Scene Data for 3D Vision-Language Models (e.g., LLaVA-3D)
    
    
  3. Complete the form to download Hypo3D dataset

๐Ÿ“Š Hypo3D: EM (Exact Match) / PM (Partial Match) Accuracy of Foundation Models

Model FamilyModelEM (%)PM (%)
LLM (Scene Caption)Llama-3.2 3B26.0829.91
GPT-4o API (Text)35.5439.65
2D VLM (Non-Semantic Map)Qwen2-VL 7B29.6834.47
Qwen2-VL 72B33.3937.51
LLaVA-OV 7B30.6234.34
LLaVA-OV 72B36.3840.13
Claude 3.5 Sonnet API20.7030.12
GPT-4o API33.5836.75
2D VLM (Semantic Map)Qwen2-VL 7B34.4038.91
Qwen2-VL 72B42.4548.25
LLaVA-OV 7B38.9343.51
LLaVA-OV 72B43.8146.83
Claude 3.5 Sonnet API41.3651.59
GPT-4o API45.5048.82
3D VLM (RGB-D Video/Point Cloud)LEO 7B14.8322.40
LLaVA-3D 7B31.5635.23
Human91.0092.50

Contact

Please open an issue or submit a pull request for issues, or contributions.

๐Ÿ’ผ License

License: MIT

Citation

If you find our benchmark is helpful, please cite our paper:

@article{mao2025hypo3d,
  title={Hypo3D: Exploring Hypothetical Reasoning in 3D},
  author={Mao, Ye and Luo, Weixun and Jing, Junpeng and Qiu, Anlan and Mikolajczyk, Krystian},
  journal={arXiv preprint arXiv:2502.00954},
  year={2025}
}