Cover image

LoRA’s Missing Budget: Which Matrices Deserve an Adapter?

TL;DR for operators LoRA already avoids the cost of updating an entire pretrained model, but it can still spend adapter capacity uniformly across matrices that do not appear equally responsive to low-rank changes. If a training team has a fixed fine-tuning budget, there are therefore two allocation decisions: how large each adapter should be, and which matrices should receive one. ...

September 5, 2026 · 7 min · Zelina
Cover image

Split Only What Hurts: A Constraint-First Guide to LLM Parallelism

TL;DR for operators When a model must fit across a fixed accelerator cluster without sacrificing throughput, splitting the workload more aggressively is not automatically better. Amer et al.1 show that on their eight-NPU setup, pure data parallelism performs best for both tested 1B models. At 7B, the best configurations add only limited model parallelism: pipeline parallelism for LLaMA and tensor parallelism for Mamba. ...

September 5, 2026 · 7 min · Zelina
Cover image

The Front End Holds the Line: What Heart-Sound CNNs Lose When Models Shrink

TL;DR for operators A team shrinking an audio classifier for a low-cost screening device has more than one place to spend scarce compute. The network can stay larger, or the input representation can do more work before the signal reaches the network. That trade-off became visible when this heart-sound CNN was reduced from three convolutional blocks to two. Using a plain log-mel spectrogram, modified accuracy—a score that gives equal weight to abnormal-case sensitivity and normal-case specificity—fell from 0.910 to 0.826. With a front-end that normalizes each frequency band against its recent energy so locally unusual sounds stand out more clearly, called PCEN, it fell only from 0.915 to 0.894. A front-end representing the same sound at several time-frequency resolutions, called multi-resolution log-mel, similarly fell from 0.916 to 0.894. ...

August 13, 2026 · 7 min · Zelina
Cover image

Architecture Search Has a Training Problem

TL;DR for operators Neural architecture search is not simply a process for selecting layers, connections, and activation functions. It is a process for comparing trained architecture–weight pairs. That distinction matters because an architecture evaluated with poorly optimized weights may look worse than an inferior architecture whose weights happened to train faster. A search system can therefore become very efficient at ranking the wrong candidates. ...

July 13, 2026 · 18 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

MoA Than One Curve: Teaching FFNs to Choose Their Nonlinearity

Model architecture has a recurring habit: when something works, we freeze it into a default and move the argument elsewhere. Attention gets the drama. Routing gets the diagrams. Context windows get the product demos. Meanwhile, the feedforward network sits there, quietly holding a large share of the parameters and applying the same nonlinearity to every token, every time, as if “one curve fits all” were a law of nature rather than a convenient engineering choice. ...

June 7, 2026 · 17 min · Zelina
Cover image

MoE Than a Cost Trick: How Sparse Experts Became an Architecture Stack

The old business pitch for Mixture-of-Experts was satisfyingly simple: activate fewer parameters, spend less compute, keep more capacity on the shelf. It sounded like cloud cost optimization with a PhD. Useful, but not exactly poetic. The newer story is more interesting. Three recent arXiv papers—DOT-MoE, DAG-MoE, and LoopMoE—suggest that MoE is no longer just a sparsity trick. It is becoming an architecture stack for conditional computation: first decide how experts are formed, then how selected experts interact, and finally how sparse expert systems can be reused over iterative depth.123 ...

June 7, 2026 · 13 min · Zelina
Cover image

Beam Me Less, Scotty: MoE Models Learn When Not to Call Every Expert

Latency has a way of turning elegant model architecture into an invoice. Mixture-of-Experts models were supposed to soften that invoice. Instead of sending every token through the same dense feed-forward machinery, an MoE layer sends each token to only a few experts. In theory, this gives us scale without paying for all parameters on every token. In practice, many deployed MoE models still behave like a restaurant that insists every guest order the same number of dishes. The experts differ, but the billable count is fixed. ...

June 4, 2026 · 15 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

LoRA and Order: The Strange Case for One Well-Placed Adapter

Opening — Why this matters now Enterprise AI is entering its less glamorous, more useful phase: not “Can we connect an LLM to everything?” but “Can we adapt it without making the GPU bill look like a small infrastructure project?” Fine-tuning still matters. Retrieval helps with knowledge access, prompt engineering helps with behavior shaping, and agent frameworks help with workflow orchestration. But many businesses eventually hit the same wall: the base model is close, yet not close enough. It needs domain style, task format, compliance habits, tool-use discipline, or workflow-specific judgment. That usually means some form of supervised fine-tuning. ...

May 9, 2026 · 15 min · Zelina