Notizie IA Logo

AITalk

News and analysis on Artificial Intelligence

From MIT, Models Learn to Think Less (and Better)

ResearchGenerative AITraining

mit-adaptive-scaling.jpg

A new MIT study reveals how LLMs can dynamically adjust computational resources, solving complex problems with half the traditional computation. There is a paradox that defines contemporary artificial intelligence. The most advanced language models tackle every question with the exact same computational effort, whether it's calculating two plus two or proving a theorem in algebraic topology. It's as if a great mathematician were to use the same mental energy to tell the time as to solve the Poincaré conjecture.

We humans don't work that way: Daniel Kahneman documented this masterfully by describing how our brain fluidly switches between System 1, fast and intuitive, and System 2, slow and deliberate. Now, researchers at MIT have found a way to teach LLMs this same ability for modulation.

The Fixed Budget that Wastes Resources

The current approach to inference-time scaling allows language models to "reason longer" on difficult problems. The mechanism is simple: instead of generating a single answer, the model explores multiple reasoning paths, generates different partial solutions, evaluates them, and selects the most promising ones. Think of it as a decision tree where each branch represents a possible path to the solution. The more branches you explore, the greater the chances of finding the right one.

The problem is that these systems assign a fixed computational budget regardless of the complexity of the question. It's like always giving a student exactly one hour for every task, whether it's a simple multiplication or a differential equation. The result is doubly inefficient: precious resources are wasted on trivial problems, and the model is left to its own devices when the difficulty increases.

In recent months, we've already discussed how research is exploring alternatives to this rigidity. Harvard's Power Sampling has shown that more sophisticated sampling algorithms can extract reasoning capabilities already latent in base models, without the need for additional training. But that technique still operates with a fixed number of MCMC iterations. MIT's innovation goes further: it introduces a system that dynamically adapts not only how the model reasons, but how much it reasons.

How Adaptive Scaling Works

The technique developed by the team led by Navid Azizan of the Laboratory for Information and Decision Systems is called "instance-adaptive scaling" and is conceptually elegant. The system continuously evaluates two things: how difficult the problem it is facing is, and how promising the partial solutions it has generated so far are. Based on these evaluations, it decides on the fly whether to invest more computational resources or to stop.

"It's exactly how humans solve problems," explains Hao Wang, one of the authors of the research. "We process some partial solutions and then decide: should I continue with one of these, stop and review my reasoning, or even go back and resume from a previous step?".

The heart of the system is a component called the Process Reward Model, or PRM. Imagine an internal supervisor watching the model as it works. At each step of the reasoning process, the PRM examines the original question and all the partial solutions generated so far, assigning each a score that estimates how likely that path is to lead to the correct answer. If the model is on a very promising path, it can reduce the number of alternatives to explore, saving computation. If, on the other hand, all paths seem unconvincing, it allocates more resources to search for better ways out.

The difference from previous systems is that this evaluation doesn't happen just once at the beginning, but continuously throughout the entire problem-solving process. "The beauty of our approach," notes Kristjan Greenewald of the MIT-IBM Watson AI Lab, "is that the adaptation happens on the fly, as the problem is being solved, rather than all at once at the beginning of the process." figura1.jpg Image from the official paper

The Overestimation Problem

But there is a fundamental technical hurdle that the researchers had to overcome: existing Process Reward Models are terribly optimistic. They systematically overestimate the probabilities of success, much like a GPS that tells you "you're almost there" when you're actually still twenty kilometers away. If the system were to blindly trust these judgments, it would reduce the computational budget too aggressively, convinced that the path is easy when it is in fact treacherous.

Young-Jin Park, the study's lead author, describes the dilemma this way: "If we were to just trust current PRMs, which often overestimate the chances of success, our system would reduce the computational budget too aggressively. So we had to find a way to better calibrate the PRMs and make inference-time scaling more efficient and reliable."

The MIT solution is mathematically refined but conceptually accessible. Instead of having the PRM generate a single number as a probability estimate, the system produces a range of possible values through a technique called quantile regression. In practice, the model says "the probability of success is somewhere between 30% and 70%" instead of "the probability is exactly 50%." This explicit uncertainty allows the system to make more prudent and realistic decisions.

The connection to previous research is illuminating. We have already discussed how Meta's DeepConf leverages the intrinsic confidence of models for self-correction, and how Samsung's TRM uses external retrieval to improve factual reliability. All these techniques share an assumption: models must learn to measure how confident they are in their own answers. MIT brings this idea into the domain of mathematical reasoning, where verification can be algorithmic but confidence calibration remains crucial.

