Eight from today's feed — a streaming 4D geometry transformer and a single-GPU world model, a diffusion-drafter speculative-decoding fix, two residual-stream/SSM architecture notes, parameter-efficient point-cloud tuning, staleness-aware async RL, and a genuinely useful lidar calibration for rotary inspection rigs.
★ AdaFlash: Adaptive Speculative Decoding via On-Policy Distilled Diffusion Drafters
2607.19223Yu-Yang Qian, Hao-Cong Wu, Chen Chen, Jiacheng Sun et al. · cs.LG cs.CL
Speculative decoding, in which a lightweight draft model first generates a draft sequence that is then verified in parallel by the target model, has become a prevalent paradigm for accelerating large language model inference. Recent work such as DFlash further boosts drafting efficiency by leveraging diffusion drafters, whose parallel denoising mechanism enables draft generation in a single forward pass. In this work, we uncover a central pitfall of diffusion drafters: bidirectional attention is a double-edged sword. On one hand, it endows the model with parallel generation and global contextual modeling capabilities; on the other hand, this inherent global dependency introduces high variance at both the domain-level and the token-level: acceptance rates fluctuate substantially across different domains, and draft token quality also varies heterogeneously at different token positions. To tackle this issue, we propose AdaFlash framework, comprising two components: (i) an on-policy distillation (OPD) algorithm with reverse-KL divergence tailored for diffusion drafters, bringing stable convergence and effectively reducing domain-level variance; and (ii) an adaptive length head that dynamically adjusts the candidate sequence length on the fly, substantially lowering the verification cost of the target model and handling token-level variance. Experiments demonstrate that AdaFlash consistently improves speedup rate during deployment, with especially significant gains in high-concurrency scenarios, achieving up to approximately 66% higher throughput than previous state-of-the-art methods.
take · The DFlash line drafts with a diffusion model — one parallel denoising pass proposes a whole draft — but this paper names the catch: the bidirectional attention that buys that parallelism also injects high variance into the acceptance rate, at both the domain and token level. AdaFlash distills the drafter on-policy to damp that variance. A good reminder that “faster drafts” and “accepted drafts” are different objectives, and the second is the one that actually sets the speedup.
abs · pdf · html · ar5iv
★ ABot-World-0: Infinite Interactive World Rollout on a Single Desktop GPU
2607.19191Fan Jiang, Zhaoxu Sun, Mengchao Wang, Ziyu Zhu et al. · cs.CV cs.AI cs.LG
We present ABot-World-0, an action-conditioned video world model for real-time, long-horizon closed-loop interaction, supported by a multi-source data infrastructure spanning AAA games, simulation engines, and internet videos to learn controllable world dynamics. WorldExplorer performs agent-driven collection guided by training feedback, while a unified pipeline applies 14 deterministic quality checks, VLM-based assessment, and synchronized action and text annotation. We progressively distill a bidirectional action-conditioned teacher into a causal student through teacher forcing and ODE distillation, and introduce LongForcing to align long student self-rollouts with an extended-horizon teacher, mitigating accumulated distribution shift and autoregressive drift. Raw keyboard actions provide a unified control interface for scene roaming and third-person character interaction, while reference-character memory provides persistent appearance cues for identity consistency during third-person rollouts. For deployment, we co-design a streaming inference stack with a lightweight VAE decoder, efficient attention, memory-aware scheduling, and low-bit DiT inference. Across optimized low-bit configurations, ABot-World-0 streams 720P video at up to 16 FPS on a single NVIDIA RTX 5090 desktop GPU, with 1.2s action-to-first-frame latency and approximately 19GiB peak VRAM. Experiments on WorldRoamBench and extended interactive rollouts demonstrate competitive controllability and coherent long-horizon world evolution.
take · An action-conditioned video world model you can run interactively on a single desktop GPU — the efficiency framing is the headline. They distill a bidirectional teacher into a causal student with ODE distillation, then add LongForcing to align long self-rollouts against an extended-horizon teacher and fight the usual autoregressive drift, trained on a mix of AAA games, sim engines, and internet video behind 14 deterministic quality checks. “Runs on one desktop GPU” is the part that makes a world model feel usable rather than a demo.
abs · pdf · html · ar5iv
IGGT4D: Streaming 4D Instance-Grounded Geometry Transformer
2607.19228Zhengyu Zou, Hao Li, Kuixuan Jiao, Liu Liu et al. · cs.CV
Real-world spatial intelligence requires agents to understand scenes from continuous video streams, where objects move, persist, disappear, and reappear over time. While recent spatial foundation models have enabled generalizable feed-forward 3D reconstruction, most streaming methods remain geometry-centric and lack temporally consistent object-level understanding. Meanwhile, existing semantic reconstruction and 3D-aware vision-language methods largely rely on externally extracted 2D semantic cues or loosely coupled geometry inputs, limiting unified geometry-instance learning in long dynamic scenes. In this paper, we propose IGGT4D, a streaming instance-grounded geometry Transformer for online 4D scene understanding. IGGT4D processes video frames sequentially, reuses historical context through causal spatial-temporal modeling, and incrementally updates a unified representation of camera motion, geometry, and object identity. This enables long-sequence feed-forward reconstruction with geometry-instance consistency in dynamic environments. To address the lack of high-quality 4D supervision, we further construct InsScene4D-147K, a large-scale dataset spanning real/synthetic and static/dynamic scenes, with RGB images, depth, poses, and temporally consistent instance masks generated by an automated geometry-guided annotation pipeline. Experiments on 3D reconstruction, pose estimation, instance spatial tracking, and open-vocabulary segmentation demonstrate that IGGT4D outperforms existing streaming baselines while maintaining scalable online inference for long dynamic sequences.
take · Most streaming 3D foundation models are geometry-centric — they reconstruct the scene but don't carry object identity through time. IGGT4D fuses geometry and instance grounding in one streaming transformer, so objects that move, vanish, and reappear keep a consistent handle across a long video, without leaning on externally extracted 2D semantics. Exactly the “spatial intelligence over a continuous stream” problem that matters for real perception.
abs · pdf · html · ar5iv
Dual Attention Residuals
2607.18730Xingda Yu, Yining Li, Xinzhang Liu, Zhihao Yang et al. · cs.CL
Recent work extends Transformer residual pathways along two complementary axes: historical retrieval selects information from earlier depths, whereas multi-stream methods maintain multiple residual trajectories. These capabilities have largely been studied in isolation, and assigning an independent retriever to each stream still prevents one trajectory from influencing depth selection in another. We propose Dual Attention Residuals (DAR), which brings multi-stream interaction into historical retrieval through reciprocal cross-stream addressing. For each target stream, DAR computes depth weights from normalized states in the opposite stream and applies them to values from the target stream's own history. The retrieved states are combined for an unchanged Transformer branch and updated through constrained gated writes; a block-form variant operates on block-level histories to control overhead. Across dense models from 0.1B to 1B parameters and a 7B sparse-MoE model, DAR consistently improves validation loss over standard residual Transformers and Attention Residuals. Routing ablations show that the gain cannot be explained by an additional stream or value projection alone. Representation and intervention analyses further show that reciprocal cross-stream selection preserves depth-wise diversity and avoids the redundancy or functional imbalance observed in alternative two-stream designs.
take · Two recent ideas for the residual stream — historical retrieval (pull from earlier depths) and multi-stream (keep several residual trajectories) — have mostly lived apart. DAR couples them: each stream computes its depth-selection weights from the *other* stream's normalized states. It's a close cousin of the Attention Residuals in Kimi K3, and one more sign that the residual pathway itself is becoming a design surface, not just a highway.
abs · pdf · html · ar5iv
Norm or Direction? Decoding Vision Mambas for High-Resolution Vision
2607.18625Jin Yu, Juyoun Park · cs.CV cs.AI
Vision Mamba models replace quadratic self-attention with linear complexity selective state space models (SSMs), emerging as efficient visual backbones. However, MambaOut demonstrates that a Gated CNN block can match or exceed VMamba on image classification, questioning the necessity of SSMs for vision. This raises a fundamental question: do VMamba and MambaOut encode visual information differently at the representation level? To investigate, we apply cross model centered kernel alignment (CKA) analysis and find that VMamba's final stage blocks form representations distinctly different from both MambaOut and its own preceding blocks. We therefore focus on the final block features, decomposing each spatial token into magnitude and direction. MambaOut concentrates class-discriminative information in high-norm foreground tokens that align with Grad-CAM attribution. VMamba, by contrast, produces high-norm tokens predominantly in background regions, misaligned with Grad-CAM, yet preserves discriminative signals primarily in token directions. These observations reveal that the two models rely on different encoding strategies. We connect this difference to high-resolution classification and semantic segmentation. VMamba distributes logit support broadly across object regions, whereas MambaOut relies on sparse dominant tokens, a strategy that becomes less stable as token counts grow. Under full fine-tuning for segmentation, VMamba consistently outperforms MambaOut. These results suggest that VMamba's advantage in dense prediction stems not merely from the SSM mechanism or sequence length, but from how semantic evidence is organized across token magnitude, direction. Ultimately, we conclude that token magnitude and directional structure serve as critical axes for improving visual backbones, particularly under dense supervision.
take · A clean measure-before-you-architect paper. MambaOut showed a gated CNN can match Vision Mamba, so do they actually encode vision differently? CKA says yes — VMamba's final-stage blocks diverge from both MambaOut and their own earlier blocks — and decomposing each spatial token into magnitude vs direction localizes where the difference lives. Pairs nicely with our own CKA map of workspace geometry across models.
abs · pdf · html · ar5iv
Point Ladder Tuning: Parameter-Efficient Hierarchical Adaptation for 3D Point Cloud Understanding
2607.19171Junlin Chang, Longhao Zou, Rui Li · cs.CV
Fine-tuning pre-trained point-cloud backbones typically updates all parameters, resulting in substantial computation and memory overhead. More importantly, modern point backbones rely on aggressive tokenization and downsampling, which yields compact global tokens but irreversibly discards fine-grained local geometry, an inherent bottleneck for parameter-efficient adaptation. Consequently, existing PEFT methods that operate only on these coarsened tokens can modulate global semantics but struggle to recover the missing multi-scale locality. We present Point Ladder Tuning (PLT), a locality-aware PEFT framework that performs hierarchical, instance-conditioned adaptation while keeping the backbone frozen. PLT forms a lightweight closed loop: (i) a Hierarchical Ladder Network (HLN) constructs a multi-resolution local feature pyramid directly from raw points; (ii) a Local-Global Fusion (LGF) aligns and fuses local pyramids with intermediate backbone semantics; and (iii) a Dynamic Prompt Generator produces instance-aware multi-scale prompts to modulate the frozen backbone effectively. For dense prediction, we further introduce a lightweight segmentation head that progressively upsamples fused features and leverages backbone priors to refine fine structures. Extensive experiments on classification and dense prediction show that PLT consistently surpasses prior PEFT baselines with minimal tunable parameters. PLT achieves state-of-the-art performance using only 2.71% trainable parameters for classification and 7.69% for dense prediction, and scales favorably to larger backbones, requiring merely 0.36% parameters on PointGPT-L. The code is released at https://github.com/JunLinChang/ECCV2026-PLT.
take · Point backbones tokenize and downsample hard, which yields compact global tokens but irreversibly discards fine local geometry — so PEFT methods that only touch the coarse tokens can modulate semantics but can't recover multi-scale locality. Point Ladder Tuning adds a locality-aware ladder that adapts hierarchically with the backbone frozen. Practical for fine-tuning a point-cloud model on a real inspection dataset without paying the full-finetune bill.
abs · pdf · html · ar5iv
Stale but Stable: Staleness-Adaptive Trust Regions for Stabilizing Asynchronous Reinforcement Learning
2607.18722Junyao Yang, Yucheng Shi, Zongxia Li, Zhongzhi Li et al. · cs.LG cs.CL
Asynchronous reinforcement learning improves throughput by decoupling rollout generation from optimization, but staleness is an inevitable byproduct compounded by policy lag, engine delays, and mixture-of-experts routing. From a trust-region perspective, this mismatch is critical: training-inference divergence governs approximation error in finite-horizon bounds, whereas PPO clipping only gates sampled outward updates, acting as a sampled surrogate rather than a full-policy constraint. As a result, high-staleness updates remain weakly controlled in the asynchronous regime where stale rollouts matter most. We introduce the Staleness-Adaptive Trust Region (SAT), which uses the detached sampled log-ratio as a practical staleness proxy, identifies high-mismatch tails within each batch via staleness-based kernel scaling, and contracts only the sign-selected endpoint of the nominal PPO interval. This preserves baseline behavior on ordinary tokens while enforcing more conservative updates on newly intercepted outward bands. We prove local interval containment and pointwise pessimism relative to PPO, showing how the adaptive rule reshapes update geometry under heterogeneous staleness. We evaluate SAT in a decoupled asynchronous RL setup built on Qwen3-30B-A3B-Base, using SGLang as the inference engine and Megatron for training. In this setting, SAT-GSPO w/ R3 achieves the best observed AIME24 avg@8, reaching 35.83 at lag 1 and 34.79 at lag 8, while SAT-GSPO reaches 34.17 at lag 1. Adaptive clipping and routing replay act as complementary stabilizers targeting mismatch tails and routing inconsistency, respectively. Overall, aligning clip intervals with staleness heterogeneity effectively stabilizes asynchronous RL.
take · Async RL buys throughput by decoupling rollout generation from optimization, but staleness — policy lag, engine delays, MoE routing drift — quietly breaks the trust region, and PPO clipping only gates the sampled updates rather than the full-policy mismatch. SAT uses the detached sampled log-ratio as a staleness proxy to tighten the region exactly where stale rollouts matter most. Squarely in the make-large-scale-RL-not-fall-over genre we keep returning to.
abs · pdf · html · ar5iv
Two-Stage Extrinsic Calibration of a Static Line-Scanning Lidar with a Rotary Platform
2607.18578Vikram Shree, Hike Danakian, Long Nguyen, Rajanish Gokidi et al. · cs.RO eess.SP
A line-scanning lidar yields range and azimuth values in a fixed plane. To perceive surrounding objects in 3D, there must be relative motion between the lidar plane and the object. Thus, using a rotating base-platform is promising for industrial applications where objects need to be scanned or inspected precisely, and is the main focus of this work. In the rotary platform setup, a 3D point cloud of an object can be constructed if the axis of rotation and the precise motion about that axis are known. However, this setup gives rise to the following problem: how can the axis of rotation of the platform be accurately identified with respect to the lidar coordinate system? It is referred to as the calibration problem in the robotics community. Any inaccuracy in this transformation directly affects the quality of the reconstructed point cloud, leading to misrepresentation of the object of interest. In this work, we explore automated approaches to statically and dynamically estimate the transformation of a rotary platform's axis of rotation with respect to a static line-scanning lidar. The proposed algorithms have been validated on real-world datasets obtained from a custom made rotary platform and an FMCW lidar, and their convergence characteristics are studied for various initial conditions.
take · A refreshingly concrete robotics paper. A static line-scanning lidar on a rotary platform can build a 3D point cloud of an object — but only if you know the axis of rotation precisely, and recovering that axis in the lidar frame is the whole problem. Their two-stage extrinsic calibration pins it down for industrial scan-and-inspect rigs. This is the unglamorous perception plumbing that decides whether an inspection setup actually works.
abs · pdf · html · ar5iv