Загрузка видео...

Не удалось загрузить видео

На главную

Spatial reconstruction is a long-context problem: real scenes come with hundreds of images. But O(N²) transformer-based models don’t scale efficiently. Introducing: 🤐ZipMap (CVPR ’26): Linear-Time, Stateful 3D Reconstruction via Test-Time Training (TTT). ZipMap “zips” a large image collection into an implicit TTT scene state in a single linear-time operation....

79,741 просмотров • 6 месяцев назад •via X (Twitter)

Комментарии: 29

Фото профиля Haian Jin
Haian Jin6 месяцев назад

🧵2/N Key to the speedup: we replace all global attention with TTT layers. Concretely, we first “zip” visual tokens into fast-weight MLPs by updating the weights with all tokens, then applying the updated MLPs back to the tokens. This update-then-apply mechanism plays a role analogous to vanilla bidirectional self-attention, while reducing the computational cost from O(N²) to O(N).

Фото профиля Haian Jin
Haian Jin6 месяцев назад

🧵3/N Fast speed without sacrificing quality: With careful designs of TTT, our model shows strong results across multiple benchmarks for both short and long sequence input, while being significantly faster. Left: Our runtime scales linearly; Given 750 images: <10s (ours) vs >200s (VGGT). Right: Our accuracy matches or surpasses quadratic-time SOTA (e.g., VGGT, π³).

Фото профиля Haian Jin
Haian Jin6 месяцев назад

🧵4/N Stateful reconstruction: the updated TTT fast weight can be viewed as an implicit scene state. In our paper, we demonstrate the benefits of having a stateful representation in real-time scene state querying and its extension to sequential streaming reconstruction.

Фото профиля Haian Jin
Haian Jin6 месяцев назад

For more results and technical details, please visit our project page: This work was done while I was a student researcher at @GoogleDeepMind. I’m very grateful for the inspiring research environment and the invaluable support from my collaborators @ChrisWu6080, @tianyuanzhang99, @RuiqiGao, @jon_barron, @Jimantha, and @holynski_.

Фото профиля ZotGuard
ZotGuard6 месяцев назад

VERY COOL!

Фото профиля Mayank Bhaskar
Mayank Bhaskar6 месяцев назад

Congratulations on the @CVPR 2026 acceptance! Would you or any of your co-authors like to present your papers in the @Cohere_Labs Computer Vision community? Cohere Labs Community Page: Here's the playlist to previous talks, if you are interested:

Фото профиля dailypapers.io
dailypapers.io6 месяцев назад

this is great work

Фото профиля Aryan Pandit ✈️ ECCV '26 🇸🇪
Aryan Pandit ✈️ ECCV '26 🇸🇪6 месяцев назад

Great work, seems really interesting!

Фото профиля Ang Cao
Ang Cao6 месяцев назад

Very cool work

Фото профиля Haian Jin
Haian Jin6 месяцев назад

Thank you, Ang!

Фото профиля ζ Pedram ζ
ζ Pedram ζ6 месяцев назад

Woah

Фото профиля Alexandre Devaux
Alexandre Devaux6 месяцев назад

Brilliant work! Looking forward to trying the code 🔥

Фото профиля 🎶
🎶6 месяцев назад

Cool

Фото профиля Yutang Lin
Yutang Lin6 месяцев назад

Great work, congrats!

Фото профиля Haian Jin
Haian Jin6 месяцев назад

Thank you, Yutang!

Фото профиля Wally
Wally6 месяцев назад

Very cool! Been exploring AI-generated impostor pipelines for real-time character rendering and the main pain point is view interpolation artifacts. This looks it could sidestep that entirely, looking forward to play around with the model!

Фото профиля 实践哥 Li
实践哥 Li6 месяцев назад

I love the zip idea

Фото профиля Brad Dangerfield
Brad Dangerfield6 месяцев назад

Sweet!

Фото профиля Utkarsh Mishra
Utkarsh Mishra6 месяцев назад

