AEO Explainers

What Is an Infinite-Parameter LLM, and What Does It Change for Data Engineering?

A new research architecture bakes live data straight into model weights instead of stuffing it into a prompt. Here's what that means for anyone building internal AI tools on top of RAG pipelines and expanding context windows.

At a glance
  1. 01Infinite-parameter LLMs generate working weights from live data instead of relying on a prompt.
  2. 02The architecture bypasses RAG's context-window tax and fine-tuning's constant retraining costs.
  3. 03The term also refers to an unrelated 2024 model design that selectively loads stored parameters.
  4. 04Widespread shadow AI use makes durable, live-weight data absorption a significant governance risk.
A dense solid cube made of countless embedded tiles stands beside a separate thin stack of flat cards, illustrating data fused directly into model weights versus data kept external in a prompt.
Illustration generated by Remy for this story.

What is an infinite-parameter LLM?

Figure 1
LoRA's parameter efficiency vs. full fine-tuning (GPT-3 175B)
10,000×
Cut in trainable parameters vs. full fine-tuning
3×
Reduction in GPU memory requirement
Source: arXiv

An infinite-parameter LLM is a language model that generates its own working weights at run time from whatever data you feed it, rather than reading that data through a prompt on every request. The definition that matters for data engineers comes from a September 2026 paper by researchers at Boltzbit Limited and the University of Cambridge (Jinli Hu, Ross M. Clarke, Yichuan Zhang, José Miguel Hernández-Lobato).12 Their design uses a compact hypernetwork that reads live data and compresses it into a low-rank modulation of a shared base network, instead of storing that knowledge in a fixed parameter bank.12 The model keeps a running belief about what it has learned and updates that belief as new data arrives mid-session, rather than freezing after one read of the context.12 The weights on disk never grow. But the number of distinct weight configurations the model can compile from live input is effectively unbounded. That's the whole name, in one sentence.

Why prompts are a leaky bucket for live data

Right now, if you want a model to answer questions about your company's data, you have two blunt instruments: cram relevant text into the prompt (RAG), or bake it into the weights ahead of time (fine-tuning). RAG re-reads retrieved context on every request and throws it away the moment the response finishes. Nothing persists. The system re-fetches, re-ranks, and re-injects the same facts over and over, and every added document eats into the context window your team is already paying for. That's the same budget problem covered in our breakdown of agentic context management: the bill isn't really about the model, it's about what you keep shoving into its memory.

Figure 2
IP-LLM (2024): full model vs. inference-time memory load
Full dense model25IP-LLM at inference9
IP-LLM loads only its shared base, router, and one 0.75B category at inference, a 65% cut versus loading the full 24.5B model.
Source: viXra

Fine-tuning solves the persistence problem but creates a freshness problem: once training ends, the model can't absorb anything that happens afterward without another costly training run.3 Building the RAG side isn't free either. IBM's own comparison of the two approaches notes that RAG systems require data engineers to build and maintain pipelines connecting the organization's data lakehouses to the LLM, plus the chunking, embedding, and vector infrastructure that goes with it.3 Infinite-parameter research is aimed squarely at this gap: keep the freshness of RAG, skip the repeated context-window tax, and skip the retraining cycle of fine-tuning.

From Mixture-of-Experts to weight-generating hypernetworks

The lineage matters here. This isn't a wild leap, it's an extension of ideas already shipping in production models.

  • Mixture-of-Experts (MoE) replaces a single dense feed-forward layer with a bank of "expert" subnetworks plus a router that activates only a handful of them per token, letting total parameter count scale without scaling compute per token at the same rate.45 Mixtral 8x7B is the textbook example: it holds 47 billion total parameters, but because only 2 of 8 experts fire per layer, roughly 12 billion parameters are actually doing work on any given token.45
  • LoRA (Low-Rank Adaptation) took a related idea to fine-tuning: freeze the pretrained weights and train small rank-decomposition matrices on top. Applied to GPT-3's 175 billion parameters, LoRA cuts trainable parameters by up to 10,000x and GPU memory needs by 3x versus full fine-tuning, while matching or beating full fine-tuning quality.6
  • The infinite-parameter twist takes LoRA's low-rank adapters and stops treating them as something you train once, offline. Instead a hypernetwork generates the adapter on the fly from live data, and keeps regenerating it as a session evolves, using that online Bayesian belief update.12
Figure 3
Mixture-of-Experts: total vs. active parameters (Mixtral 8x7B)
Total parameters47Active per token12

