Cover image

Stored Is Not Reachable: Why Continual Fact Writing Breaks Under Later Updates

TL;DR for operators A product team may repeatedly fine-tune a deployed model with new policies, prices, procedures, or customer facts, then approve each update because the newest item can be recalled immediately. That test shows the write changed current behavior. It does not show that earlier facts will remain usable after later updates. ...

August 2, 2026 · 10 min · Zelina
Cover image

The Smart Part Was the Memory, Not the Controller

TL;DR for operators A deployed model encounters a familiar operating condition again. Should it relearn the task, search for a saved configuration, or let a trained controller decide which parameters to reuse? The paper’s strongest result points to the simpler mechanism. Removing the searchable store of compressed task-specific configurations increased recovery from 1.27 to 13.33 adaptation steps—close to the 14.27 steps required by a baseline without that store. The component that looks least intelligent therefore accounts for most of the recovery advantage: retaining the small parameter modules that worked before and restoring them when the task returns. The paper calls this store the TaskKnowledgeBank. ...

August 1, 2026 · 9 min · Zelina
Cover image

Move the Goalposts on Purpose

TL;DR for operators A fixed rubric is a depreciating training asset. Early in reinforcement learning, it may be too demanding to distinguish one weak answer from another. Later, once the model learns to satisfy it, the same rubric becomes too easy. The score survives; the information content does not. EvoRubrics trains the evaluator alongside the model.1 A Policy LLM produces candidate answers, a Rubric Generator produces candidate evaluation criteria, and an external judge scores every answer against every rubric. The policy is rewarded for satisfying the evolving criteria. The rubric generator is rewarded for producing criteria that separate stronger from weaker answers, cover different dimensions, remain anchored to desired preferences, and help the policy revise its responses. ...

July 13, 2026 · 22 min · Zelina
Cover image

Stop Scaling the Wrong Thing

TL;DR for operators Most AI performance failures are not solved by scaling the most visible knob. Three recent papers make the same uncomfortable point from different angles. A controlled image-classification study finds that more data gives more stable generalization gains than simply increasing model complexity, while added visual priors help only when the architecture can use them.1 A document parsing benchmark shows that frontier VLMs and specialized parsers still fail on expert documents with dense layouts, formulas, tables, music notation, rotation, and long-document reading order.2 A LoRA optimization paper argues that adapter performance is often limited not by rank alone, but by a mis-scaled LoRA scaling factor, usually treated as a small implementation detail because apparently we needed another reminder that details run the building.3 ...

June 29, 2026 · 14 min · Zelina
Cover image

Bigger Ears Still Need a Budget

TL;DR for operators The paper is not really saying “use a smaller speech model.” That would be too convenient, and reality hates convenience. It is saying something more useful: audio-model efficiency is a budget allocation problem. Model size, audio duration, encoder token resolution, and adaptation depth are different ways to spend compute, and they do not buy the same thing. Agarwal, Gangrade, Pal, and Wu study this across automatic speech recognition using Whisper on LibriSpeech and speech emotion recognition using wav2vec2 on CREMA-D.1 ...

June 27, 2026 · 17 min · Zelina
Cover image

LoRA Was Supposed to Fit on the Edge. The Activations Disagreed.

TL;DR for operators LoRA does not magically make LLM fine-tuning fit on phones, laptops, or small edge boxes. It reduces the number of trainable parameters. The paper’s useful contribution is showing that this is only the opening move. The real memory bill arrives from activations, checkpoint boundaries, vocabulary-sized output computations, and tokens that are being processed even though they do not contribute to the loss. Apparently the memory allocator did not attend the product strategy meeting. ...

June 21, 2026 · 19 min · Zelina
Cover image

LoRA’s Rank Excuse Has a Gradient Problem

TL;DR for operators LoRA is usually sold as a rank-and-cost compromise: train a small low-rank adapter instead of updating the whole model, accept some performance gap, and enjoy the budget meeting. The paper behind SDS-LoRA argues that this explanation is incomplete. The gap is not only because the adapter is low-rank. It is also because standard LoRA can distort the training signal that flows into that adapter.1 ...

June 21, 2026 · 21 min · Zelina
Cover image

LoRA, Less Luggage: Choosing the Right Shortcut for Instance Segmentation

A camera sees a plastic bottle, a dolphin, a car, or a suspicious object inside an X-ray scan. The business question is usually not philosophical. It is: can we adapt an existing vision model to this specific mess without retraining half the machine? That is where parameter-efficient fine-tuning sounds irresistible. Freeze most of the pretrained model. Add a small trainable module. Spend less money. Store fewer weights. Avoid turning every client dataset into a private bonfire of GPU time. Lovely. Procurement smiles. Engineers almost smile. ...

June 7, 2026 · 17 min · Zelina
Cover image

Rank and File: MatryoshkaLoRA Turns One Adapter into Many

The adapter budget problem is not just training cost Budget is usually where fine-tuning conversations become less glamorous. A team wants a customized model. The engineer suggests LoRA because full fine-tuning is expensive. Everyone nods. Then the uncomfortable question arrives: which rank? A low rank is cheap but may underfit. A high rank may work better but costs more memory and inference compute. So the team trains several adapters, compares them, chooses one, and pretends the search process was a minor detail. It was not. It was the hidden invoice. ...

May 27, 2026 · 17 min · Zelina
Cover image

No More Low-Rank Detours: GPart and the Geometry of Fine-Tuning

Adapters are supposed to make fine-tuning simple. A team takes a large pretrained model, freezes most of it, trains a small adapter for customer support, another for invoice extraction, another for compliance review, and so on. The pitch is attractive: less storage, less training cost, faster iteration, fewer excuses from the infrastructure team. Naturally, the adapter becomes the small and tidy object everyone wants to manage. ...

May 26, 2026 · 15 min · Zelina