Categories of Inference-Time Scaling for Improved LLM Reasoning
Source
Sebastian Raschka, PhD
Author
Sebastian Raschka, PhD
Date
Key takeaways · AI-distilled
Two separate knobs raise accuracy: compute spent training and compute spent generating. OpenAI's o1 curves showed both work, and the practical move is to turn both, training a stronger model and then scaling its inferenceRunning a trained model to get answers — the phase where AI is actually used, as opposed to trained.Full definition → on top of that.
test-time computeSpending more computation when the model answers — thinking longer, trying multiple attempts — to buy accuracy without training a bigger model.Full definition → is an old idea in new clothes. Classic ML ensembles bought accuracy the same way, by running more computation at prediction time instead of changing the model.
It travels under several names, test-time scaling, inference-compute scaling, inference scaling, all meaning training-free methods that leave the weights untouched. That is why they apply to any model, including ones you did not train.
Terms in this piece · Glossary
test-time compute — Spending more computation when the model answers — thinking longer, trying multiple attempts — to buy accuracy without training a bigger model.
LLM — A large language model — the neural network behind tools like Claude and ChatGPT, trained on huge amounts of text to predict what comes next.
chain-of-thought — Having a model write out intermediate reasoning steps before its answer, which markedly improves performance on hard problems.
inference — Running a trained model to get answers — the phase where AI is actually used, as opposed to trained.
Why it matters
It gives a clear, practical taxonomy of inference-time scaling methods with code and experimental results, so you can pick the right technique (self-consistency vs. best-of-N vs. search) when squeezing more reasoning out of an LLMA large language model — the neural network behind tools like Claude and ChatGPT, trained on huge amounts of text to predict what comes next.Full definition → at test time.
Key quotes
“It takes the base model from about 15 percent to around 52 percent accuracy, which makes it one of the most rewarding pieces of the book so far.”