This is one of the most amazing things I've ever seen!

Фото профиля Sam Abdi
Sam Abdi6 месяцев назад

Seems really interesting and promising. Good work.

Фото профиля Haian Jin
Haian Jin6 месяцев назад

Thank you, Sam!

Фото профиля Daniel Sungho Jung
Daniel Sungho Jung6 месяцев назад

May i ask if there is any reason why robot and human motion were in main qualitative results? Any advantage of ZipMap in such scenarios?

Фото профиля Haian Jin
Haian Jin6 месяцев назад

Hi! We put them to just show how our methods work for dynamic scenes. We don’t mean to specifically emphasize it.

Фото профиля Daniel Sungho Jung
Daniel Sungho Jung6 месяцев назад

Thanks for the reply! I was curious as I am doing the tasks. Looking forward to visiting your poster at CVPR2026 :)

Фото профиля Nigel Higgs
Nigel Higgs6 месяцев назад

Hit me with an update when I can use the code

Фото профиля Haian Jin
Haian Jin6 месяцев назад

They will be released soon!

Фото профиля Nigel Higgs
Nigel Higgs6 месяцев назад

Awesome 👏🏽 just curious how well do you think this would work on video game footage?

Фото профиля Artem Sawistki
Artem Sawistki6 месяцев назад

That's dope! Can't wait to see the code

Фото профиля MistFaccoco
MistFaccoco5 месяцев назад

nice work!

Похожие видео

Check out our #ECCV2026 paper "Low-latency Event-based Object Detection with Spatially-Sparse Linear Attention", where we make linear attention sparse in space, recurrent in time, and parallel in training, enabling the first purely-linear-attention-based neural network for asynchronous object detection with #EventCameras, outperforming the previous best asynchronous method with 20x less computation with truly event-by-event inference on CPU! Code released! Paper: Code: Video: Event cameras promise extremely low-latency vision, but to fully exploit them, the neural network must be low-latency too. We introduce #SpatiallySparseLinearAttention (#SSLA) for asynchronous object detection directly from raw events. Linear attention is particularly appealing for event cameras: it can be trained efficiently in parallel on long event sequences, while at inference it operates recurrently, updating its prediction every time a new event arrives. The problem is that conventional linear attention updates its entire state for every event. For object detection, where fine spatial resolution matters, this quickly becomes expensive. Our key idea is simple: an event only carries information about a small spatial region, so why update the entire spatial state? SSLA updates only the relevant parts of the state, enabling fine-grained spatial representations while keeping per-event computation low. We achieve: - >20× lower per-event computation than the strongest prior asynchronous baseline - State-of-the-art accuracy among asynchronous object detection methods - Truly event-by-event inference on CPU, designed to preserve the latency advantage of event cameras Come to our poster on Friday September 11, 2026 from 4-6pm at ExHall #389 Reference: Haiqing Hao, Zhipeng Sui, Rong Zou, Zijia Dai, Nikola Zubić, Davide Scaramuzza, Wenhui Wang Low-latency Event-based Object Detection with Spatially-Sparse Linear Attention ECCV, 2026 Prophesee SynSense University of Zurich UZH Science European Research Council (ERC) UZHai UZH IfI Tesla BYD #EventCameras #ComputerVision #Robotics #DeepLearning #NeuromorphicVision #AI

Davide Scaramuzza

52,465 просмотров • 17 дней назад