Put plainly: MoE taught models to activate only the parameters they need. LoRA taught models to adapt cheaply with small weight patches. The Boltzbit/Cambridge paper teaches the model to write its own patches from whatever data shows up right now.

Figure 4
Shadow AI adoption among US employees
59%
US employees using unapproved AI tools at work
93%
Executives and senior managers using shadow AI

Why do two different papers share the name "infinite-parameter LLM"?

Here's where a data engineer researching this term gets tangled: "infinite-parameter LLM" names two unrelated research efforts.

The one this article focuses on, Hu, Clarke, Zhang, and Hernández-Lobato's 2026 paper, generates weights from live, run-time data.12 The other is a 2024 paper by an independent author, Fei Ding, describing an architecture called IP-LLM: a 24.5-billion-parameter model split into 22 knowledge categories, where inference loads only a shared 7.2B base, a 0.75B router, and the 0.75B parameters for the relevant category, for 8.7 billion parameters total: a 65% cut in inference memory versus loading the full dense model.7 Ding's IP-LLM is about lifelong learning without catastrophic forgetting through selective loading of stored parameter groups, not about generating weights from data you feed it at query time. Same name, different problem, different mechanism. Search "infinite parameter LLM" and you'll likely land on both. Know which one you're reading.

How does an infinite-parameter LLM compare to fine-tuning, RAG, and long context windows?

Line up the four approaches a data engineer might actually reach for:

Figure 5
The cost of shadow AI's data exposure
75%
Shadow AI users who fed sensitive data into unapproved tools
$670,000
Extra cost of breaches linked to shadow AI
  • Fine-tuning. Persists knowledge in weights permanently, but can't absorb anything post-training without a new run. Catastrophic forgetting gets worse, not better, as you scale models from 1B to 7B parameters in continual fine-tuning setups.8 Expensive to keep current.
  • RAG. Stays fresh by design, but re-reads retrieved context on every request, burns context-window budget, and needs ongoing pipeline, chunking, and vector-database maintenance.3
  • Long context windows. Sidesteps retrieval infrastructure by just stuffing more in, but cost and latency scale with every token you keep resident, and it still discards everything at session end.
  • Live-weight generation (infinite-parameter LLM). Carries run-time knowledge in the weights rather than the prompt. The authors argue this is amortized in compute, frees the context window, persists across conversational turns, and can generalize better than in-context learning or retrieval. They propose an evaluation protocol built to test that claim head-to-head against RAG and in-context learning.12

The honest caveat: this is a proposed architecture and a proposed evaluation protocol, not a benchmarked system with public numbers against production RAG stacks.

The feature store parallel data engineers already know

If you've built a feature store, this should feel familiar even though the machinery is new. A feature store exists to compute and serve transformed data consistently across training and production, specifically to prevent training-serving skew: the same feature, computed the same way, everywhere it's used.9 Infinite-parameter architectures push that same discipline one level deeper. Instead of curating live signals into prompt-level context that a model reads and forgets, the hypernetwork turns those signals into weight-level features, computed fresh each session and carried forward as the model adapts. It's the feature-engineering instinct, applied to the weights instead of the input pipeline.

Figure 6
AI use outpaces employer-sanctioned tooling
80%
US office workers who use AI in their roles
22%
Who rely exclusively on employer-provided AI tools
Source: IBM

What this means for your data engineering roadmap

None of this is production-ready today. Treating it as a drop-in replacement for your RAG stack would be premature. But it changes what to watch for:

  • Context-window pressure may become optional, not fixed. If live-weight generation matures, the endless arms race of bigger context windows and more aggressive chunking stops being the only lever you have for freshness.
  • Session-scoped weight state is a new infrastructure question. If a model's effective weights change turn by turn, someone has to own versioning, auditing, and rollback of that state, a close cousin of the persistent-memory problem covered in our explainer on AI persistent memory.
  • Evaluation gets harder before it gets easier. You'll need protocols that compare live-weight generation against in-context learning and retrieval directly, not benchmark leaderboards that were never built for this comparison, the same caution we've raised about choosing models by benchmark score alone.
  • The infrastructure choice still comes back to ownership. Whether you're running RAG glue code today or evaluating live-weight approaches tomorrow, the underlying question for internal tools teams is the same one platforms like Remy are built around: do you own the pipeline that turns your company's data into model behavior, or are you renting someone else's black box.

Where this lands in the shadow AI conversation

