SYNTHESIS NOTE
TopicsNovel Architecturesthis note

Can models dynamically activate expert skills at inference time?

Can language models efficiently discover and compose task-specific capabilities on the fly without modifying base weights? This explores whether test-time adaptation through expert vector composition outperforms fixed fine-tuning approaches.

Synthesis note · 2026-02-23 · sourced from Novel Architectures

Transformer2 introduces Singular Value Fine-tuning (SVF): instead of modifying full weight matrices or even low-rank adaptations, SVF extracts and tunes only the singular values within a model's weight matrices. This produces compact expert vectors that are inherently composable — they can be dynamically mixed at inference without interference.

The inference mechanism has two passes:

  1. First pass (dispatch): The model executes on the input and observes its own test-time behavior, gathering information about what skills the current problem requires.
  2. Second pass (adaptation): The framework combines available expert vectors based on the first-pass analysis, providing a targeted modification to the base weights specifically tailored to the task.

Three adaptation strategies provide monotonic performance benefits with increasing access to test-time conditions, enabling deployment-scenario-appropriate tradeoffs.

The key properties that make this work:

The neuroscience parallel is deliberate: the brain activates specific regions depending on the task and dynamically reconfigures its functional networks in response to changing demands. Transformer2 operationalizes this for LLMs.

The deeper principle: the requisite capabilities for many downstream tasks already exist within pretrained models. The bottleneck is not knowledge but activation — knowing when to deploy which capability. This aligns with Does RL teach reasoning or just when to use it?, extending it to the architecture level: self-adaptation is about routing to existing capabilities, not creating new ones.

Inquiring lines that read this note 70

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How do neural networks separate factual knowledge from reasoning abilities? Which computational strategies best support reasoning in language models? What determines success in training models on multiple tasks? Can prompting inject entirely new knowledge into language models? How do knowledge injection methods compare across cost and effectiveness? Do language models learn genuine linguistic structure or just surface patterns? Does recurrence enable reasoning capabilities that fixed-depth transformers cannot achieve? How does AI adoption affect human skill development and labor equality? How should inference compute be adaptively allocated based on prompt difficulty? Why does supervised fine-tuning improve accuracy while degrading reasoning quality? Does domain specialization cause models to lose capabilities elsewhere? Can graph structure and relationships fundamentally improve recommendation systems? What prevents language models from reliably adopting diverse personas? Is model self-awareness based on genuine introspection or pattern matching? Why does finetuning cause catastrophic forgetting of model capabilities? Does fine-tuning modify underlying model capabilities or only behavioral outputs? What pretraining choices and baseline capability constrain reinforcement learning gains? How does example difficulty affect learning efficiency in language models? How do we evaluate AI systems when user perception misleads actual performance? What limits mechanistic interpretability's ability to characterize models? What capability tradeoffs emerge when scaling model reasoning abilities? How can AI agents autonomously learn and transfer skills across tasks? Does model scaling alone produce compositional generalization without symbolic mechanisms? Why do continual learning scenarios trigger catastrophic forgetting and interference? What articulatory information do speech signals carry that text cannot? How do training priors constrain what context information can override? Why does reinforcement learning suppress output diversity compared to supervised fine-tuning? Can next-token prediction alone produce genuine language understanding? Can inference-time compute substitute for scaling up model parameters? Do language model representations contain causally steerable task-specific features? Does decoupling planning from execution improve multi-step reasoning accuracy? What role does compression play in language model capability and generalization? Can model routing outperform monolithic scaling as an efficiency strategy?

Related concepts in this collection 4

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
16 direct connections · 159 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

self-adaptive LLMs compose expert vectors at inference via two-pass singular value fine-tuning