The largest openly available AI models now hold hundreds of billions, and in some cases more than a trillion, adjustable numbers. Those numbers, called parameters, are what the model learned during training, and every one of them has to sit in the fast memory of graphics chips before the model can answer a single question. That memory is scarce and expensive, and for the biggest models even a well equipped machine can struggle to hold the whole thing at once.
Many of these models are built in a style known as mixture of experts. The model keeps a large collection of specialized sub-networks and uses only a few of them for each word it reads or writes. That keeps the model quick to run, but it does nothing to shrink the pile of weights that must stay in memory. A 2025 research paper proposes a method, named MoBE, to cut that pile down. Polora put the paper to several AI models built by different companies and had them examine it together : what does the method actually achieve, and what would a team running such a model have to give up?
What the method changes
Inside one of these models, every expert keeps its own large tables of numbers. The paper's starting observation is that these tables overlap a great deal. Experts differ from one another, but they also share a lot of common structure. MoBE keeps one small table that stays unique to each expert and replaces the bulk of the rest with a set of shared building blocks that every expert in the same layer draws on, each in its own proportions.
Storing a single shared set once, instead of a full copy inside every expert, is where the saving comes from. The method learns these shared blocks by fitting them to the model's existing weights, so it needs no fresh training data.
The headline number
On models such as Qwen3, DeepSeek-V3 at 671 billion parameters, and Kimi-K2 at a trillion, the paper reports a 24 to 30 percent cut in total parameters while keeping about 98 percent of accuracy, measured across fifteen standard tests. That works out to an average loss of one to two points. The authors say this holds up markedly better than earlier compression approaches at the same or greater compression.
To picture the scale, one of the AI reviewers estimated that trimming 30 percent from a 671 billion parameter model removes on the order of several hundred gigabytes of stored weights, which is what decides how many chips are needed just to hold the model.
Why it is gentler than cutting experts
An older family of methods shrinks these models by deleting whole experts or merging similar ones. The paper argues that this permanently throws away specialized skills and tends to hurt accuracy. MoBE keeps every expert in place and only rewrites how each one is stored, and both AI reviewers pointed to this as the method's central advantage over cutting experts away.
Smaller does not mean faster
This is the main thing a team gives up. Both AI reviewers stressed that MoBE saves memory, not time. Rebuilding each expert from its shared blocks adds extra steps, so on ordinary serving software the compressed model can actually run slower unless a team writes new low-level code tailored to it. The paper itself acknowledges this and says a purpose-built routine is needed to realize the method's full potential.
The extra steps can even raise the amount of computation per word. To offset that, the authors offer a variant that uses fewer experts for each word, dropping from eight to six. That claws back some efficiency, but it is another small trade against quality.
Where the accuracy loss lands
The average drop is small, but it is not spread evenly, and this was a point both reviewers returned to. On DeepSeek-V3, a hard competition-math test fell from a score of 56.9 to 52.3, and a second from 47.3 to 40.6. On Kimi-K2, a graduate-level science test slipped from 77.4 to 73.2. Broad knowledge tests, by contrast, barely moved.
The reviewers drew the same conclusion from this : a team serving general conversation may never notice the difference, while a team that leans on mathematics, coding, or careful step-by-step reasoning should test the compressed model on its own work rather than trust the headline average.

Only part of the model shrinks
MoBE compresses only two of the tables inside each expert. It deliberately leaves a third untouched, on the reasoning that it holds critical knowledge, and it does not touch the model's attention machinery or its vocabulary tables. The reviewers added that it also does nothing for the memory used to keep track of a long conversation, which can dominate when many people are served at once or when documents are long. So the real relief on a running system is smaller than the 24 to 30 percent figure alone would suggest.
Who should reach for it
The reviewers landed in the same place. For a team whose main constraint is fitting a giant model into scarce, costly memory, MoBE offers a genuine reduction with unusually little damage to accuracy, and without retraining. For a team whose real problem is speed, cost per word, or top-end reasoning quality, it is not a free win, because it asks for custom engineering and a tolerance for weaker results on the hardest tasks.
The honest way to read the result, then, is that the parameter figure is a storage saving. It says how much easier the model becomes to keep in memory, and it should not be mistaken for a cheaper or faster answer.









