<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>2026s on Philipp Krähenbühl</title><link>http://www.philkr.net/2026/</link><description>Recent content in 2026s on Philipp Krähenbühl</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Tue, 01 Sep 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://www.philkr.net/2026/index.xml" rel="self" type="application/rss+xml"/><item><title>Mask-Aware Policy Gradients for Diffusion Language Models</title><link>http://www.philkr.net/2026/raajesh2026mask/</link><pubDate>Tue, 01 Sep 2026 00:00:00 +0000</pubDate><guid>http://www.philkr.net/2026/raajesh2026mask/</guid><description>&lt;p>Reinforcement learning has proven effective for improving reasoning in large language models, but extending it to Masked Diffusion Language Models (MDLMs) remains challenging due to the intractability of the log-likelihood estimation. Existing approaches approximate this log-likelihood by modeling only the token predictions, ignoring the order in which positions are unmasked during generation. We observe that MDLM generation involves two decisions at each step: what tokens to place at each masked position and which positions to remask. We formalize this as a two-stage action MDP, showing that the policy gradient naturally decomposes into a token term and a masking term. Combining optimization of both terms leads to state-of-the-art outcomes on mathematical reasoning and coding benchmarks, with scores of 87.1% on GSM8K and 53.4% on MBPP.&lt;/p></description></item><item><title>Spherical Leech Quantization for Visual Tokenization and Generation</title><link>http://www.philkr.net/2026/zhao2026spherical/</link><pubDate>Tue, 02 Jun 2026 00:00:00 +0000</pubDate><guid>http://www.philkr.net/2026/zhao2026spherical/</guid><description>&lt;p>Non-parametric quantization has received much attention due to its efficiency on parameters and scalability to a large codebook. In this paper, we present a unified formulation of different non-parametric quantization methods through the lens of lattice coding. The geometry of lattice codes explains the necessity of auxiliary loss terms when training auto-encoders with certain existing lookup-free quantization variants such as BSQ. As a step forward, we explore a few possible candidates, including random lattices, generalized Fibonacci lattices, and densest sphere packing lattices. Among all, we find the Leech lattice-based quantization method, which is dubbed as Spherical Leech Quantization ($Λ_{24}$-SQ), leads to both a simplified training recipe and an improved reconstruction-compression tradeoff thanks to its high symmetry and even distribution on the hypersphere. In image tokenization and compression tasks, this quantization approach achieves better reconstruction quality across all metrics than BSQ, the best prior art, while consuming slightly fewer bits. The improvement also extends to state-of-the-art auto-regressive image generation frameworks.&lt;/p></description></item><item><title>Latent Chain-of-Thought World Modeling for End-to-End Driving</title><link>http://www.philkr.net/2026/tan2026latent/</link><pubDate>Mon, 01 Jun 2026 00:00:00 +0000</pubDate><guid>http://www.philkr.net/2026/tan2026latent/</guid><description>&lt;p>Recent Vision-Language-Action (VLA) models for autonomous driving explore inference-time reasoning as a way to improve driving performance and safety in challenging scenarios. Most prior work uses natural language to express chain-of-thought (CoT) reasoning before producing driving actions. However, text may not be the most efficient representation for reasoning. In this work, we present Latent-CoT-Drive (LCDrive): a model that expresses CoT in a latent language that captures possible outcomes of the driving actions being considered. Our approach unifies CoT reasoning and decision making by representing both in an action-aligned latent space. Instead of natural language, the model reasons by interleaving (1) action-proposal tokens, which use the same vocabulary as the model&amp;rsquo;s output actions; and (2) world model tokens, which are grounded in a learned latent world model and express future outcomes of these actions. We cold start latent CoT by supervising the model&amp;rsquo;s action proposals and world model tokens based on ground-truth future rollouts of the scene. We then post-train with closed-loop reinforcement learning to strengthen reasoning capabilities. On a large-scale end-to-end driving benchmark, LCDrive achieves faster inference, better trajectory quality, and larger improvements from interactive reinforcement learning compared to both non-reasoning and text-reasoning baselines.&lt;/p></description></item><item><title>Entropy-Preserving Reinforcement Learning</title><link>http://www.philkr.net/2026/petrenko2026entropy/</link><pubDate>Thu, 02 Apr 2026 00:00:00 +0000</pubDate><guid>http://www.philkr.net/2026/petrenko2026entropy/</guid><description>&lt;p>Policy gradient algorithms have driven many recent advancements in language model reasoning. An appealing property is their ability to learn from exploration on their own trajectories, a process crucial for fostering diverse and creative solutions. As we show in this paper, many policy gradient algorithms naturally reduce the entropy &amp;ndash; and thus the diversity of explored trajectories &amp;ndash; as part of training, yielding a policy increasingly limited in its ability to explore. In this paper, we argue that entropy should be actively monitored and controlled throughout training. We formally analyze the contributions of leading policy gradient objectives on entropy dynamics, identify empirical factors (such as numerical precision) that significantly impact entropy behavior, and propose explicit mechanisms for entropy control. These include REPO, a family of algorithms that modify the advantage function to regulate entropy, and ADAPO, an adaptive asymmetric clipping approach. Models trained with our entropy-preserving methods maintain diversity throughout training, yielding final policies that are more performant and retain their trainability for sequential learning in new environments.&lt;/p></description></item><item><title>Triangle Multiplication Is All You Need For Biomolecular Structure Representations</title><link>http://www.philkr.net/2026/ouyang-zhang2026triangle/</link><pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate><guid>http://www.philkr.net/2026/ouyang-zhang2026triangle/</guid><description>&lt;p>AlphaFold has transformed protein structure prediction, but emerging applications such as virtual ligand screening, proteome-wide folding, and de novo binder design demand predictions at a massive scale, where runtime and memory costs become prohibitive. A major bottleneck lies in the Pairformer backbone of AlphaFold3-style models, which relies on computationally expensive triangular primitives-especially triangle attention-for pairwise reasoning. We introduce Pairmixer, a streamlined alternative that eliminates triangle attention while preserving higher-order geometric reasoning capabilities that are critical for structure prediction. Pairmixer substantially improves computational efficiency, matching state-of-the-art structure predictors across folding and docking benchmarks, delivering up to 4x faster inference on long sequences while reducing training cost by 34%. Its efficiency alleviates the computational burden of downstream applications such as modeling large protein complexes, high-throughput ligand and binder screening, and hallucination-based design. Within BoltzDesign, for example, Pairmixer delivers over 2x faster sampling and scales to sequences ~30% longer than the memory limits of Pairformer. Code is available at &lt;a href="https://github.com/genesistherapeutics/pairmixer" target="_blank">github.com/genesistherapeutics/pairmixer&lt;/a>.&lt;/p></description></item></channel></rss>