INQUIRING LINE

Can an AI learn to pick its own team of experts — and decide how much to trust each one — based on available compute?

Can learned priors effectively select and weight ensemble members by inference budget?

This explores whether a model can learn — rather than hand-tune — how to pick which 'experts' or ensemble members to fire and how heavily to weight each one given a compute budget, and whether the corpus has anything on that learned routing under its various names.


This explores whether learned priors can do the job of an ensemble dispatcher: deciding which members to activate, how much to trust each, and how to spend a fixed inference budget across them. No single note in the corpus is framed as 'budget-aware ensemble weighting,' but the conceptual territory shows up repeatedly under different vocabulary — dynamic expert composition, learned compute allocation, and budgeted selection — and reading across them gives a surprisingly coherent picture.

The strongest evidence that learned priors can *select and weight* members at inference is the work on composing expert vectors on the fly. Transformer² learns to mix task-specific experts at inference by tuning only the singular values of weight matrices, producing composable vectors that blend without interfering Can models dynamically activate expert skills at inference time?. That's exactly the 'weight the members' half of your question, learned rather than fixed. A more radical version skips gradients entirely: swarms of LLM 'particles' search weight space and discover composed experts — including ones that answer questions every starting expert got wrong — from just 200 validation examples Can language models discover new expertise through collaborative weight search?. Both suggest the *combination* prior is learnable cheaply.

The 'by inference budget' half points to a different, quieter result: the cheapest reliable router is often the model's own calibrated uncertainty. A simple token-probability uncertainty estimate beats elaborate adaptive-retrieval heuristics at deciding when to spend extra calls, using a fraction of the compute Can simple uncertainty estimates beat complex adaptive retrieval?. That's a learned prior allocating budget — not over ensemble members exactly, but over whether to invoke an expensive component at all. The same logic of treating selection as a budget problem appears in few-shot example choice, where framing demonstration selection as budgeted active learning (pick what most reduces uncertainty) beats similarity-based retrieval Can optimal experimental design improve few-shot example selection?.

The sharp caveat — and the thing you might not have known you wanted to know — is that inference budget has a ceiling that no clever routing can break. Non-reasoning models do not catch up to reasoning models no matter how much inference compute you throw at them, because the *training regime* decides whether extra tokens are productive at all Can non-reasoning models catch up with more compute?. So a learned prior can weight and budget across members effectively, but only among members that were trained to make compute pay off; you can't dispatch your way out of a weak ensemble.

One adjacent thread worth a doorway: the reason inference-time composition is attractive at all is that it leaves base weights untouched. Both proxy-tuning at decoding time Can decoding-time tuning preserve knowledge better than weight fine-tuning? and representation-level intervention on frozen activations Can editing hidden representations beat weight updates for finetuning? show that steering behavior without weight updates preserves knowledge and is dramatically more parameter-efficient — which is what makes a fleet of cheaply-composed, budget-weighted experts practical in the first place.


Sources 7 notes

Can models dynamically activate expert skills at inference time?

Transformer2 demonstrates that tuning only singular values within weight matrices produces composable expert vectors that dynamically mix at inference without interference, outperforming LoRA with fewer parameters and enabling continual specialization.

Can language models discover new expertise through collaborative weight search?

PSO-inspired swarms of LLM particles moving through weight space discover composed experts with new capabilities—including answering questions all initial experts failed on—using only 200 validation examples and no gradient-based training.

Can simple uncertainty estimates beat complex adaptive retrieval?

Calibrated token-probability uncertainty consistently beats multi-call adaptive retrieval on single-hop tasks and matches performance on multi-hop, using a fraction of the LM and retriever calls. The model's self-knowledge proves more reliable than external heuristics for deciding when to retrieve.

Can optimal experimental design improve few-shot example selection?

AIPD frames demonstration selection as budgeted active learning, choosing examples that maximally reduce test-set uncertainty. Two algorithms (GO and SAL) outperformed similarity-based methods across small, medium, and large language models.

Can non-reasoning models catch up with more compute?

Reasoning models persistently outperform non-reasoning models regardless of inference budget because training instills a reasoning protocol that makes additional tokens productive. The gap is fundamentally about deployment mechanisms and training structure, not raw capability.

Show all 7 sources
Can decoding-time tuning preserve knowledge better than weight fine-tuning?

Proxy-tuning closes 88-91% of the alignment gap while surpassing direct fine-tuning on knowledge tasks by leaving base model weights untouched. Direct fine-tuning corrupts knowledge storage in lower layers, whereas proxy-tuning applies distributional shifts that primarily affect reasoning and style.

Can editing hidden representations beat weight updates for finetuning?

ReFT learns task-specific interventions on frozen model representations rather than updating weights, with LoReFT (low-rank linear subspace variant) dramatically outperforming LoRA across reasoning, instruction-following, and NLU benchmarks while using far fewer parameters.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are an ML systems analyst. Still-open question: can learned priors effectively SELECT and WEIGHT ensemble members under a fixed inference budget — acting as a budget-aware dispatcher over experts?

What a curated library found — and when (dated claims, not current truth). These span roughly 2024–2025:
- Learned inference-time weighting works: Transformer² composes task experts by tuning only the singular values of weight matrices, blending without interference (~2025).
- Gradient-free composition is cheap: swarms of LLM "particles" search weight space and discover composed experts — some answering questions every starting expert missed — from just 200 validation examples (~2024).
- The cheapest reliable budget-router is the model's own calibrated token-probability uncertainty; it beats elaborate adaptive-retrieval heuristics at a fraction of the compute (~2025).
- Framing demonstration/member selection as budgeted active learning (pick what most reduces uncertainty) beats similarity retrieval (~2024).
- Ceiling: non-reasoning members never catch reasoning members no matter the inference spend — the training regime decides if extra tokens pay off (~2025).

Anchor papers (verify; mind their dates): Transformer² Self-adaptive LLMs (arXiv:2501.06252, 2025); Model Swarms (arXiv:2410.11163, 2024); Adaptive Retrieval / uncertainty (arXiv:2501.12835, 2025); Experimental Design for Active Transductive Inference (arXiv:2404.08846, 2024).

Your task:
(1) RE-TEST EACH CONSTRAINT. For every finding, judge whether newer models, training, tooling, orchestration (memory, caching, multi-agent), or eval have relaxed it — and since this is a frontier-extending question, push hardest on what remains UNSOLVED and what comes next in budget-aware dispatch. Separate the durable question from the perishable limit; cite what resolved it, and say where a constraint still holds.
(2) Surface the strongest contradicting or superseding work from the last ~6 months.
(3) Propose 2 research questions that ASSUME the regime has moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.