<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>The Frontier Wire: Research</title><description>Briefings on the papers, benchmarks and techniques that move the field, explained without the jargon.</description><link>https://thefrontierwire.com/</link><language>en</language><atom:link href="https://thefrontierwire.com/research/rss.xml" rel="self" type="application/rss+xml"/><image><url>https://thefrontierwire.com/icon-512.png</url><title>The Frontier Wire: Research</title><link>https://thefrontierwire.com/</link></image><lastBuildDate>Fri, 25 Sep 2026 20:07:10 GMT</lastBuildDate><item><title>What test-time compute actually means, and why it changed the scaling debate</title><link>https://thefrontierwire.com/articles/test-time-compute-explained/</link><guid isPermaLink="true">https://thefrontierwire.com/articles/test-time-compute-explained/</guid><description>A plain-language explainer of test-time compute, the idea that spending more computation at inference can substitute for a bigger model.</description><pubDate>Mon, 21 Sep 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;For most of the last decade, the recipe for a better language model was simple: more parameters, more data, more training compute. The scaling laws that described this relationship were remarkably reliable, and they drove the industry&apos;s spending. Test-time compute is the name for a second lever that was always available but rarely pulled: spend more computation when the model is answering, not only when it is being trained.&lt;/p&gt;
&lt;h2&gt;The basic idea&lt;/h2&gt;
&lt;p&gt;A trained model is a fixed function. Given a prompt, it produces a distribution over the next token, and sampling from that distribution once gives you one answer. Test-time compute means doing more than that single pass. The extra work can take several forms:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Longer generation.&lt;/strong&gt; Let the model write out intermediate steps before committing to an answer. This is chain-of-thought, and it works because each step conditions the next.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multiple samples.&lt;/strong&gt; Generate several candidate answers and pick the most common one, or the one a verifier scores highest. This is self-consistency and best-of-N sampling.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Search.&lt;/strong&gt; Treat reasoning as a tree, expand the promising branches, prune the rest. This borrows from game-playing systems.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Revision.&lt;/strong&gt; Ask the model to critique and rewrite its own draft, possibly several times.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each of these turns a fixed cost per query into a variable one. The model can spend a little or a lot, depending on how hard the problem is.&lt;/p&gt;
&lt;h2&gt;Why it changed the debate&lt;/h2&gt;
&lt;p&gt;The important finding, established in a series of papers through 2024, is that the extra inference compute is often a better buy than the same compute spent on a bigger model. For problems where the model has a reasonable chance of getting the answer right, sampling and verifying can push accuracy well past what a model several times larger achieves with a single pass.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Compute is fungible. What matters is where in the pipeline you spend it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This mattered for three reasons. It gave smaller models a path to frontier-level results on specific tasks. It meant capability could be tuned per request rather than fixed at training time. And it shifted a chunk of the industry&apos;s cost from one-off training runs to ongoing inference, which is a very different business.&lt;/p&gt;
&lt;h2&gt;The catch&lt;/h2&gt;
&lt;p&gt;Test-time compute helps most when there is a way to tell a good answer from a bad one. Maths, code with tests, and puzzles with checkable solutions are ideal. Open-ended writing, judgment calls and questions with no verifiable answer benefit far less, because there is nothing for the search or the verifier to grip.&lt;/p&gt;
&lt;p&gt;There is also a hard ceiling. If the model cannot produce a correct answer in any of its samples, no amount of selection will find one. Thinking longer sharpens what a model can already almost do; it does not teach it something new.&lt;/p&gt;
&lt;h2&gt;How to think about it as a buyer&lt;/h2&gt;
&lt;p&gt;Treat reasoning effort as a knob with a price. Turn it up for tasks with verifiable outputs and high stakes. Turn it down, or off, for tasks where a first draft is good enough. And measure: the only reliable way to know where the knob should sit for your traffic is to run your own examples through each setting and compare accuracy against cost. Our news desk has more on &lt;a href=&quot;https://thefrontierwire.com/articles/the-reasoning-model-era-has-a-cost-problem/&quot;&gt;why that bill has become a product decision&lt;/a&gt;.&lt;/p&gt;
</content:encoded><dc:creator>The Frontier Wire editors</dc:creator><media:content url="https://thefrontierwire.com/og/test-time-compute-explained.png" type="image/png" width="1200" height="630" medium="image"/><category>Research</category><category>Reasoning models</category><category>Scaling laws</category><category>Research briefings</category></item><item><title>Reading a model card like an auditor</title><link>https://thefrontierwire.com/articles/reading-a-model-card-like-an-auditor/</link><guid isPermaLink="true">https://thefrontierwire.com/articles/reading-a-model-card-like-an-auditor/</guid><description>Model cards are the closest thing AI has to a nutrition label. Here is what to look for, what is usually missing, and how to tell a card from a brochure.</description><pubDate>Sat, 29 Aug 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The model card was proposed in 2018 as a short, standardised document describing what a model is for, how it was evaluated, and where it should not be used. The idea caught on. Nearly every model release now ships with one. The quality has not kept pace with the adoption, and a card can now be anything from a rigorous disclosure to a benchmark table with a logo on it. This is a guide to reading one critically.&lt;/p&gt;
&lt;h2&gt;What a good card contains&lt;/h2&gt;
&lt;p&gt;The original proposal listed sections that remain the right checklist: intended use and out-of-scope uses, the evaluation data and metrics, disaggregated results across relevant groups, ethical considerations, and caveats. A card that covers each of those, with specifics, is doing its job.&lt;/p&gt;
&lt;h2&gt;The questions to ask&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Which benchmarks, and which versions?&lt;/strong&gt; Benchmark names are not enough. Many have multiple versions and evaluation settings, and scores are not comparable across them. A card that names a benchmark without a version or a prompt format is reporting a number you cannot check.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Who ran the evaluation?&lt;/strong&gt; Vendor-run evaluations are the norm, and not necessarily wrong, but the card should say so. Independent results, where they exist, belong beside them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Is anything disaggregated?&lt;/strong&gt; An aggregate score hides variation. A card that reports one number per benchmark and nothing by language, domain or demographic group has not done the part of the work that model cards were invented for.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is missing?&lt;/strong&gt; The most informative section of many cards is the one that is not there. Training data is the usual gap. Compute is another. The absence is itself a disclosure.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A card that reports only the benchmarks the model wins is not a model card. It is a press release with a table.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Red flags&lt;/h2&gt;
&lt;p&gt;Be wary of cards that describe intended use so broadly that nothing is out of scope. Be wary of cards whose evaluation section changed between the preview and the general release without a changelog. And be wary of comparisons against competitors whose numbers were taken from a different evaluation setup than the vendor&apos;s own.&lt;/p&gt;
&lt;h2&gt;Why it matters&lt;/h2&gt;
&lt;p&gt;Model cards are the document a buyer will be asked to produce when a regulator, a customer or an incident review asks what was known about the model at the time. Reading them like an auditor now is cheaper than explaining later why nobody did. For the same discipline applied to evaluation tools, see our &lt;a href=&quot;https://thefrontierwire.com/articles/how-to-compare-llm-evaluation-frameworks/&quot;&gt;guide to comparing evaluation frameworks&lt;/a&gt;.&lt;/p&gt;
</content:encoded><dc:creator>The Frontier Wire editors</dc:creator><media:content url="https://thefrontierwire.com/og/reading-a-model-card-like-an-auditor.png" type="image/png" width="1200" height="630" medium="image"/><category>Research</category><category>Model cards</category><category>Transparency</category><category>Evaluation</category></item></channel></rss>