Views
No views yet
This paper presents Omni-View, which extends the unified multimodal understanding and generation to 3D scenes based on multiview images, exploring the principle that "generation facilitates understanding". Consisting of understanding model, texture module, and geometry module, Omni-View jointly models scene understanding, novel view synthesis, and geometry estimation, enabling synergistic interaction between 3D scene understanding and generation tasks. By design, it leverages the spatiotemporal modeling capabilities of its texture module responsible for appearance synthesis, alongside the explicit geometric constraints provided by its dedicated geometry module, thereby enriching the model’s holistic understanding of 3D scenes. Trained with a two-stage strategy, Omni-View achieves a state-of-the-art score of 55.4 on the VSI-Bench benchmark, outperforming existing specialized 3D understanding models, while simultaneously delivering strong performance in both novel view synthesis and 3D scene generation.

1git clone https://github.com/AIDC-AI/Omni-View.git
2cd Omni-View
3conda create -n omniview python=3.10 -y
4conda activate omniview
5pip install torch==2.6.0 torchvision # please following https://pytorch.org/get-started/previous-versions/
6pip install -r requirements.txt
7pip install flash_attn==2.7.4 --no-build-isolation1# BAGEL, configs and VAE
2from huggingface_hub import snapshot_download
3
4save_dir = "./pretrained_model/BAGEL-7B-MoT/"
5repo_id = "ByteDance-Seed/BAGEL-7B-MoT"
6cache_dir = save_dir + "/cache"
7
8snapshot_download(cache_dir=cache_dir,
9 local_dir=save_dir,
10 repo_id=repo_id,
11 local_dir_use_symlinks=False,
12 resume_download=True,
13 allow_patterns=["*.json", "ae.safetensors", "*.bin", "*.py", "*.md", "*.txt"],
14)1# Omni-View
2huggingface-cli download AIDC-AI/Omni-View --local-dir ./


1@misc{hu2025omniview,
2 title={Omni-View: Unlocking How Generation Facilitates Understanding in Unified 3D Model based on Multiview images},
3 author={JiaKui Hu and Shanshan Zhao and Qing-Guo Chen and Xuerui Qiu and Jialun Liu and Zhao Xu and Weihua Luo and Kaifu Zhang and Yanye Lu},
4 year={2025},
5 eprint={2511.07222},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2511.07222},
9}Copyright (C) 2025 AIDC-AI
Licensed under the Apache License, Version 2.0.
This project contains various third-party components under other open source licenses. You should respect the terms of those licenses.
The component DiT is released under the CC-BY-NC 4.0 License (for non-commercial purposes only).
See the NOTICE file for more information.