The Convincing Results

The benchmarks leave no room for doubt. On a series of standard mathematical tasks, the MIT system used about half the computation required by traditional approaches, while maintaining the same level of accuracy. But there is an even more interesting result: smaller, less resource-intensive models, equipped with this technique, performed at the same level or even better than much larger models on complex problems.

Think about the implications. A seven-billion-parameter model that is cheap to run and consumes little energy can, if used intelligently, compete with seventy-billion-parameter giants on problems that require deep reasoning. Not because the small model has magically become smarter, but because it has learned to focus its limited resources where they are really needed.

This is particularly relevant in the context of test-time reasoning, where we have seen how the intelligent allocation of computational resources is emerging as a key frontier in AI. MIT suggests that the future is not necessarily about making models ever larger, but about teaching existing ones when it is worth thinking long and when a quick answer is sufficient. figura2.jpg Image from the official paper

Concrete Applications and Prospects

The practical implications are immediate. Code generation is a natural candidate: some programming problems are trivial syntactic issues, others require complex algorithmic reasoning. A system that recognizes this difference and behaves accordingly can drastically reduce operational costs for services like GitHub Copilot or Cursor.

Autonomous AI agents are the other fertile ground. An agent that must navigate real-world situations must constantly decide how much to "think" before acting. Pausing too long on simple decisions makes it clumsy and inefficient. Acting too quickly on complex choices leads to error. The MIT framework provides exactly the necessary meta-cognition mechanism: the ability to assess how difficult the situation is and allocate reflection time accordingly.

Navid Azizan points out that the recent release of GPT-5.1 highlights the effectiveness of this "adaptive reasoning" approach proposed in the paper. "By equipping models with the ability to know what they don't know, we can allow them to spend more computation on the hardest problems and the most promising solution paths, using far fewer tokens on the easy ones. This makes reasoning both more reliable and much more efficient."

The Limits Not to Be Ignored

But it would be naive to ignore the challenges that still remain. The system works excellently in domains where verification is algorithmic, like mathematics or coding. But what happens when "correctness" is nuanced or subjective? How does a PRM evaluate how promising a partial solution to a problem of creative design or complex ethical decision-making is?

And then there is the issue of hallucinations, the Achilles' heel of all language models. A system that autonomously decides how much to reason can, paradoxically, become more dangerous if its confidence is poorly calibrated. It could quickly convince itself that it is right precisely when it is generating completely fabricated output. This is why PRM calibration is not a technical detail but an absolute necessity.

The researchers are transparent about the next steps. They want to test the technique on broader applications and explore further uses of the calibration method, including reinforcement learning and fine-tuning. The underlying intuition, however, is already clear: a model that learns to dose its own cognitive effort is closer to something we might call flexible intelligence.

Akash Srivastava of IBM Software, not involved in the research, puts it in an industrial perspective: "Human employees learn on the job, some CEOs started as interns, but today's agents remain largely static probabilistic software pieces. Papers like this are an important step in changing that: helping agents understand what they don't know and building mechanisms for continuous autonomous improvement." figura3.jpg Image from the official paper

The Common Thread of Intelligent Efficiency

There is a pattern emerging with increasing clarity in AI research in 2025. Harvard's Power Sampling showed us that sophisticated capabilities may already be present in base models, you just need to know how to extract them. Samsung's TRM demonstrated that strategic retrieval beats brute-force memory. DeepConf revealed that self-reflection costs less than blind scaling. And now MIT confirms that dynamic resource allocation surpasses fixed budgets.

The common denominator is intelligent efficiency. No longer just "make bigger models and give them more data," but "teach models when it's worth being big." It is a necessary maturation for an industry facing rising energy costs and sustainability pressures.

MIT's calibrated Process Reward Models might seem like a niche technical detail, but they represent something deeper: the construction of a computational self-awareness. A model that knows when it is confused, that recognizes easy problems from difficult ones, that measures its own capabilities before committing. Like the Mentats in Dune, who dosed their cognitive resources with manic precision for every calculation, these systems are learning the art of intelligent parsimony.

The question now is not whether this direction is right, but how quickly the industry will be able to integrate it. Because between a system that burns energy on every query and one that reasons only when necessary, the difference is not just economic or environmental. It is philosophical: it marks the transition from machines that compute to machines that "think" about how to compute.