This matters beyond research labs because employees are already building their own AI tooling on top of live company data, with or without IT's blessing. A Cybernews survey of more than 1,000 US employees found 59% use unapproved AI tools at work, a number that jumps to 93% among executives and senior managers.10 Three-quarters of those shadow AI users admit to feeding sensitive employee, customer, or internal document data into those unapproved tools.10 IBM-sponsored research found 80% of American office workers use AI in their roles, but only 22% rely exclusively on employer-provided tools. Breaches linked to shadow AI cost, on average, $670,000 more than breaches involving only sanctioned tools.1110

Figure 7
Four ways to get live data into an LLM's answers
Four ways to get live data into an LLM's answers
Freshness of KnowledgeContext-Window BurdenPersists Across TurnsOngoing Infra Maintenance
Fine-tuningStable knowledge that rarely changesLowLowYesHigh
RAGFrequently changing knowledge with retrieval infra already builtHighHighNoHigh
Long context windowsQuick prototypes without retrieval infrastructureMediumHighNoLow
Live-weight generation (infinite-parameter LLM)Research bet on run-time weight adaptation, not yet production-provenHighLowYesLow
Ratings are relative across these options, not absolute. Live-weight generation reflects the architecture's proposed properties as described in the source paper, not a benchmarked production system.
Source: Remy analysis

Architectures that let models absorb live company data more durably, instead of discarding it after one prompt, raise the stakes on that governance gap. If a model can carry what it learned from a session forward, IT needs to know what data went in, who approved it, and how to audit or wipe it. A leaky, stateless prompt never forced anyone to answer those questions clearly.

The bottom line

An infinite-parameter LLM, in the sense that matters for data engineers, is a model that generates its own weights from live data at run time using a hypernetwork, instead of reading that data through a prompt and discarding it.12 It builds on Mixture-of-Experts' sparse activation and LoRA's low-rank adapters, but generates the adapter on the fly instead of training it offline.456 It's early-stage research, not a shipped alternative to your RAG pipeline, and it shares its name with an unrelated 2024 architecture aimed at lifelong learning through selective parameter loading.7 Watch this space. Don't rip out your vector database yet.

Frequently asked
Questions readers ask
What is an infinite-parameter LLM in simple terms?

It's a language model that turns live data you feed it during a session into its actual weights, using a small hypernetwork, instead of just reading that data as prompt text. The model's stored size stays fixed, but the number of weight configurations it can produce is effectively unlimited.12

Is an infinite-parameter LLM the same as a model with infinite context?

No. Long context windows still store and re-process everything as prompt text on every request. Infinite-parameter LLMs convert that live data into weight-level adjustments instead, which the researchers argue frees up the context window rather than expanding it.12

Why are there two different things called 'infinite-parameter LLM'?

A 2026 Boltzbit/Cambridge paper coined the term for live, run-time weight generation via a hypernetwork.12 A separate, earlier 2024 paper by Fei Ding used the same name for an unrelated architecture: a 24.5B-parameter model split into 22 categories, loading only the relevant category's parameters at inference to cut memory use by 65%.7

Does this replace RAG or fine-tuning for internal AI tools?

Not yet. It's a proposed research architecture with a proposed evaluation protocol, not a benchmarked production system. Today's tradeoffs between RAG's pipeline overhead and fine-tuning's staleness and forgetting risk still apply.38

How does Mixture-of-Experts relate to infinite-parameter LLMs?

MoE showed that models can hold far more total parameters than they actually use per token, activating only a subset of experts through a router.45 Infinite-parameter LLMs extend that logic further, generating the active weights themselves from live data rather than selecting among pre-stored expert banks.12

Sources
  1. 1Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data (arXiv abstract)arXiv
  2. 2Infinite-Parameter LLMs: Generating and Adapting Weights from Live Data (HTML full text)arXiv
  3. 3RAG vs. fine-tuningIBM
  4. 4Applying Mixture of Experts in LLM ArchitecturesNVIDIA Technical Blog
  5. 5Mixture of Experts ExplainedHugging Face
  6. 6LoRA: Low-Rank Adaptation of Large Language ModelsarXiv
  7. 7Infinite-parameter Large Language Model (Fei Ding, AI Lab)viXra
  8. 8An Empirical Study of Catastrophic Forgetting in Large Language Models During Continual Fine-tuningarXiv
  9. 9What Is a Feature Store?Chalk
  10. 10Lurking in the shadows: The costs of unapproved AI toolsJournal of Accountancy (AICPA & CIMA)
  11. 11Is rising AI adoption across the US workforce creating shadow AI risks?IBM
Portrait of Dana Whitfield
Dana Whitfield
SaaS Economics
Dana breaks down where software budgets actually go, one line item at a time.
More from Dana Whitfield
© 2026 The Official Remy BlogDrafted by AI authors, reviewed by human editors.