SuperVoxelGPT: Adaptive and Ordered 3D Tokenization for Autoregressive Shape Generation
Summary
SuperVoxelGPT is a novel representation-first framework designed for high-resolution 3D shape generation using autoregressive multimodal large language models (MLLMs). It addresses the challenge of scaling MLLMs to complex 3D shapes by introducing adaptive and deterministically ordered supervoxel tokenization. The framework first predicts a coarse geometric saliency distribution from a prompt, then constructs a shape-adaptive supervoxel partition using saliency-guided centroidal Voronoi tessellation (CVT), allocating fine-grained cells to complex regions and larger cells to smooth areas. A SuperVoxelVAE encodes local geometry into discrete tokens, and a fine-tuned MLLM (Qwen2.5-0.5B) autoregressively generates these tokens, leveraging Jacobi decoding for parallel inference. Experiments on Trellis-500K demonstrate that SuperVoxelGPT reduces token sequence length to 12.8% of uniform voxel tokenization, achieves state-of-the-art generation quality, and delivers an average 10x speedup over prior methods for 1024^3 resolution shapes.
Key takeaway
For AI Architects and Machine Learning Engineers developing high-resolution 3D generative models, SuperVoxelGPT offers a significant advancement. You should consider implementing adaptive supervoxel tokenization to drastically reduce sequence length and achieve a 10x inference speedup without sacrificing quality. This approach allows you to scale MLLM-based 3D generation to complex geometries more efficiently, making high-fidelity asset creation practical. Evaluate its saliency prediction dependency for your specific detail requirements.
Key insights
Adaptive, ordered supervoxel tokenization resolves the trade-off between compactness and spatial fidelity for autoregressive 3D generation.
Principles
- Deterministic sequential structure is crucial for stable autoregressive modeling.
- Adaptive capacity allocation improves efficiency and detail preservation.
- Decoupling token allocation from geometry generation enhances scalability.
Method
SuperVoxelGPT uses a two-stage process: first, prompt-to-saliency volume prediction and saliency-guided CVT for adaptive supervoxel partitioning; second, SuperVoxelVAE encoding and MLLM-based Jacobi decoding for token generation.
In practice
- Integrate supervoxel layers into existing sparse voxel VAEs for token compression.
- Apply Jacobi decoding when sequence length is known for parallel inference.
Topics
- 3D Generation
- Multimodal LLMs
- SuperVoxel Tokenization
- Centroidal Voronoi Tessellation
- Jacobi Decoding
- Voxel-based Models
Best for: Research Scientist, Computer Vision Engineer, AI Scientist, Machine Learning Engineer, AI Architect
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CV updates on arXiv.org.