3DZip cuts 3D vision-language tokens 11× with diversity-anchored selection, keeping 94.7% accuracy

3DZip: Spatial-Aware Feature Diversity-Guided Token Compression for 3D Question Answering

Changwoo Baek, Kyeongbo Kong

ECCV 2026

cs.CV, cs.LG

2026-08-02

3D VLMs choke on massive 3D token sets; 3DZip voxelizes then picks diversity-anchored tokens, holding 94.7% accuracy at 1410-to-128 tokens and 1.9× faster inference.

What problem this solves

3D vision-language models (3D VLMs, which let an LLM understand a 3D scene and answer questions about objects) are bottlenecked by token count: a single point cloud easily produces over ten thousand 3D tokens fed into the LLM, which is slow and blows up memory, and far worse on long videos. Existing 2D token compressors (FastV and the like) port poorly to 3D, because 3D tokens carry spatial structure and a blunt importance cut tends to drop key small objects.

Method

3DZip is a post-hoc, plug-and-play three-stage compressor:

Against prior spatial-only DPP selection, feature-diversity anchors raise object coverage from 51% to 70%.

Results

TokensSQA3D acc.Retained
1410 (original)55.7100%
12853.294.7%
6492.3%
3288.9%

At 128 tokens accuracy drops only 2.5 points while inference falls from 342ms to 178ms (1.92×), FLOPs from 9.18T to 0.90T, and KV cache from 722MB to 101MB. It beats FastV, SparseVLM, VisionZip, VisPruner, and DTC, and transfers to Video-3D-LLM and SR-3D.

Why it matters

For 3D VLMs to reach real scenes (robotics, AR), token explosion is an unavoidable engineering wall. 3DZip offers a retraining-free path that cuts memory 7×, meaning the same GPU handles far larger scenes or longer videos. For anyone in embodied or spatial intelligence, this is a directly usable inference optimization.

Limitations

Terms

Source

Related papers

All paper explainers