Cover image

Stop Paying Twice for the Prompt: Preference Packing Reworks DPO’s Execution Layout

TL;DR for operators A DPO-style preference pair usually contains one prompt and two ranked responses. Conventional execution turns that into two prompt-response sequences, which means the same prompt is processed twice. Jaekyung Cho’s Preference Packing: Efficient Preference Optimization for Large Language Models1 treats that duplication as a systems problem. It stores the prompt once, places the alternative responses behind it, and uses masking plus adjusted position IDs so each response still behaves as though it were paired independently with the prompt. ...

September 16, 2026 · 7 min · Zelina
Cover image

Four Inputs In, One Modality Out: Testing Whether Omnimodal Models Actually Arbitrate Evidence

TL;DR for operators A model can receive a camera feed, spoken report, reference image, and text record without meaningfully reasoning across all four. In C$^3$PO1, 86–95% of observed failures across ten models in the paper’s failure analysis were classified as dominance-driven: one modality or prior drove the answer while other evidence was effectively ignored. ...

September 13, 2026 · 7 min · Zelina
Cover image

Thinking Longer, Looking Elsewhere

TL;DR for operators Longer reasoning is not automatically safer for vision-language systems. This paper finds that a model can preserve the relevant visual information yet perform worse once reasoning shifts attention away from the image region that matters. The paper separates two questions that are often conflated in multimodal evaluation: how much attention goes to the image, and whether that attention is concentrated on evidence relevant to the question. Targeted masking experiments suggest that the heads with concentrated visual focus are functionally important, not merely correlated with success. ...

September 13, 2026 · 7 min · Zelina
Cover image

Every Token Looks Everywhere: The Quadratic Bill Behind Attention

TL;DR for operators Long context becomes expensive for a specific architectural reason: standard self-attention allows every position to interact with every other position. In the usual formulation, that means $O(n^2 d)$ computation and $O(n^2)$ storage for attention-related matrices as sequence length $n$ grows. Hasi Hays’s mathematical monograph on attention1 is useful because it connects that deployment constraint directly to the mechanism that makes attention powerful in the first place. ...

September 12, 2026 · 7 min · Zelina
Cover image

More Memory, Worse Decisions: Why Agent Recall Needs Routing

TL;DR for operators An agent has a recurring allocation problem: how much of its past should it bring back before answering a question or choosing its next action? More history increases the chance that useful evidence is available, but it also increases the amount of material competing with the information that matters now. ...

August 27, 2026 · 8 min · Zelina
Cover image

Role Call: Who Your Agents Are Actually Listening To

TL;DR for operators Teams are easy to label. Understanding who actually listens to whom is harder. Hong’s paper on learned coordination conventions proposes a diagnostic for inspecting how cooperative reinforcement-learning agents route information between predefined roles.1 The central move is architectural: place role labels in both the querying agent’s representation and each ally’s representation, then use cross-attention to expose a role-to-role routing matrix. ...

July 10, 2026 · 20 min · Zelina
Cover image

Mind the Model: When Generative AI Teaches Neuroscience New Tricks

Mind the Model: When Generative AI Teaches Neuroscience New Tricks A model is not a mind. This should not need saying, but then again, neither should “do not use benchmark scores as a personality test,” and here we are. The more useful point is subtler. Modern generative AI does not matter to neuroscience because transformers are secretly brains in a hoodie. It matters because machine learning has turned several once-vague ideas about cognition into working engineering mechanisms. Not perfect mechanisms. Not biological mechanisms by default. But mechanisms clear enough to test, stress, reject, adapt, or steal with appropriate academic manners. ...

November 23, 2025 · 16 min · Zelina