3D-LLM: Injecting the 3D World into Large Language Models paper page: Large language models (LLMs) and Vision-Language Models (VLMs) have been proven to excel at multiple tasks, such as commonsense reasoning. Powerful as these models can be, they are not grounded in the 3D physical world, which involves richer concepts such as spatial relationships, affordances, physics, layout, and so on. In this work, we propose to inject the 3D world into large language models and introduce a whole new family of 3D-LLMs. Specifically, 3D-LLMs can take 3D point clouds and their features as input and perform a diverse set of 3D-related tasks, including captioning, dense captioning, 3D question answering, task decomposition, 3D grounding, 3D-assisted dialog, navigation, and so on. Using three types of prompting mechanisms that we design, we are able to collect over 300k 3D-language data covering these tasks. To efficiently train 3D-LLMs, we first utilize a 3D feature extractor that obtains 3D features from rendered multi- view images. Then, we use 2D VLMs as our backbones to train our 3D-LLMs. By introducing a 3D localization mechanism, 3D-LLMs can better capture 3D spatial information. Experiments on ScanQA show that our model outperforms state-of-the-art baselines by a large margin (e.g., the BLEU-1 score surpasses state-of-the-art score by 9%). Furthermore, experiments on our held-in datasets for 3D captioning, task composition, and 3D-assisted dialogue show that our model outperforms 2D VLMs. Qualitative examples also show that our model could perform more tasks beyond the scope of existing LLMs and VLMs.

AK

249,798 просмотров • 3 лет назад

🚀 Announcing Echo — our new frontier model for 3D world generation. Echo turns a simple text prompt or image into a fully explorable, 3D-consistent world. Instead of disconnected views, the result is a single, coherent spatial representation you can move through freely. This is part of a bigger shift in AI: from generating pixels and tokens to generating spaces. Echo predicts a geometry-grounded 3D scene at metric scale, meaning every novel view, depth map, and interaction comes from the same underlying world — not independent hallucinations. Once generated, the world is interactive in real time. You control the camera, explore from any angle, and render instantly — even on low-end hardware, directly in the browser. High-quality 3D world exploration is no longer gated by expensive equipment. Under the hood, Echo infers a physically grounded 3D representation and converts it into a renderable format. For our web demo, we use 3D Gaussian Splatting (3DGS) for fast, GPU-friendly rendering — but the representation itself is flexible and can be easily adapted. Why this matters: consistent 3D worlds unlock real workflows — digital twins, 3D design, game environments, robotics simulation, and more. From a single photo or a line of text, Echo builds worlds that are reliable, editable, and spatially faithful. Echo also enables scene editing and restyling. Change materials, remove or add objects, explore design variations — all while preserving global 3D consistency. Editing no longer breaks the world. This is only the beginning. Echo is the foundation for future world models with dynamics, physical reasoning, and richer interaction — environments that don’t just look right, but behave right. Explore the generated worlds on our website and sign up for the closed beta. The era of spatial intelligence starts here. 🌍 #Echo #WorldModels #SpatialAI #3DFoundationModels Check it out:

SpAItial AI

176,903 просмотров • 9 месяцев назад

Alibaba presents MIMO Controllable Character Video Synthesis with Spatial Decomposed Modeling Character video synthesis aims to produce realistic videos of animatable characters within lifelike scenes. As a fundamental problem in the computer vision and graphics community, 3D works typically require multi-view captures for per-case training, which severely limits their applicability of modeling arbitrary characters in a short time. Recent 2D methods break this limitation via pre-trained diffusion models, but they struggle for pose generality and scene interaction. To this end, we propose MIMO, a novel framework which can not only synthesize character videos with controllable attributes (i.e., character, motion and scene) provided by simple user inputs, but also simultaneously achieve advanced scalability to arbitrary characters, generality to novel 3D motions, and applicability to interactive real-world scenes in a unified framework. The core idea is to encode the 2D video to compact spatial codes, considering the inherent 3D nature of video occurrence. Concretely, we lift the 2D frame pixels into 3D using monocular depth estimators, and decompose the video clip to three spatial components (i.e., main human, underlying scene, and floating occlusion) in hierarchical layers based on the 3D depth. These components are further encoded to canonical identity code, structured motion code and full scene code, which are utilized as control signals of synthesis process. The design of spatial decomposed modeling enables flexible user control, complex motion expression, as well as 3D-aware synthesis for scene interactions. Experimental results demonstrate effectiveness and robustness of the proposed method.

AK

149,079 просмотров • 1 год назад