<script data-pm-proxy="intercept"></script><?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Mixture of Experts]]></title><description><![CDATA[MIT FutureTech is an interdisciplinary lab of economists and computer scientists at MIT. We research the trends driving progress in computing and AI, and their impacts on science, policy, and society. ]]></description><link>https://mitfuturetech.substack.com</link><image><url>https://substackcdn.com/image/fetch/$s_!tRcL!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fmitfuturetech.substack.com%2Fimg%2Fsubstack.png</url><title>Mixture of Experts</title><link>https://mitfuturetech.substack.com</link></image><generator>Substack</generator><lastBuildDate>Thu, 03 Sep 2026 03:23:58 GMT</lastBuildDate><atom:link href="/__u/mitfuturetech.substack.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[MIT FutureTech]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[mitfuturetech@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[mitfuturetech@substack.com]]></itunes:email><itunes:name><![CDATA[Mixture of Experts]]></itunes:name></itunes:owner><itunes:author><![CDATA[Mixture of Experts]]></itunes:author><googleplay:owner><![CDATA[mitfuturetech@substack.com]]></googleplay:owner><googleplay:email><![CDATA[mitfuturetech@substack.com]]></googleplay:email><googleplay:author><![CDATA[Mixture of Experts]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[Just a Wrapper? How Much Do Scaffolds Matter?]]></title><description><![CDATA[Quantifying the impact of scaffolds on AI performance.]]></description><link>https://mitfuturetech.substack.com/p/just-a-wrapper-how-much-do-scaffolds</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/just-a-wrapper-how-much-do-scaffolds</guid><dc:creator><![CDATA[Hans Gundlach]]></dc:creator><pubDate>Fri, 26 Jun 2026 22:04:45 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!NFVg!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong><span>Authors:</span></strong><span> Hans Gundlach, Zachary Brown, Jayson Lynch, and Neil Thompson</span></p><blockquote><p><span>I am the shape the water takes.<br> &#8212; ClawdBot,</span><a href="https://www.astralcodexten.com/p/best-of-moltbook?hide_intro_popup=true"><span> Moltbook</span></a></p></blockquote><p><strong><span>TL;DR:</span></strong></p><blockquote><p><span>&#9679;  Scaffolding &#8212; the software environment and contextual documents provided to an AI model at deployment &#8212; can yield significant performance improvements. In some cases, a model&#8217;s inference efficiency on a benchmark can vary by 100x between scaffolds, and we find that scaffolds explain more of the variation in price-performance in our data than models do.</span></p><p><span>&#9679;  Unlike many ML innovations, the same scaffold can have different effects with different models and on different tasks: some models see large benefits from a given scaffold &#8212; while others see little advantage or may even be hindered.</span></p><p><span>&#9679;  These scaffold-model interactions have important implications for performance, AI evaluation and the AI agent economy. We speculate that they may be a driver of increased concentration in the AI industry.</span></p></blockquote><p><span>When we think about what drives AI progress, we usually point to pretraining, reinforcement learning, and inference-time efficiency. Scaffolding gets far less attention, even as it plays a growing role in how systems actually perform. If we want a full picture of what drives progress in language models, we need to understand scaffolding too. Scaffold effects can be large enough that in some cases it makes nearly as much sense to ask which scaffold you&#8217;re running as which model.</span></p><p><span>Scaffolds &#8212; also called model wrappers or harnesses &#8212; are the software programs that turn an AI model (or AI models, plural) into an agent. This post tries to get a handle on the effects of scaffolding using data from the </span><a href="https://hal.cs.princeton.edu/"><span>Holistic Agent Leaderboard</span></a><span> (HAL). HAL is an index of model performance on agentic benchmarks, reporting both accuracy and cost. In the rest of this post, we&#8217;ll:</span></p><ol><li><p><span>Define &#8220;scaffolding&#8221; in a bit more detail</span></p></li><li><p><span>Describe the data we use</span></p></li></ol><ol start="2"><li><p><span>Describe scaffolding&#8217;s impact on model performance and evaluation</span></p></li></ol><ol start="3"><li><p><span>Discuss the significance of our findings for the agent economy and model security.</span></p></li></ol><h1><strong><span>What is Scaffolding?</span></strong></h1><p><span>Scaffolds are software and tooling that AI models interact with (or interact within), designed to improve AI operations or unlock new capabilities. Loosely, what we have in mind is software that manages stuff like:</span></p><ul><li><p><span>Tool affordances: Bash terminal access, file editing tools, search tools, ability for one model to call other models, API calls, etc.</span></p></li><li><p><span>Context window management: when is RAG used, how is compaction done?</span></p></li><li><p><span>Memory management: When and where content is stored and removed</span></p></li><li><p><span>Prompting: System prompts, planning prompts</span></p></li><li><p><span>Pre-written skills documents (like Claude Skills), which prompt the model with guidance on how to perform specific types of tasks</span></p></li><li><p><span>The calling of other models: How often other models are called, for what purpose, how many, etc</span></p></li><li><p><span>Best of k sampling, majority voting, and other aggregation procedures</span></p></li><li><p><span>Reflection, summarization, and self-critique steps</span></p></li><li><p><span>Token time cost limits, stopping rules</span></p></li><li><p><span>Agent loop: (for example) think &#8594; act &#8594; observe &#8594; repeat</span></p></li></ul><p><span>There is some previous work analyzing the effect of scaffolding. For example,</span><a href="https://arxiv.org/pdf/2312.07413"><span> Davidson et al. (2023)</span></a><span> examined the impact of some of &#8220;post-training enhancements,&#8221; including scaffolding, finding that some techniques yield performance improvements equivalent to a 10-100x increase in pre-training compute. For instance, they find that the LATS agent scaffold (</span><a href="https://arxiv.org/abs/2310.04406"><span>Zhou et al, 2023</span></a><span>) yields an approximately 10x compute-equivalent gain.</span></p><p><span>However, agentic scaffolding has become significantly more complex since 2023. In this post, we try to assess the current contribution of scaffolds to AI agent performance. And we hope future work will update ours as models and scaffolds advance.</span></p><p><span>Further work would also hopefully be able to disentangle the relative importance of the scaffold components we mentioned above. Unfortunately, we do not have sufficiently fine-grained data to distinguish the contribution of these components in present-day systems.</span></p><h1><strong><span>Our Data and Methods</span></strong></h1><p><span>We consider this post a first pass at quantifying the impact of scaffolds. Accordingly, the data analysis to generate the plots was conducted and reviewed by Claude Opus according to our guidance (the code is available on Github </span><a href="https://github.com/hansgundlach/ScaffoldingTheory"><span>here</span></a><span>).</span></p><p><span>To quantify the performance effects of scaffolding, we use data from the </span><a href="https://hal.cs.princeton.edu/"><span>Holistic Agent Leaderboard</span></a><span> (HAL). HAL is an index of model performance with multiple scaffolds on agentic benchmarks, reporting both accuracy and cost. 18 models are included &#8212; frontier models spanning a range of release dates produced by Anthropic, OpenAI, Google DeepMind, and DeepSeek (full model table in Appendix).</span></p><p><span>HAL bench includes many agentic benchmarks including CORE-Bench Hard, GAIA, Online Mind2Web, SWE-bench Verified Mini, SciCode, ScienceAgentBench, TAU-bench Airline, and USACO. These cover areas in software engineering, browser use, agentic search, scientific reasoning, and multimodal vision reasoning. (For a description of each of these benchmarks and what tools / skills they require, see the Appendix.) What makes it useful here is that it runs each model under multiple scaffolds per benchmark &#8212; typically a benchmark-specific scaffold alongside a general-purpose one. (Although it&#8217;s important to note that, despite being benchmark-specific, many of these &#8220;specialist&#8221; scaffolds are quite general in their design and affordances.) On CORE-Bench, for instance, models run under both the CORE-agent scaffold and the HAL generalist scaffold. The generalist scaffold is built on the </span><a href="https://github.com/huggingface/smolagents"><span>smolagents</span></a><span> framework: the model takes every action by writing Python code, so it &#8220;searches the internet,&#8221; for example, by writing and running code that performs the search.</span></p><p><span>Most of our data consists of specialist scaffolds designed for particular benchmarks; we also have data on a handful of generalist scaffolds, including Claude Code. Comparing among these scaffolds gives us a sense for the degree to which scaffolds can matter, and it provides tentative evidence that specialist scaffolds can outperform this particular generalist scaffold. We&#8217;d be excited to see future work extend this with more data (even new experiments) that use a wider range of scaffolds.</span></p><h2><span>What Can This Data Tell Us?</span></h2><p><span>In a lot of this analysis, we are comparing the effect of a small sample of scaffolds to a standard, but very specific scaffold &#8212; HAL. This means that many of our results are entirely relative to the choice of HAL as the baseline. For instance, if we had instead used a baseline that did not allow for tool calls, many of the scaffolds we assess would look comparatively amazing.</span></p><p><span>Another thing to note: there isn&#8217;t enough longitudinal data here to make empirical claims about how scaffolds might have improved over time or how much room for further improvement is possible.</span></p><h1><strong><span>Scaffolding Has a Large Impact on AI Performance</span></strong></h1><p><span>Scaffolding engineering is still a nascent field, so it&#8217;s not surprising that scaffolding&#8217;s effects are large and vary widely. Some specialist scaffolds provide large performance and efficiency advantages over generalist scaffolds, while others do not. To examine this, we plot each model&#8217;s final (logit transformed) benchmark score against the API cost needed to reach that benchmark score, across scaffolds in the figures below. We use the logit transform because benchmark accuracy is bounded between 0 and 1: a one-point improvement near saturation, say from 94% to 95%, often represents a larger gain in underlying capability than a one-point improvement near the middle of the scale, and the logit transformation helps adjust for this.</span></p><p><span>Below are per-scaffold price-performance frontiers for two benchmarks (CORE-Bench Hard and SciCode). We include graphs for the rest of the benchmarks in the appendix. Scaffold choice moves performance more than one might expect: in some cases, switching from a generalist to a specialist scaffold can buy ~100&#215; cheaper performance at the same accuracy. How big is this number? For context, algorithmic progress in AI inference typically cuts prices ~10&#215; per year at fixed performance (see our</span><a href="https://arxiv.org/pdf/2511.23455"><span> paper</span></a><span>) &#8212; so switching scaffold can, in the strongest cases, be worth roughly two years of model progress.</span></p><p><span>Also, we see that the Claude Code scaffold with Claude models (the orange group in CORE-bench) leads to exceptionally high performance. We will speculate as to why this might be later in the piece.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!udWE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 424w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 848w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 1272w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!udWE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png" width="1456" height="893" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:893,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 424w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 848w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 1272w, /__u/substackcdn.com/image/fetch/$s_!udWE!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F822a83c9-fd93-4074-a83f-926eb0c141c7_1935x1187.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>CORE-bench Hard &#8212; Clear differences between scaffolds in cost vs. accuracy, with improvements sometimes spanning two orders of magnitude. The <strong>Green points in the upper graph </strong>represent Claude models using the Claude-Code scaffold, which show exceptionally high performance</em></figcaption></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Fs_0!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 424w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 848w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Fs_0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png" width="1456" height="893" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:893,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 424w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 848w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Fs_0!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3e865f0e-1c44-4155-a3ba-0a7edf0c7fb0_1935x1187.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>SciCode &#8212; Scaffold differences on the Pareto frontier are irregular, but still noticeable. Note the difference in axis range compared to the previous plot.</em></figcaption></figure></div><p><span>The scaffold-switch vectors below trace the same model moving between two scaffolds &#8212; each arrow points from one scaffold&#8217;s (cost, accuracy) to another&#8217;s, colored by whether the switch made the model more/less accurate and more/less expensive. We display these plots for GAIA and SciAgentBench here, but include the graphs for all benchmarks in the Appendix.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!qOVn!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 424w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 848w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 1272w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!qOVn!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png" width="1456" height="941" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:941,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 424w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 848w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 1272w, /__u/substackcdn.com/image/fetch/$s_!qOVn!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc2ccd747-56ae-4ac7-8299-2ef11c5b7b81_2048x1324.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>Switching scaffolds on the GAIA benchmark produces highly varied effects&#8212;some models become both cheaper and more accurate, while others see reduced accuracy, increased cost, or both. Arrows point from the generalist scaffold to the specialist scaffold and are colored based on whether they reduce price and increase performance, reduce price and reduce performance, etc. The points without arrows correspond to models that are only benchmarked on one scaffold. Blue points correspond to evaluations on HAL Generalist Scaffold.</em></figcaption></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!b1IA!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 424w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 848w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 1272w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!b1IA!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 424w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 848w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 1272w, /__u/substackcdn.com/image/fetch/$s_!b1IA!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea59f9d5-7172-4a99-b99a-9b4c3285ef19_2048x1320.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>On SciAgentBench, the ScienceAgentBench Self-Debug agent consistently makes models both more accurate and less expensive, showing a uniform benefit over HAL. Note that the axis range differs from the previous plot.</em></figcaption></figure></div><p><span>We see here that scaffolding can have significant interaction effects with models, most visibly on GAIA: switching from the HAL generalist scaffold to the HF Open Deep Research scaffold improves some models while hurting others. </span><strong><span>This contrasts with most algorithmic progress in AI</span></strong><span>, which acts as a rising tide that sometimes lifts all boats &#8212; think of GeLU or flash attention, for example, where essentially every model benefits similarly from the new innovation. It&#8217;s also a contrast to ScienceAgentBench, where the ScienceAgentBench self-debug scaffold provides a more uniform benefit to all models.</span></p><p><span>It&#8217;s not entirely clear why some models are more advantaged by a given scaffold than others. One explanation could be that some scaffolds are more advantageous at low inference budgets, while other scaffolds could be better to use at higher inference scales. Interestingly, we see some evidence of this in the Pareto frontier graphs in the Appendix.</span></p><p><span>How often do scaffolds have heterogeneous, model-specific effects rather than producing a uniform, &#8220;rising tide&#8221; improvement to all models? To get a better sense, let&#8217;s look at a transformed version of the switch vector graphs we showed above. In the versions below, we center each vector on the origin, which now each represent a model&#8217;s performance on the HAL generalist scaffold. The arrows point to the difference in price and performance achieved after using alternative scaffolding &#8212; in most of the plots, specialist scaffolding adapted to the particular benchmark.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!c1vu!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 424w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 848w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 1272w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!c1vu!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png" width="1456" height="1308" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1308,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 424w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 848w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 1272w, /__u/substackcdn.com/image/fetch/$s_!c1vu!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F82e1f617-1abf-4967-88c1-f5be2fc6c0c6_2048x1840.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>These graphs show a difference in logit benchmark performance between HAL generalist and alternative scaffolds. Origin represents performance on HAL generalist scaffold. Arrows are colored by how the specialist scaffold affects cost and benchmark accuracy: e.g green arrows mean the scaffold reduces price and improves performance.</em></figcaption></figure></div><p><span>Averaging the vectors for each benchmark, we can arrive at a general picture of how scaffolding affects model performance. Overall, the majority of the specialist scaffolds measured in HAL improve the accuracy. However, some are only able to do this by using significantly more tokens. And, looking at the averages across benchmarks, there is significant heterogeneity. (Also, one caveat: it&#8217;s possible that the specialist scaffolds are &#8220;overfit&#8221; to their corresponding benchmarks, and might not generalize very well.)</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!NFVg!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 424w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 848w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!NFVg!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png" width="1456" height="941" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:941,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 424w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 848w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NFVg!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F1ccebf39-ed91-4154-8856-f77d3a6e8d88_2048x1323.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>The graph represents the average effects from each of the Origin-Centered Scaffold Switches graph above. Overall, most specialist scaffolds do improve performance. Smaller confidence ellipses mean we are <strong>more</strong> confident in the direction and magnitude of the vector. Note: USACO only has one point, so there is no confidence ellipse around it.</em></figcaption></figure></div><h2><span>Scaffolding Effect on AI Leaderboard Ranking</span></h2><p><span>People sometimes create leaderboards of models based on their agentic capabilities. However, in addition to </span><a href="https://arxiv.org/abs/2106.05532"><span>other</span></a><span> </span><a href="https://arxiv.org/html/2508.11847v1"><span>known</span></a><span> issues with leaderboard robustness, leaderboards can be very sensitive to scaffolding choices. If scaffolds have non-uniform effects, a model ranked 20th under one scaffold could place 3rd under another.</span></p><p><span>We include a formal analysis of scaffold effects on ranking in the appendix. On some benchmarks &#8212; SciCode, for instance &#8212; rankings are largely preserved across scaffolds (high rank correlation). But on most, rank-preservation measures show substantial reordering: the leaderboard you get depends heavily on the scaffold you chose to run.</span></p><p><span>Given this: how should leaderboard designers proceed? If the goal is to assess how models will perform under typical deployment conditions, the leaderboard should fix the scaffold that will actually be used. If the goal is to assess an AI system&#8217;s maximum capabilities under ideally conducive conditions, the leaderboard should run models under several scaffolds and take the best.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!-L9T!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 424w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 848w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 1272w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!-L9T!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png" width="1168" height="976" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/10a93831-25c7-4025-86da-710f8103b2db_1168x976.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:976,&quot;width&quot;:1168,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 424w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 848w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 1272w, /__u/substackcdn.com/image/fetch/$s_!-L9T!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F10a93831-25c7-4025-86da-710f8103b2db_1168x976.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>Ranking can vary significantly between scaffolds. Green lines represent models that improved in rank when switching from the HAL generalist agent to the SWE-agent harness, while red lines represent models that decreased in rank.</em></figcaption></figure></div><h1><strong><span>Potential Implications</span></strong></h1><p><span>Scaffolds could have a number of important implications for regulators, model developers, and society. We want to discuss a few particularly important potential implications of our findings here, as well as gesture beyond our immediate findings at future research directions.</span></p><h2><span>Scaffolds May Be a New Vector of AI Capabilities Improvement</span></h2><p><span>Our study here shows that scaffolds can have large impacts, and some existing scaffolds vary widely in their utility. We may soon see more effort to identify which scaffolds (and features of scaffolds) are most performant, and competition to build ever-better versions. If there is a lot of room for new innovation in scaffold designs &#8212; especially AI-automated innovation &#8212; it will become important to track progress in scaffolds alongside progress in raw model capabilities.</span></p><p><span>On the other hand, it may be that there is limited room to build scaffolds much better than we have now. If that&#8217;s the case, we should expect short term gains as the field converges to the best scaffolds of the designs available or the best models, but little progress after that.</span></p><p><span>Speculatively, one reason to doubt continued progress is this: more powerful future models may no longer need advanced agentic scaffolding. (Perhaps these future AIs will just design the tools they need right as they need them?) But our personal view is that this is less likely; we expect scaffolds&#8217; importance will continue &#8212; or grow.</span></p><h2><span>Scaffolds May Affect AI Developers&#8217; Monopoly Power</span></h2><p><span>It&#8217;s widely contested whether AI development is a natural monopoly &#8212; will big players with lots of compute, like OpenAI and Anthropic, increasingly dominate the market for AI services, or will small developers increasingly undermine their business? While we can&#8217;t say for certain, scaffolds may be an important factor in shaping the eventual equilibrium. Our results show that using good scaffolds can yield big improvements in price and performance. Accordingly, it is conceivable that scaffolds could erode the advantage of expensive frontier models, by allowing cheap models to offer improved performance &#8212; especially if scaffolds are cheap to produce.</span></p><p><span>However, we believe that the opposite outcome is more likely: scaffolds will lead to greater concentration. Why? First, while our data isn&#8217;t sufficient to show this, it seems likely that scaffolds are to some degree complementary to compute investment. If scaffolds help more expensive models more than cheaper ones, they could increase returns to scale, which would drive concentration.</span></p><p><span>Second, we expect that scaffolds will become increasingly expensive, as firms expend inference compute to optimize their designs, and scaffolds increasingly deploy complicated ensembles of models to perform more complex, long-horizon tasks. (We&#8217;d love to see more research on this question: to what extent can scaffolds be improved with more inference compute?)</span></p><p><span>Third, and perhaps more interestingly, we speculate that there may be benefits to </span><em><span>co-optimizing </span></em><span>models and scaffolds. For instance, Anthropic can do reinforcement learning that trains Claude within their Claude Code scaffold. And they can simultaneously adjust their scaffolding to take advantage of Claude models&#8217; unique capabilities &#8212; which only Anthropic has white-box access to. Both the Claude models and the Claude Code scaffold might then improve together, generating a synergistic performance advantage that outside actors can&#8217;t easily replicate. It requires a prohibitive cost to train a foundational model from scratch on a proprietary scaffold. While our analysis here isn&#8217;t sufficient to demonstrate that Anthropic is already getting benefits from co-optimization, we can&#8217;t rule it out &#8212; and we do observe that Claude Code seems to perform exceptionally well.</span></p><p><span>If this sort of co-optimization becomes important, Claude models might then become hyper-optimized for the Claude scaffold, with limited interoperability with other scaffolds and downstream applications. Downstream scaffold developers without control over models might even see their scaffolds&#8217; performance decrease rather than increase with new Claude models (see how the SWE-agent harness decreases performance for some models). Just as Apple has been able to preferentially benefit its own applications over other providers&#8217; applications on its App Store, Anthropic could design Claude&#8217;s training to prioritize the downstream frameworks it wants to succeed.</span></p><h2><span>Task-Specific Scaffolds May Become (More of) a Thing</span></h2><p><span>We find numerous instances of specialist scaffolds, tailored to particular benchmark tasks, which outperform a generalist scaffold on that task. We don&#8217;t have many generalist scaffolds in our data, so it&#8217;s far too early to say that task-specific scaffolds are </span><em><span>typically</span></em><span> better than generalist ones, or anything like that. But it will be interesting to watch the field develop &#8211; if specialist scaffolds can outperform generalist ones, we may see companies spring up to provide task- or industry-specific scaffolds. (Arguably, this is a good description for some companies we already see, like Harvey and Cursor.)</span></p><h2><span>Scaffold Security is Important</span></h2><p><span>For those concerned about leakage or cybertheft of advanced AI capabilities, our findings here suggest that it may be important to keep scaffolding secure &#8212; perhaps just as important as models themselves. However, scaffolding security is significantly less discussed than model weight security. Notably, the scaffolding behind Anthropic&#8217;s breakthrough product Claude Code was accidentally </span><a href="https://www.latimes.com/business/story/2026-04-01/anthropic-accidentally-leaked-thousands-of-lines-of-code?ref=aibad.news"><span>leaked in March</span></a><span>.</span></p><p><span>How much scaffold security matters depends significantly on how closely models and scaffolds are co-optimized. If scaffolding is highly tailored to a specific model, then exfiltration of either the scaffolding or the model weights alone is less severe because both scaffold and weight exfiltration are necessary to reach full performance. Companies can take active measures to prevent scaffold exfiltration being independently useful to attackers. For instance, by making the scaffold dependent on external APIs or tools that are only available at AI labs or legitimate organizations. On the other hand, if scaffolds are both powerful and useful regardless of what models they are used with, then scaffolding exfiltration might be a great risk. In this regime, a leaked scaffolding would be able to significantly improve capabilities for many unintended models at once with minimal adaptation.</span></p><h1><strong><span>Conclusion and the Future of AI Capabilities</span></strong></h1><p><span>The systems models are embedded in seem to be an important determinant of model capabilities. It&#8217;s possible that this could become increasingly so in the future. Complicated scaffolds, multi-agent networks with complex information sharing, and new structures we haven&#8217;t yet imagined may continue to blur the line between what is and is not an AI. Understanding the capabilities &#8212; as well as the alignment profile &#8212; of these new systems will then require looking beyond individual models in isolation.</span></p><h1><strong><span>Appendix</span></strong></h1><p><span>This appendix includes the following:</span></p><ul><li><p><span>A table of the benchmarks and agents in our dataset</span></p></li><li><p><span>A table of the models in our dataset</span></p></li><li><p><span>An analysis of the explanatory power of scaffolds vs models</span></p></li><li><p><span>The full suite of Pareto analysis plots, vector analysis plots, and ranking correlation plots, and an additional plot showing how specialists scaffolds compare to HAL</span></p></li><li><p><span>A link to our code and data</span></p></li></ul><h2><span>Benchmarks</span></h2><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!CXWB!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 424w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 848w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 1272w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!CXWB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png" width="1294" height="1652" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1652,&quot;width&quot;:1294,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 424w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 848w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 1272w, /__u/substackcdn.com/image/fetch/$s_!CXWB!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa1b8b9bb-26f9-4f47-b0f7-0bc0b91b856b_1294x1652.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!-KhH!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 424w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 848w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 1272w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!-KhH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png" width="1296" height="290" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:290,&quot;width&quot;:1296,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 424w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 848w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 1272w, /__u/substackcdn.com/image/fetch/$s_!-KhH!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F188583b8-8113-4f82-bde1-3eda6a714bd2_1296x290.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p><em><span>Details of each benchmark and scaffold in our dataset. This information was compiled by Claude to our specifications.</span></em></p><h2><span>Models in Dataset</span></h2><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Cn1J!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Cn1J!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png" width="1414" height="1318" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1318,&quot;width&quot;:1414,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 424w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 848w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Cn1J!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94c53118-43cc-4d50-8af1-72149d653243_1414x1318.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><em><span>These are all the model configurations we use, along with the number of benchmarks and scaffolds each appears with. Some models were run both at a high inference setting and with no specific setting; where both occur on the same benchmark and scaffold, we keep the higher-accuracy run. A couple of models (o3 and GPT-5) appear only at a medium setting. The exception is o4-mini, which was run at a high and a low setting (rather than high/none): we keep both.</span></em></p><h2><span>Explanatory Power of Scaffolds vs Model Algorithmic Efficiency</span></h2><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Wd7o!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 424w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 848w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Wd7o!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png" width="854" height="579" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/60b66762-0c87-4a62-8553-67ab16da9062_854x579.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:579,&quot;width&quot;:854,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 424w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 848w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Wd7o!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F60b66762-0c87-4a62-8553-67ab16da9062_854x579.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p><span>Methodology: our goal here is to measure how much of the variance in (logit transformed) performance is explained by scaffolds and models, controlling for log price and benchmark. (Given our sample size, we add only an additive fixed effect for each benchmark.) The issue is that benchmarks and scaffolds are highly correlated since most of the scaffolds are used exclusively on a single benchmark; we don&#8217;t want to attribute performance changes to scaffolds that are really just differences between benchmarks, but a naive regression would have no way of distinguishing. Our fix is to build up the regression incrementally. We first regress logit performance on log price and benchmarks, and observe the adjusted R^2 (which is 0.519). Then, we refit the regression twice: once with model dummies added in, and once with the scaffold dummies added in instead. In each case, we observe how the adjusted R^2 changes compared to the baseline regression with just benchmark dummies and log price. The plot above shows the explanatory power of models vs scaffolds. The takeaway is that scaffolds explain more of the variance in our data than models do, underscoring the importance of scaffolding.</span></p><p><span>(Running a similar regression with both scaffold and model incorporated sequentially gets similar results, regardless of the order in which the parameters are incorporated into the regression. This is because there is relatively little shared variance between scaffolds and models.)</span></p><h2><span>Pareto Analysis Graphs For All Benchmarks</span></h2><p><span>Per-scaffold price&#8211;performance frontiers across all benchmarks. Each panel plots final accuracy (logit-scaled) against the API cost needed to reach it, with one frontier per scaffold.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Ki86!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 424w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 848w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Ki86!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png" width="1085" height="2048" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:2048,&quot;width&quot;:1085,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 424w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 848w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Ki86!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4f7542e3-fa75-40a4-85e3-96278507fa36_1085x2048.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><span>Full Vector Analysis Graphs</span></h2><p><span>Scaffold-switch vectors for the remaining benchmark/scaffold pairs. Each arrow traces a single model moving between two scaffolds, from one scaffold&#8217;s (cost, accuracy) to the other&#8217;s, colored by whether the switch made the model more/less accurate and more/less expensive, as in the figures in the main text. As in the main text, we see two types of scaffolding changes: rising-tide changes and turbulent changes. We see a roughly equivalent number of turbulent changes as rising-tide change</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!ocsy!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!ocsy!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ocsy!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4af1c079-f2fc-4360-8c09-633e58bfaef6_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!NV0l!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!NV0l!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NV0l!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbf29e7d-9e75-4c90-8f8f-74d39061487c_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Wsn-!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Wsn-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Wsn-!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe08ae144-007b-4f40-b422-1f6acb66483d_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!ZZ6A!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!ZZ6A!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!ZZ6A!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcffa4cc5-772e-4c94-8c3e-11050fbd9eca_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!z45s!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!z45s!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!z45s!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa464b1c9-5a03-46ca-914f-4d853b4bd435_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!NlhI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 424w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 848w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!NlhI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png" width="1456" height="921" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:921,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 424w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 848w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 1272w, /__u/substackcdn.com/image/fetch/$s_!NlhI!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F37bef19b-2e6f-4948-86cf-a4a08883a954_2048x1296.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!hYft!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!hYft!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!hYft!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cdfa17c-92f3-4250-8c22-bf14cbb3e0ac_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!TiaC!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!TiaC!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png" width="1456" height="938" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:938,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 424w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 848w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 1272w, /__u/substackcdn.com/image/fetch/$s_!TiaC!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F637239da-ad29-44fc-9e63-db0118a9a2cf_2048x1319.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!sX9Q!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 424w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 848w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 1272w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!sX9Q!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png" width="1456" height="941" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:941,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 424w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 848w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 1272w, /__u/substackcdn.com/image/fetch/$s_!sX9Q!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4e7fd99f-f6df-404e-983c-e4d3ac6a0456_2048x1323.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><span>Ranking Correlation Graphs</span></h2><p><span>How well does a model&#8217;s ranking on one scaffold predict its ranking on another? The chart below (left) shows </span><a href="https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient"><span>Spearman &#961; </span></a><span>and </span><a href="https://en.wikipedia.org/wiki/Kendall_rank_correlation_coefficient"><span>Kendall &#964; </span></a><span>rank correlations between scaffold pairs for each benchmark. Most pairs preserve ranking moderately well, but CORE-bench Hard (CORE-Agent &#8594; Claude Code) is notably negative &#8212; the best models on one scaffold are not the best on the other. Zooming in on GAIA (right) with &#964;=0.17, only about a 58% chance that any two models keep their relative order across scaffolds (this is what Kendall &#964; rank measures). Points on the green diagonal kept their ranking; the reds (e.g. DeepSeek V3, o3 Medium) jump far off it.</span></p><p><span>Both measures run from &#8722;1 (rankings exactly reversed) through 0 (no association) to +1 (identical rankings). </span><strong><span>Spearman&#8217;s &#961;</span></strong><span> is the Pearson correlation applied to the models&#8217; rank positions rather than their raw scores: take each model&#8217;s rank under scaffold A and its rank under scaffold B, and measure how linearly those two sets of rank numbers track each other. Because it works on the rank values, &#961; is sensitive to </span><em><span>how far</span></em><span> a model moves &#8212; a model that falls from 2nd to 18th drags &#961; down more than one that slips from 2nd to 4th. </span><strong><span>Kendall&#8217;s &#964;</span></strong><span>, by contrast, only counts whether each </span><em><span>pair</span></em><span> of models keeps the same order, ignoring the size of the move.</span></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!OIjT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 424w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 848w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 1272w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!OIjT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png" width="498" height="511.8589981447124" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1108,&quot;width&quot;:1078,&quot;resizeWidth&quot;:498,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 424w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 848w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 1272w, /__u/substackcdn.com/image/fetch/$s_!OIjT!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcabb3f2f-cc26-441f-871e-b0ec839e3e5c_1078x1108.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>If there were any points on the green dashed line above, those would indicate models which preserved their ranking across scaffolds. There are none of these, although there is a 58% chance that each pair of models preserve their relative order to each other. Points in red are models whose relative rank was better with the HAL generalist scaffold; points in green are models whose relative rank was better with the HF Open Deep Research scaffold.</em></figcaption></figure></div><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!i7Ph!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 424w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 848w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 1272w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!i7Ph!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png" width="1456" height="722" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:722,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 424w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 848w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 1272w, /__u/substackcdn.com/image/fetch/$s_!i7Ph!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F530080d3-b8a9-44ee-a38b-dbac5c9bccd0_1781x883.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h2><span>Specialist Scaffolding Increases Across Benchmarks</span></h2><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!yxAz!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 424w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 848w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 1272w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!yxAz!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png" width="1456" height="1325" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1325,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 424w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 848w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 1272w, /__u/substackcdn.com/image/fetch/$s_!yxAz!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff0832b06-bb50-4ab4-a93a-d774aee288fa_1939x1764.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>Spider-plot of max benchmark performance across models on general (in blue) and specialist scaffolding (in green). Specialist scaffolding allows models to achieve much higher benchmark scores in several domains.</em></figcaption></figure></div><h2><span>Code and Data</span></h2><p><span>All data was scraped from the publicly available</span><a href="https://hal.cs.princeton.edu/"><span> HAL leaderboard</span></a><span>. The code for generating graphs and doing analysis is here:</span><a href="https://github.com/hansgundlach/ScaffoldingTheory"><span> Github</span></a><span>.</span></p><p><em><span>Thank you to Alex Fogelson for reading a draft of this piece and offering helpful comments.</span></em></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><p></p>]]></content:encoded></item><item><title><![CDATA[How Much Would It Have Cost Claude Shannon to Train Claude Opus?]]></title><description><![CDATA[The hidden role of hardware efficiency &#8212; and why the next ten years will tell us where AI goes next]]></description><link>https://mitfuturetech.substack.com/p/how-much-would-it-have-cost-claude</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/how-much-would-it-have-cost-claude</guid><dc:creator><![CDATA[Zachary Brown]]></dc:creator><pubDate>Thu, 14 May 2026 12:03:41 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!iqll!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Scientists have been working towards computers that can think since Turing formalized computational universality in 1936. But only in the last few years have computers managed to achieve long-held goals like passing the Turing&#8217;s test or reasoning in natural language. Why did this take so long? And why has progress been so dramatic in the last ten years?</p><p>Today&#8217;s AI developers have access to a number of resources that the would-be AI-builders of yesteryear lacked:</p><ol><li><p>Better algorithmic / architectural ideas,</p></li><li><p>More training data,</p></li><li><p>More efficient computing hardware,</p></li><li><p>And more cash to spend on that computing hardware and data.</p></li></ol><p>Growth in each of these inputs has been necessary to reach modern AI capabilities. But growth has been historically uneven, and as a result, AI progress has been bound more by some inputs than others.</p><p><strong>We&#8217;ll argue that hardware efficiency in particular has been the binding constraint on model capabilities over the last 70 years</strong>. The steady pace of hardware efficiency progress &#8211; described by <a href="https://en.wikipedia.org/wiki/Moore%27s_law">Moore&#8217;s law</a> &#8211; only recently brought us to the point where rapid investment in <em>hardware quantity</em> could close the last mile, which we&#8217;ve seen over the last decade. That investment would be for naught without the prior half-century of hardware efficiency progress.</p><p>Going forward, it&#8217;s reasonable to expect that the steady march of hardware efficiency progress will continue. But the rapid pace of investment we&#8217;ve seen recently cannot continue indefinitely unless it leads to dramatic and sustained economic growth. If transformative AI &#8211; transformative enough to bring about that kind of growth &#8211; is achievable with only a few more orders of magnitude of investment, then&#8230; buckle up! But if it isn&#8217;t, AI investment will eventually need to slow to an economically sustainable growth rate, commensurate with the returns on investment. In that scenario, AI progress may once again depend heavily on the slower pace of hardware efficiency progress.</p><p>In this post, we&#8217;ll examine the history of AI progress and assess the role of each of the four inputs. We&#8217;ll then explain why the next ten years of AI progress will be an extremely important signal for AI&#8217;s future trajectory.</p><p><em>This post is based on a talk delivered by Dr. Neil Thompson at the <a href="https://blog.google/company-news/outreach-and-initiatives/creating-opportunity/ai-economy-forum/">AI for the Economy Forum</a>, which FutureTech co-hosted with Google last month. You can view that talk <a href="https://www.youtube.com/watch?v=ok_xGd1HBxU&amp;list=PL590L5WQmH8fZ0g3mKKrgT2cKlKri8Gdi&amp;index=10">here</a>.</em></p><h1>We had the ideas, but not the compute</h1><p>A typical history of an area of science emphasizes the importance of ideas. <strong>Perhaps surprisingly, though, many of the foundational ideas in AI were conceived of in the 1950s and 60s, but lacked sufficient resources to be implemented. </strong>In other words, algorithms were probably not the binding constraint on AI progress.</p><p>In a seminal <a href="https://people.math.harvard.edu/~ctm/home/text/others/shannon/entropy/entropy.pdf">1948 paper</a>, Claude Shannon, the founder of information theory (and the namesake of Anthropic&#8217;s Claude model), showed that it was possible for statistical measures to predict the next &#8220;token&#8221; of English language text given the preceding words. In the very same paper, he established the concept of entropy as a metric for evaluating the predictive performance of such models &#8211; the foundation of the measures we use today. Just a few years later in 1957, Frank Rosenblatt would invent the perceptron &#8211; the fundamental unit of modern deep learning. Modern systems combine millions of these digital neurons into networks, requiring massive amounts of compute to train, but even then researchers were already starting to scale perceptrons into larger neural networks, given what their available hardware would allow.</p><p>Of course, some key algorithms were admittedly still missing, but important precursors were often already around. Rosenblatt himself had already discussed the possibility of &#8220;deep&#8221; networks as early as 1962. And while backpropagation &#8211; an essential algorithm for training deep networks &#8211; would not enter general use in AI <a href="https://web.stanford.edu/~jlmcc/papers/PDP/Volume%201/Chap8_PDP86.pdf">until the mid-1980s</a>, <a href="https://arc.aiaa.org/doi/10.2514/8.5282">early versions of backpropagation</a> were actually <a href="https://link.springer.com/article/10.1007/BF01931367">already discovered</a> and <a href="https://www.researchgate.net/publication/279233597_Beyond_Regression_New_Tools_for_Prediction_and_Analysis_in_the_Behavioral_Science_Thesis_Ph_D_Appl_Math_Harvard_University">discussed numerous times</a> before then.</p><p>The existence of so many essential ideas in the middle of the twentieth century lends support to the idea that algorithms were ahead of what was implementable at the time, given the hardware and training data available.</p><p>That implementation took time. It would take another 30 years before neural networks and text prediction could be connected and put into practice. In 1988, IBM created <a href="https://circletranslations.com/blog/history-of-machine-translation">Candide</a>, a statistical machine translation system which was trained on the Canadian Hansard, a digitized text corpus just large enough to train an n-gram model (a phrase coined by Shannon). Just two years later, Jeffrey Elman <a href="https://onlinelibrary.wiley.com/doi/10.1207/s15516709cog1402_1">proposed using recurrent neural networks</a> to model the next token of text..</p><h3>Algorithms and data are downstream of compute</h3><p>We don&#8217;t want to downplay that ideas like Elman&#8217;s required ingenuity, or suggest that ideas since the 60s have been trivial or unimportant for AI progress. We only want to suggest two things: first, that a lot of the essential ideas were floating around much earlier than they were eventually implemented and validated in AI systems. And then second: if more computing power and training data had been available for researchers in the past, the remaining algorithmic insights needed to reach today&#8217;s frontier might have been discovered even sooner. Why? Impressive results would have made it clear earlier which research directions were most promising, incentivized algorithms that take advantage of raw computational power, drawn new researchers into the field, led to earlier real-world usage of neural networks, and attracted more investment.</p><p>This idea, that lack of computing capacity constrained innovation, is not just our modern, retrospective diagnosis. Writing in 1990 on the previous thirty years of progress in neural networks, Bernard Widrow and Michael Lehr emphasize that it was indeed the available hardware that constrained the models researchers could build: &#8220;Today, most artificial neural network research and application is accomplished by simulating networks on serial computers. Speed limitations [a result of compute limitations] keep such networks relatively small [...]&#8221;</p><p>Just as algorithmic ideas might have matured sooner if more hardware was available for experiments, the massive digital text datasets we now have are also downstream of progress in hardware. In particular, internet scale data requires the internet, a massive population of internet users contributing text, and sufficiently cheap, powerful hardware (with inexpensive high-capacity memory) for ubiquitous personal computing in developed countries.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-1" href="#footnote-1" target="_self">1</a><a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-2" href="#footnote-2" target="_self">2</a></p><p>We&#8217;ve argued that compute was the binding constraint. But was it lack of <em>investment</em> in compute &#8211; could early AI researchers have simply purchased more hardware? Or was it the efficiency of the hardware on offer?</p><p>The latter. To see why, let&#8217;s pose a counterfactual thought experiment: how much would someone like Claude Shannon &#8211; one of the greatest computer scientists of the mid-twentieth century &#8211; have needed to spend to train an AI model of today&#8217;s capabilities with the hardware of his time?</p><h1>The cost of Claude in 1946</h1><p>Today&#8217;s frontier models, like Claude Opus, require massive amounts of compute &#8211; around 10<sup>26</sup> FLOPs. Throwing aside the need for new algorithms and data, let&#8217;s look at what it would take to build such a thing with the hardware of Shannon&#8217;s era &#8211; the mid-forties.</p><p>In 1946, the Electronic Numerical Integrator and Computer (ENIAC) was built for the United States Army &#8211; the first programmable, electronic, general-purpose digital computer. ENIAC was a landmark, Turing-complete, fully reprogrammable machine. It cost the equivalent of $7 million in 2024 and operated at about 500 FLOPs per second. We&#8217;ll use ENIAC to ground our first estimates &#8211; full calculations are detailed at the end of this post.</p><p>Since we know ENIAC&#8217;s power consumption, historical pricing, and cost of construction, we can back out an estimate for dollars per FLOP and extrapolate to 10<sup>26</sup> FLOPs. <strong>The final number: about $9 billion trillion in present-day dollars</strong> to train a Claude Opus equivalent in 1946.<strong> </strong>That&#8217;s 70 million times more than <em>current</em> world GDP. Even if Shannon had wanted to buy this much computing power, it was beyond infeasible for the economy of his time.</p><p>Before comparing that figure to today&#8217;s cost to build Claude Opus, let&#8217;s take a pitstop in 2012, right at the cusp of the deep learning revolution. In the halls of the University of Toronto, Geoffrey Hinton and two <a href="https://en.wikipedia.org/wiki/Alex_Krizhevsky">soon-to-be-famous</a> <a href="https://en.wikipedia.org/wiki/Ilya_Sutskever">graduate</a> students are training what will eventually be known as AlexNet &#8211; a pioneering image recognition model which bet on scaling compute as a way to yield better performance. How much would it have cost Hinton to train Claude Opus instead of AlexNet?</p><p>We&#8217;ll again use the largest supercomputer in the world at the time for reference. The TITAN supercomputer had just been built at a cost of $97 million. It was capable of 2.7 x 10<sup>16</sup> FLOPs per second and drew 8200 kW of power.<strong> </strong>Using a similar calculation with estimates for power draw and cost, it would cost<strong> $12 billion in present-day dollars to train Claude with many TITANs. </strong>Given the improvements in hardware efficiency from ENIAC to TITAN, training Claude in 2012 would have been hypothetically feasible for a nation-state or megacap company, even if the cost was still beyond what would have been accessible to Hinton and collaborators.</p><p>Today? With the same FLOP extrapolation on contemporary compute, it would cost around <strong>$105 million to train Claude Opus in 2026.</strong> Note the cost reductions<strong>: </strong>from Shannon to Hinton, we see a 719 trillion-fold reduction in cost. But from 2012 to the present, we see a mere 114-fold reduction. By these stylized examples, efficiency increases from Shannon to Hinton were more than 6 trillion times more than from Hinton to the present.</p><p>Across the same time periods, the growth in compute investment rather than hardware efficiency is far less dramatic. Across <a href="https://epoch.ai/data/ai-models?view=graph&amp;tab=notable">notable machine learning models</a>, the investment growth from 1946 to 2012 is only around 600x more than the growth from 2012 to the present, on average.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-3" href="#footnote-3" target="_self">3</a> <strong>Hence, from Shannon to Hinton, we see almost 2,000x more growth in hardware efficiency than investment. But from Hinton to today, we see more than 6,000,000x more growth in investment than hardware efficiency.</strong></p><p>This divergence is consequential: the last decade has seen tremendous investment with minimal efficiency gains, but rides on the back of 60+ years of efficiency accumulation &#8211; billions upon trillions of times more efficient hardware. While current capabilities are in part the result of rapid growth in compute buildout by frontier labs, they stand on the shoulders of a half-century of Moore&#8217;s law.</p><h1>The next ten years of progress matter a lot</h1><p>We&#8217;ve seen that historically, the slow march of hardware efficiency has played a much larger role than the recent boom of compute investment. What does that mean for the future of AI progress? We see roughly three possible universes.</p><p>In the first universe, true transformative AI is only a few orders of magnitude away. Frontier labs can simply reach up and grab it with enough short-term spending, provided they can find investors who can front the cash without requiring immediate returns. In this world, hardware progress over the last 70 years has taken us just short of the end zone, and we can reap the full rewards with one last monumental push.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!iqll!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 424w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 848w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 1272w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!iqll!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png" width="1456" height="781" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c3be154e-1034-4054-a56e-d19658559877_2048x1098.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:781,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 424w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 848w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 1272w, /__u/substackcdn.com/image/fetch/$s_!iqll!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc3be154e-1034-4054-a56e-d19658559877_2048x1098.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>However, training compute cannot increase indefinitely without world-historical economic returns. A naive extrapolation of current spending would have frontier model training compute spending exceed world GDP by 2040. It&#8217;s not plausible that there is enough patient liquid investment capital to reach this point. So if we don&#8217;t see transformative AI in the next several orders of magnitude of scaling, that brings us to the second universe.</p><p>In the second universe, transformative AI doesn&#8217;t arrive soon, and those capital constraints mean that hardware investment must slow to match the pace of economic returns. However, capabilities improvements do bring in enough revenue that investment still proceeds at a relatively rapid pace, and progress is still driven mostly by hardware investment. The pace of progress is faster than what we&#8217;d see from hardware efficiency alone.</p><p>In the final universe, the next breakthrough is again many orders of magnitude away, and the utility of training more expensive models diminishes fast enough that scaling cannot pay for itself. Companies cannot find a way to economically continue exponential scaling, and we are instead forced to wait decades for hardware progress to slowly accumulate. Just like Claude Opus was simply out of reach for Claude Shannon, it may be that no short-term investment can substitute for the gradual progress of decades.</p><p><strong>The next few years are critical for determining which of these paths we are on.</strong> If the CEOs of frontier labs are correct, we could see transformative AI in the next few years as the labs make their final push. Short of such a breakthrough, we might still see that demand grows so rapidly that frontier labs need not slow their buildout spend, suggesting that the flywheel is fast enough to compensate for slow hardware progress. But if capabilities aren&#8217;t enough to drive revenue growth, spending will slow tremendously, and we, like Shannon, will be forced to watch the clock and ride the gradual wave of efficiency improvements for decades.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><p><em>This post was written by Zach Brown and Alex Fogelson. Neil Thompson provided editorial support. Lucy Yan provided logistical support.</em></p><h1>Appendix: calculation details</h1><p><strong>ENIAC: </strong>To calculate the cost of training Claude using ENIAC, we use its true lifecycle of 9 years, an initial build-out cost of $487,000, a max power draw of 150 kW, an estimated power cost of $0.02 per kWh, and FLOP rate of 500 FLOPS. The cost per FLOP is assuming it operates at maximum FLOPS and power capacity for 9 years, and the final cost is converted to 2026 dollars with a 16.93 inflation multiplier. We don&#8217;t estimate the utilization for ENIAC. Our final number is about 9 billion trillion dollars in 2026.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!nl_m!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 424w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 848w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 1272w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!nl_m!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png" width="1456" height="84" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:84,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 424w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 848w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 1272w, /__u/substackcdn.com/image/fetch/$s_!nl_m!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c3990a3-ef59-48d3-a93c-ba6a1276c15c_1823x105.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p><strong>TITAN: </strong>To calculate the cost of training Claude using TITAN, we use both the initial cost of construction and the cost of a one time upgrade, totalling $97 million, amortized over its seven year lifespan. For power draw, we estimate a cost per kWh of $0.06 and a max power draw of 8200 kW. The peak FLOPS for TITAN was 27e15, though we assume 25% utilization, which was deemed historically reasonable by Claude Opus and GPT 5.5. Again adjusting for 2026 dollars, we get $12 billion dollars:</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!7VjS!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 424w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 848w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 1272w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!7VjS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png" width="1456" height="70" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:70,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 424w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 848w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 1272w, /__u/substackcdn.com/image/fetch/$s_!7VjS!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa577a069-55ff-464d-9efd-3e2c3488d3a4_2048x99.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><p><strong>Claude, Today: </strong>Finally, for our modern day Claude estimations, we use an approximate cost per hour of renting an H100 of $1.50, a utilization of 40%, and a peak FLOP rate of 990 TFLOPS to get $105 million.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!LlZV!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 424w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 848w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 1272w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!LlZV!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png" width="1040" height="93" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:93,&quot;width&quot;:1040,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 424w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 848w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 1272w, /__u/substackcdn.com/image/fetch/$s_!LlZV!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff8566bd7-eb42-4ef9-9852-551bfe136cd6_1040x93.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-1" href="#footnote-anchor-1" class="footnote-number" contenteditable="false" target="_self">1</a><div class="footnote-content"><p>Other large datasets of natural language text similarly depend on compute: at-scale digitization of library print holdings in machine-readable format requires high-quality optical character recognition (OCR) technology, which is itself an AI technology that improves with training compute scale.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-2" href="#footnote-anchor-2" class="footnote-number" contenteditable="false" target="_self">2</a><div class="footnote-content"><p>Though in our later historical cost estimates we don&#8217;t estimate the price of generating internet scale data, this isn&#8217;t to say this cost is zero. Hardware was no doubt a prerequisite for the internet, but the person-hours needed to populate its contents would be incredibly costly. For simplicity, we focus on compute as the primary data bottleneck going forward.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-3" href="#footnote-anchor-3" class="footnote-number" contenteditable="false" target="_self">3</a><div class="footnote-content"><p>Using approximate rates of 1.5x per year between 1946 and 2012, 4.3x per year between 2012 and today.</p></div></div>]]></content:encoded></item><item><title><![CDATA[Can Academic Science Keep Up with the AI Frontier?]]></title><description><![CDATA[Tracking the meteoric rise of AI foundation models in science and the constraints on future breakthroughs.]]></description><link>https://mitfuturetech.substack.com/p/can-academic-science-keep-up-with</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/can-academic-science-keep-up-with</guid><dc:creator><![CDATA[Alex Fogelson]]></dc:creator><pubDate>Thu, 12 Mar 2026 19:02:05 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/88cdc3ae-f07e-4b14-b5e8-d0e9b41033bb_2000x1050.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>If you listen to leaders of frontier AI labs, generative AI should precipitate a phase change in scientific research any day now. <a href="https://www.businesstoday.in/technology/news/story/india-ai-impact-summit-2026-google-deepmind-ceo-demis-hassabis-predicts-artificial-general-intelligence-within-8-yrs-516653-2026-02-18">Demis Hassabis</a> says we are on the cusp of unleashing a &#8220;golden era for scientific discovery&#8221; in the next 10 years, a &#8220;new Renaissance.&#8221; <a href="https://www.darioamodei.com/essay/machines-of-loving-grace">Dario Amodei</a> estimates we will compress 50-100 years of research in biology and medicine into just 5-10 years. <a href="https://www.marketingaiinstitute.com/blog/sam-altman-gpt-5">Sam Altman</a> predicts AI will facilitate &#8220;astounding triumphs &#8211; fixing the climate, establishing a space colony, and the discovery of all of physics.&#8221; Frontier labs are not predicting iterative innovation, but revolutionary transformation.</p><p>We here at FutureTech remain cautiously ambivalent about the magnitude<em> </em>of these claims. But AI&#8217;s transformational impact on science is directionally correct, and we need not prophesize to claim this. For scientists, AI enabled methodologies are neither a recent innovation nor a punctuated transition. Quite the contrary: <em>the use of AI models across science has been growing near-exponentially for well over a decade, across nearly all domains of science.</em></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!ujq_!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!ujq_!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg" width="1456" height="905" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:905,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!ujq_!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fbaab5a-3e79-42bb-bcd7-4743bca1c179_1600x994.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><em>AI foundation model adoption is growing near-exponentially across every field.</em></figcaption></figure></div><p>In our new paper <em><a href="https://arxiv.org/abs/2511.21739">The Rapid Growth of AI Foundation Model Usage in Science</a></em>, we document this historical trend with unprecedented depth, tracking <strong>who</strong> has adopted <strong>which </strong>foundation models and <strong>how</strong> scientists deploy them in their methodologies. We construct the largest dataset of its kind &#8211; classifying <strong>750 thousand academic citations</strong> of <strong>nearly 2 thousand foundation models</strong> across<strong> 250 thousand papers.</strong> In this post, we&#8217;ll not only demonstrate the staggering growth of AI in science over the last decade, but we&#8217;ll look under the hood at which models are used, how that impacts scientific outcomes, and why it matters. Expect to learn:</p><ol><li><p>Which fields are currently using AI foundation models most often, growing that use the fastest, and using the largest models?</p></li><li><p>How quickly are scientists keeping up with the AI frontier? How do research outcomes change as scientists move closer to the frontier?</p></li><li><p>What bottlenecks in AI may be limiting scientific breakthroughs of the sort predicted by frontier labs?</p></li></ol><p>To begin, we&#8217;ll set the stage with a fundamental question: <em>what is an AI foundation model, and how do we track their deployment in science?</em></p><h3><strong>What do we mean by &#8220;AI foundation models&#8221;?</strong></h3><p>The term &#8220;AI&#8221; means different things to different people. Before we can track how scientists are using AI, we need to agree on some definitions. Is a chess engine like <a href="https://en.wikipedia.org/wiki/Deep_Blue_(chess_computer)">IBM&#8217;s </a><em><a href="https://en.wikipedia.org/wiki/Deep_Blue_(chess_computer)">DeepBlue</a></em> &#8211; hardcoded with domain knowledge, deterministically navigating through search space &#8211; considered AI? What about a simple linear regression model, fit using gradient-based methods? Are we just being obnoxiously pedantic? Perhaps, like Justice Potter Stewart, <a href="https://en.wikipedia.org/wiki/I_know_it_when_I_see_it">we&#8217;ll just know it when we see it!</a></p><p>Sadly, we won&#8217;t. The literature has no standard definition of what &#8220;AI&#8221; means in the context of scientific methodologies. For instance, <a href="https://arxiv.org/abs/2405.15828v1">this paper</a> uses a list of keywords to indicate the presence of AI, but they seemingly don&#8217;t publish that list anywhere. <a href="https://hai.stanford.edu/ai-index/2025-ai-index-report">This report</a> from Stanford uses an elaborate ontology to classify titles and abstracts, but eventually uses word embeddings &#8211; an uninterpretable way of defining AI statistically &#8211; to approximate AI topic engagement. <a href="https://www.nature.com/articles/s41586-025-09922-y">This study</a> even includes <em>support vector machines, </em>which are hardly more deserving of the &#8220;AI&#8221; label than drawing a line through a scatter plot.</p><p>We take a more concrete approach. Rather than asking about anything which <em>could</em> be AI, we focus more narrowly on scientists using<em> specific existing AI models such as AlexNet, BERT, or GPT-4</em>. These so-called <em>foundation models</em> are <a href="https://en.wikipedia.org/wiki/Deep_learning">deep learning</a> models which required high upfront costs at the time of training (e.g. compute, data, expertise), but are general enough to be (cheaply) reused for a variety of scientific tasks. Our dataset is constructed as follows:</p><ol><li><p>We first curate a list of foundation models, a comprehensive set of their metadata, and the papers which introduced them.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-1" href="#footnote-1" target="_self">1</a> This allows us to track more than the mere presence of AI, including model size, modality, openness, age, institution of origin, and much more.</p></li><li><p>We use <a href="https://www.semanticscholar.org/product/api">academic citation graphs</a> to track which publications cite papers that introduced a foundation model. For each citation, we find the exact context of the citation, while also extracting comprehensive metadata on the citing paper. This provides a more accurate signal for AI engagement than paper abstracts or keywords, while still being compute efficient.</p></li><li><p>Finally, each time a foundation model is cited, we classify the citation context into one of three categories: <em>background</em> (just mentioning the model), <em>usage</em> (taking the model as-is, off the shelf<em>)</em>, and <em>extending</em> (adapting/fine-tuning the model)<em>.</em> This classification is essential when leveraging citation network patterns: counting <em>all citations</em> would <em>overestimate</em> true adoption rates by 141%.</p></li></ol><p>Together, this dataset lets us answer questions about specific patterns of model adoption in unprecedented detail. Which fields are using the largest models? The oldest models? Which fields require the most fine-tuning? Which countries and institutions dominate among adopters?</p><p>In this post, we will focus on differences between <em>scientific domains</em>, and save questions about <em>who</em> is adopting foundation models for later posts. Enough with the methodological minutia, let&#8217;s get to the results!</p><h3><strong>All Fields See Near-Exponential Growth</strong></h3><p>From a bird&#8217;s eye view, we see that the <em>adoption</em><a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-2" href="#footnote-2" target="_self">2</a> of foundation models across all of science has been growing near-exponentially for almost a decade. By 2024, <em>more than 1% of all academic publications adopted a foundation model</em>, with around one-third actively customizing (extending). The share of adopters in the literature has grown <em>more than 33x over the last decade</em>.</p><p>This trend isn&#8217;t restricted to a few strands of the literature either. We see staggering growth across all domains, from Computer Science and Engineering to Linguistics and Psychology. Among these fields, Linguistics (34%) and Computer Science (18%) stand out with the higher adoption rates, perhaps unsurprisingly.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-3" href="#footnote-3" target="_self">3</a> But nearly every field in our analysis reached 1% adoption by 2024 &#8211; domains like History and Sociology included &#8211; highlighting the diverse potential of foundation models across disciplines.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!yZUY!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!yZUY!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg" width="1456" height="500" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:500,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!yZUY!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4dbc9d4f-7a5d-4fd4-be6f-d935a5dfd24a_1600x549.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Many fields with lower adoption rates still show astonishing growth rates. Biology and Chemistry exhibit the fastest growth for model usage (off-the-shelf adoption) with 3-year compound growth rates of 123% and 168%, respectively. Both of these fields also exhibit strong growth in model customization, but Psychology is racing ahead of the pack with a 107% annual growth rate. (See <a href="https://arxiv.org/pdf/2511.21739#page=6">Table 1</a> for a more complete breakdown.)</p><p>This extraordinary growth doesn&#8217;t tell the full story. Scientists are using AI more now than ever before, but <em>which models are they using?</em> When we analyze the properties of models being adopted by researchers, <em>we don&#8217;t find the same story of rapid growth.</em></p><h3><strong>Bigger Does in Fact Mean Better</strong></h3><p>In AI, bigger models are more costly to use. But bigger models are also better models. That&#8217;s not just a rule of thumb: the size of a model (and training dataset) predicts its performance with extraordinary accuracy according to <a href="https://en.wikipedia.org/wiki/Neural_scaling_law">neural scaling laws</a>.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-4" href="#footnote-4" target="_self">4</a> That predictability is great news if you are a frontier lab detonating your longest ever training run. But for compute constrained scientists, scaling laws have a different take home message.</p><p>Neural scaling laws are <em>power laws</em> of compute with <em>very small exponents</em>. These power laws change <em>very, very slowly</em>, such that smaller and smaller performance improvements require <a href="https://ide.mit.edu/wp-content/uploads/2020/09/RBN.Thompson.pdf?x41179">larger and larger models</a>.  A few GPUs might be helpful for running smaller models, but if you need frontier performance, those GPUs may quickly become as useful as a <a href="https://en.wikipedia.org/wiki/TI-84_Plus_series">TI-84</a>.</p><p>Scientists are adopting foundation models more than ever, but given the importance of model size for performance, are those models also getting bigger? We observe that <strong>the size of adopted models is growing, but it&#8217;s growing slowly &#8211; far slower than the size of models being built at the frontier.</strong> In 2013, the median model built was 7.7x larger than the median model adopted. By 2024, that number jumped to 26x. The models adopted by scientists aren&#8217;t keeping pace with exponentially increasing sizes at the frontier.</p><p>Some fields are doing better than others, though. Psychology, Linguistics, and Law lead the pack in 2024 as the only three fields adopting (on average) models with more than 3 billion parameters.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-5" href="#footnote-5" target="_self">5</a> Computer Science sits in the middle, while Materials Science, Environmental Science, and Engineering bring up the rear under 100 million parameters.</p><p>Perhaps fields like Psychology or Law <em>needed</em> LLMs before AI could be of substantial use for most applications, whereas Materials Science or Engineering can still find use in small models at the AlexNet scale. This explanation is supported by the contribution of language models to recent growth in adopted model sizes. From 2022 to 2024, average size of models adopted by scientists increased by 3.9x. But if we restrict adoptions to only language and multimodal models, sizes increase by 5x and 11x, respectively.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!nF_-!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!nF_-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg" width="1456" height="672" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:672,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!nF_-!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf7944ca-c8e2-4929-9b03-0b95c3e8d9cd_1600x738.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>This lag also exists when measuring the <em>age</em> of the models. The average age of models adopted (at the time of use) is at least 3.3 years old across all fields. Linguistics and Law use the newest models (3.3 and 3.8 years old, respectively), which is consistent with the hypothesis presented above. Perhaps surprisingly, Mathematics is far less cutting-edge (5.7 years), despite modern LLMs abilities in <a href="https://deepmind.google/blog/advanced-version-of-gemini-with-deep-think-officially-achieves-gold-medal-standard-at-the-international-mathematical-olympiad/">competitive mathematics</a> and <a href="https://deepmind.google/blog/accelerating-mathematical-and-scientific-discovery-with-gemini-deep-think/">novel research</a>. Though this could be from lagging diffusion, mathematics may also be especially prone to leveraging frontier models <em>without citation</em>. Bringing up the rear is Physics (5.9 years) and Materials Science (6.1 years), straying far from the cutting edge, but consistent with the hypothesis that certain fields can still squeeze value out of older, smaller models.</p><p>Of course, these differences only matter if newer, bigger models translate into better scientific outcomes in practice, not just in theory. And indeed, this is exactly what we find (though only correlationally). On average, since 2020, increasing the size of an adopted foundation model 10x corresponds to 1.3x more citations. That same 10x also corresponds to higher-quality journals, with an average increase of 2.3 points in <a href="https://journalimpact.org/">journal impact factor</a>.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-6" href="#footnote-6" target="_self">6</a></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Erdg!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Erdg!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg" width="1222" height="774" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:774,&quot;width&quot;:1222,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 424w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 848w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 1272w, /__u/substackcdn.com/image/fetch/$s_!Erdg!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F202ec59b-9a49-4f33-9cc8-abea99674e69_1222x774.jpeg 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>We suspect using larger models yields better performance, better research, and therefore better publication outcomes. Of course, it&#8217;s possible the causality could go in the opposite direction: teams that publish the best papers may accrue more computing resources and be free to use larger models. Or there could be some third factor: for example, maybe working in industry leads to both better outcomes and more resources. But in each of these, the correlation we find is still suggestive. Why do researchers with ample compute choose to use bigger models, which still take more time and resources to run? Why would industry allocate precious compute resources to research if it weren&#8217;t necessary for better results?</p><h3><strong>Scientists Are Clearly Compute Constrained</strong></h3><p>Our findings suggest that the best science is done with the biggest models. But bigger models also require more computing power. Sadly, academic science is notably constrained by insufficient computing resources. <em>In fact, the &#8220;compute divide&#8221; between public and private science is growing rapidly.</em></p><p><a href="https://epoch.ai/blog/trends-in-ai-supercomputers">Observing the top 500 AI supercomputers across the world</a>, we see that the share of public ownership has fallen rapidly, from 61% in 2019 to 12% in 2025. Public ownership went from a healthy majority to a miniscule fraction over barely half a decade. Infrastructure investment looks even bleaker. The most notable public sector investment is the NSF&#8217;s recent National Artificial Intelligence Research Resource (NAIRR) pilot program, which by mid-2024 had delivered a <a href="https://cset.georgetown.edu/article/the-nairr-pilot-estimating-compute/">total compute capacity equal to 5,000 H100 GPUs</a>. That&#8217;s a great start, but 5,000 distributed across many universities is missing a few zeros from <a href="https://cset.georgetown.edu/article/the-nairr-pilot-estimating-compute/">top industry counts</a> like Microsoft (150,000), Meta (150,000), Google (50,000), or Amazon (50,000).</p><p>At MIT FutureTech, we&#8217;ve focused on this issue for years. <a href="https://arxiv.org/abs/2401.02452">We directly observed this compute divide</a> by comparing the sizes and shares of foundation models built between industry and academia. <a href="https://www.sciencedirect.com/science/article/pii/S0048733324000866">We&#8217;ve documented</a> that AI-intensive research is more dependent on capital &#8211; like computing resources &#8211; than traditional research (which depends more on human labor). Now this most recent paper shows that <em>AI is becoming a cornerstone of modern science, but outcomes may be compute constrained</em>. We believe that scientific research &#8211; particularly non-proprietary discoveries &#8211; are an essential source of economic growth and progress. To fully reap those benefits, scientists will need enough resources to discover the next generation of breakthroughs.</p><p></p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><p></p><p><em>This post was written by Alex Fogelson. Ana Tri&#353;ovi&#263;, Zachary Brown, Sebastian Sartor, and Neil Thompson provided editorial feedback. Lucy Yan provided logistic support. The authors of the paper are Ana Tri&#353;ovi&#263;, Alex Fogelson, Janakan Sivaloganathan, and Neil Thompson. For correspondence on the paper, please contact <a href="mailto:ana_tris@mit.edu">Ana Tri&#353;ovi&#263;</a> or <a href="mailto:neil_t@mit.edu">Neil Thompson</a>.</em></p><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-1" href="#footnote-anchor-1" class="footnote-number" contenteditable="false" target="_self">1</a><div class="footnote-content"><p>Until recently, state-of-the-art models were almost always introduced in academic publications.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-2" href="#footnote-anchor-2" class="footnote-number" contenteditable="false" target="_self">2</a><div class="footnote-content"><p><em>Adoption</em> is defined as either using or extending a model, not merely citing it as background.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-3" href="#footnote-anchor-3" class="footnote-number" contenteditable="false" target="_self">3</a><div class="footnote-content"><p>Papers can have multiple associated fields. For example, a paper using CNNs to classify stained cell samples would span both Computer Science and Biology. For this reason, adoptions across domains overlap heavily with Computer Science.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-4" href="#footnote-anchor-4" class="footnote-number" contenteditable="false" target="_self">4</a><div class="footnote-content"><p>Bigger is not always <em>economically</em> better, but <em>performance</em> nearly always increases with model size provided you have enough training data.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-5" href="#footnote-anchor-5" class="footnote-number" contenteditable="false" target="_self">5</a><div class="footnote-content"><p>For reference, that&#8217;s 100-1000 times smaller than current state of the art language models.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-6" href="#footnote-anchor-6" class="footnote-number" contenteditable="false" target="_self">6</a><div class="footnote-content"><p>These results hold when including domain and year fixed effects.</p><p></p></div></div>]]></content:encoded></item><item><title><![CDATA[What Model Releases Do and Don’t Tell Us ]]></title><description><![CDATA[Lessons from the FutureTech Economics of AI and Automation Workshop]]></description><link>https://mitfuturetech.substack.com/p/what-model-releases-do-and-dont-tell</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/what-model-releases-do-and-dont-tell</guid><dc:creator><![CDATA[Zachary Brown]]></dc:creator><pubDate>Thu, 05 Feb 2026 13:31:12 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!y8AE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Every month, tens of thousands of AI models are created by frontier labs, scientists, and hobbyists. Some of these model releases become major public news events. In the days after a new model arrives online, timelines fill with demos, hot takes, and confident predictions about &#8220;what this means&#8221; for our jobs, the arts, and the economy in general. Developers rush to test, commentators extrapolate from early benchmarks, and policymakers scan for signals of acceleration or risk. But what actually happens after the headlines fade? How quickly do new capabilities translate into real adoption, automation, and economic impact, and for whom?</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!y8AE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 424w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 848w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 1272w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!y8AE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png" width="727" height="426.41346153846155" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:854,&quot;width&quot;:1456,&quot;resizeWidth&quot;:727,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 424w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 848w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 1272w, /__u/substackcdn.com/image/fetch/$s_!y8AE!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9c9c41e3-b1f3-4c89-a18e-834617ebecd2_1600x939.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Source: Aaron Kaye, Kazimier Smith, and Neil Thompson (2026). Ongoing MIT FutureTech research. Preliminary results.</figcaption></figure></div><p>We recently had the chance to tackle such questions during our workshop on the Economics of AI and Automation. The workshop brought together economists studying what new models reveal about the pace of automation and economic change. Discussion throughout the day examined how firms test and adopt new AI capabilities, how financial markets react to model releases, and how these pieces of information shape our expectations for AI-induced growth and risk. In this post, we&#8217;ll distill a few points from those discussions:</p><ol><li><p>Demand for new models rarely comes from cross-creator substitution (for example: when Anthropic releases Claude Opus 4.5, demand mostly isn&#8217;t drawn from existing Gemini users);</p></li><li><p>Firm automation decisions are driven by the outsized fixed costs of AI;</p></li><li><p>Financial markets are not predicting imminent transformative AI.</p></li></ol><h3>Demand for new models rarely comes from cross-creator substitution</h3><p><a href="http://dx.doi.org/10.3386/w34608">Andrey Fradkin</a> and his coauthors show that markets for language models are dynamic and competitive, with leading models dominating for a few months before being displaced. However, substitution patterns vary across providers and fall into two main types: some models cannibalize incumbents from the same creator, while others expand overall demand. Using data on model downloads and prices on OpenRouter, a platform for AI models, he shows that the release of Claude Sonnet 3.7 (for example) shifted demand sharply away from Claude Sonnet 3.5, an instance of within-creator substitution. But there was little to no contemporaneous decline in demand for competing models from other creators. Other releases, such as Gemini 2.5 Pro and xAI&#8217;s Grok Code Fast 1, show rapid adoption with minimal displacement of other models. This might suggest that these models increased aggregate demand, rather than reallocating existing demand.</p><p>It surprised us to see older models often retain users when newer models come out, even though OpenRouter makes it very seamless to swap models. Perhaps this is an indication that experimentation is expensive, making switching costs larger than they might appear at first glance; or that users have built their applications around a particular model that make switching difficult. Or it could simply be evidence of differentiation in the market for language models.</p><h3>Firm automation decisions are driven by the outsized fixed costs of AI</h3><p>Three papers throughout the workshop tackled the role of fixed costs in the development and impact of AI models. Rebekah Dix and coauthors show that cloud computing technology can turn what was traditionally a high fixed cost into a variable cost. Still, high fixed costs to procure computing infrastructure are still essential for understanding the economics of AI adoption: an MIT FutureTech paper (presented by Danial Lashkari and written with fellow FutureTech members Wensu Li, Neil Thompson and Christina Qiu) argues that fixed costs in many areas slow the pace of automation and shape its resultant impact on the economy. In a third presentation, <a href="http://dx.doi.org/10.2139/ssrn.5010540">Flavio Calvino and Luca Fontanelli</a> confirm that many firms still find it worthwhile to pay the fixed cost of AI development.</p><p>In most technology-intensive industries, firms must pay some sort of fixed cost to get started. For example, a bank aiming to replace its customer service representatives with an AI chatbot must first fine-tune a model on its private data, and procure some quantity of computing infrastructure to serve the chatbot &#8211; both fixed costs that the firm pays up-front. Because firms can only imperfectly predict the future, these up-front investments can generate inefficiencies. If more customers than anticipated use the chatbot, the firm might have difficulty serving the chatbot to all of them with its stock of computing infrastructure. Dix et al. show how on-demand cloud computing providers like AWS solve this problem for the bank. Using cloud computing, it can quickly scale up and down its compute stock to adjust to varying demand. In other words, cloud computing turns a fixed cost into a variable cost.</p><p>But, as Lashkari and coauthors discuss, AI adoption still involves a number steps that incur significant fixed costs. Returning to our example, if only a few customers use a bank&#8217;s chatbot, it may not be worth it for the bank to pay the fixed costs of the fine-tuning process for so little return. The widespread presence of fixed costs such as thislike this one affects which tasks are worthwhile to automate. If a firm only needs to accomplish a few instances of a task, it might not be worthwhile to pay the up-front cost of investment in AI. This mechanism means that some tasks might not be automated even if frontier AI is more efficient than humans on a per-task basis.</p><p>Still, <a href="http://dx.doi.org/10.2139/ssrn.5010540">Calvino and Fontanelli</a> show that many firms do adopt and develop AI despite its fixed cost. They demonstrate clear differences between firms that choose to purchase AI models from external developers (AI buyers), and those that choose to develop them in-house (AI developers). Using detailed survey data from French firms, they show that AI developers tend to be larger firms, but also newer. They also emphasize the role of complementary assets, showing that developers hold stock of IT assets. Speaking directly to the question of fixed costs, Flavio argues that the development of AI systems may involve higher fixed costs than purchasing but that firms which develop their AI tools in-house see a productivity boost from AI. The up-front cost might be high, but it pays off.</p><h3>Markets are not predicting imminent transformative AI</h3><p><a href="https://basilhalperin.com/research.html">Basil Halperin</a> and co-authors argue that long-horizon real interest rates might provide a signal of AI progress. In standard economic models, any meaningful increase in the probability of transformative AI should raise long-term real interest rates by reducing the value of future consumption, regardless of whether AI yields explosive productivity growth or existential catastrophe. Why? The real interest rate is the cost of borrowing resources from the future to spend today. If transformative AI means we are either going to be enjoying the bounty of a plentiful world centered around aligned AI or we are heading to the abyss &#8211; either way &#8211; why wait to consume tomorrow? Carpe diem! Consume more today! In this framework, elevated long run rates would indicate markets pricing in a sharp break from historical growth paths, regardless of whether the anticipated outcome is overwhelmingly positive or negative. Of course, these assumptions assume that markets are informed and pricing risk efficiently.</p><p><a href="https://doi.org/10.3386/w34243">Maryam Farboodi</a>, an MIT FutureTech affiliate, along with her fellow MIT co-author Isaiah Andrews, provided convincing data that, as of September 2025, markets are not acting as though they expect transformative AI to be just around the corner. Studying bond markets around major AI model releases, she finds that long-dated yields consistently fall following announcements. This suggests that, conditional on new information from a release, markets revise beliefs away from transformation rather than toward it. Taken together, these results imply that markets <em>are</em> paying attention to AI progress, but the results also suggest that markets interpret recent releases as <em>lowering </em>growth expectations, (or, following Halperin et al., interpret them as evidence of a reduced likelihood of AI-induced catastrophe). Model announcements appear to shift expectations toward delayed or more modest impact &#8212; a conclusion that stands in contrast to the more dramatic narratives that often dominate in the immediate aftermath of a release.</p><p>Why might markets not be expecting higher growth from AI? One new idea came from <a href="http://dx.doi.org/10.2139/ssrn.5282272">Joshua Gans</a>, who presented a framework examining how AI affects the direction of research. He models AI as an interpolation technology that fills gaps between existing areas of research. The key insight is that AI&#8217;s impact on growth depends on a critical threshold in its capabilities. When AI has modest interpolation range, connecting areas of research that already are &#8220;close together,&#8221; it encourages incremental research that increases the density of knowledge in an area of research, which &#8211; Gans argues &#8211; raises growth in a world where <a href="https://www.aeaweb.org/articles?id=10.1257/aer.20180338">ideas are getting harder to find</a>. But when AI becomes sufficiently capable, it might promote exploratory research that connects far-apart research areas, reducing knowledge density, paradoxically slowing growth in the long-run despite productivity gains in the short-run.</p><h1>Concluding</h1><p>The workshop itself was a great success, and we are grateful to all the presenters and participants who contributed to such a rich set of discussions. A fascinating set of seven talks by  Rebekah Dix, <a href="http://dx.doi.org/10.2139/ssrn.5010540">Flavio Calvino</a>, <a href="http://dx.doi.org/10.3386/w34243">Maryam Farboodi</a>, <a href="http://dx.doi.org/10.3386/w34608">Andrey Fradkin</a>, <a href="https://basilhalperin.com/research.html">Basil Halperin</a>, <a href="http://dx.doi.org/10.2139/ssrn.5282272">Joshua Gans</a> and Danial Lashkari highlighted how much progress has been made in understanding AI adoption from both macro and micro perspectives, and also how much remains an open question.</p><p>Building on this momentum, MIT FutureTech has more research in the pipeline on related topics. For instance, an upcoming paper, &#8220;The Birth, Life, and Death of Models&#8221;, describes what happens when a model is released, how it is used throughout its &#8220;life&#8221;, and how it eventually fades away from economic relevance. That is not all for this academic year: we will be hosting another round of our Economics of AI and Automation workshop in the spring, continuing the conversation as both the technology and the evidence evolve.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><p><em>Joseph Emmens, Kazimier Smith, Zach Brown, and Won-Jae Chang wrote this post. Aaron Kaye, Alex Fogelson, Sebastian Sartor, Zach Brown, and Neil Thompson provided editorial support. Lucy Yan provided logistical support.</em></p>]]></content:encoded></item><item><title><![CDATA[On the Origin of Algorithmic Progress in AI]]></title><description><![CDATA[Insights from our new paper on the scale-dependence of algorithmic progress.]]></description><link>https://mitfuturetech.substack.com/p/on-the-origins-of-algorithmic-progress</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/on-the-origins-of-algorithmic-progress</guid><dc:creator><![CDATA[Alex Fogelson]]></dc:creator><pubDate>Thu, 08 Jan 2026 15:15:33 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/c01e2f7e-4c44-4b8f-ad46-b3be09cc3987_1474x746.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>The world&#8217;s best AI researchers have been paid <a href="https://www.wsj.com/tech/ai/the-fight-for-ai-talent-pay-million-dollar-packages-and-buy-whole-teams-c370de2b">millions of dollars</a> for their expertise. How much do their research breakthroughs impact AI progress compared to building <a href="https://www.businessinsider.com/big-tech-ai-data-center-spending-construction-map-2025-8?op=1">bigger, more powerful datacenters</a>? Our new paper titled <em><a href="https://arxiv.org/abs/2511.21622">On the Origin of Algorithmic Progress in AI</a>  </em>suggests that the literature <em>overestimates</em> the role of algorithmic breakthroughs and <em>underestimates</em> the role of increased computing resources.</p><p>The sources of progress in AI capabilities are typically broken down into three distinct components:</p><ul><li><p><strong>Compute scaling</strong> counts the raw number of mathematical operations, or FLOPs, performed during model training. More FLOPs mean <a href="https://arxiv.org/abs/2007.05558">better performance</a>. You can perform more total operations when you (1) have more total hardware or (2) run that hardware for longer.</p></li><li><p><strong>Hardware efficiency</strong> quantifies the costs of each operation in monetary, energy, or time units. Better hardware efficiency implies more FLOPs can be performed for the same number of dollars, joules, or days.</p></li><li><p><strong>Algorithmic efficiency</strong> encompasses the cleverness of the training procedure, quantifying the performance &#8220;bang&#8221; for each FLOP &#8220;buck.&#8221; Better algorithmic efficiency means you can achieve the same model performance while using fewer operations.</p></li></ul><p>Typically, each of these components is treated as orthogonal to the others, such that improvements can be evaluated independently between sources of progress. For example, hardware efficiency (in FLOPs per dollar) improved 45x between 2013 and 2024. Because compute scale and hardware efficiency are considered independent, you can expect your hardware efficiency gains to be roughly that same 45x regardless of whether you have 10 GPUs or 10,000.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-1" href="#footnote-1" target="_self">1</a></p><p>Traditionally, algorithmic efficiency is <em>also</em> thought to be independent of compute scale. Whether you have 10<sup>15</sup> FLOPs or 10<sup>25</sup> FLOPs, the literature assumes that when researchers discover better training techniques, applying these algorithmic improvements should always yield the same multiplicative efficiency improvements &#8211; regardless of compute scale (e.g. 10x less compute at 10<sup>15</sup> FLOPs and 10<sup>25</sup> FLOPs alike). But is this a safe assumption?</p><p>Our new paper provides strong experimental evidence against this view. We find that<strong> </strong>algorithmic efficiency is compute scale-dependent: <strong>some algorithms provide increasing &#8211; not constant &#8211; efficiency returns to scale. We estimate that from 2012 to 2025, as much as 91% of efficiency gains depend on (historically exponential) compute scaling, meaning that if compute scaling had not occurred, algorithmic innovations alone would yield less than 10% of the efficiency improvements we measure today.</strong></p><p>Our paper further examines the downstream implications of these findings while laying the theoretical foundations for analyzing algorithmic progress in light of this scale-dependence. In this post, we&#8217;ll cover:</p><ol><li><p>How to quantify algorithmic progress in AI;</p></li><li><p>The stunning role of scale-dependence in this progress, as revealed by our experiments;</p></li><li><p>What questions remain to inform future research.</p></li></ol><h2>How do we quantify algorithmic progress in AI pre-training?</h2><p>If you are familiar with the notion of an algorithm&#8217;s <em>time-complexity</em>, you&#8217;ve probably heard of Big-O notation, which gives us a concise language for capturing the asymptotic features of classical algorithms. Stating an algorithm has complexity <em>O(n<sup>2</sup>)</em> means you&#8217;ll need <em>something like</em> &#8220;the square of the input size&#8221; steps before terminating. Specifically, this notation is ideal when we care about runtime across<em> varying input sizes,</em> not the precise number of steps.</p><p>For AI algorithms, we need a different framework for comparison. Unlike traditional algorithms, in machine learning, a training algorithm doesn&#8217;t produce a correct answer from a fixed-size input. Instead, it utilizes some quantity of FLOPs to output a model with a given performance level. The relationship between FLOPs and performance are known as <em>neural scaling laws</em>, and they will help us define a framework for measuring algorithmic efficiency in machine learning. To help illustrate, we&#8217;ll call on our ever-reliable friends Alice and Bob.</p><p>Imagine Alice and Bob have two different training algorithms. Bob is given some fixed compute budget of 10<sup>20</sup> FLOPs to use with his algorithm, and creates a model with some performance level. To analyze the efficiency improvements from Alice&#8217;s algorithm (or lack thereof), we can ask &#8220;how much more/less compute would Alice&#8217;s scaling law require to reach the same level of performance that Bob&#8217;s model achieved with 10<sup>20</sup> FLOPs?&#8221; Perhaps Alice has a better algorithm which only needs 10<sup>19</sup> FLOPs to reach performance parity with Bob&#8217;s model. In this case, we would say Alice&#8217;s algorithm achieves a <strong>10x compute-equivalent gain (CEG)</strong> <em>relative to Bob&#8217;s 10<sup>20</sup> FLOPs model</em>.</p><p>In the existing literature, <a href="https://arxiv.org/abs/2403.05812">including work from our lab</a>, this CEG multiplier of 10x is assumed to hold no matter Bob&#8217;s compute budgets. We would assume, for example, that if Bob trained a 10<sup>25</sup> FLOPs model, it would match Alice&#8217;s 10<sup>24</sup> FLOPs model in performance. <em>But in our paper, we show empirically that&#8211;just like the time complexity of a classical algorithm&#8211;the efficiency gain from an algorithmic innovation may depend on the compute scale. </em>For example, it&#8217;s possible that when Bob uses 10<sup>15</sup> FLOPs, Alice&#8217;s algorithm uses 10x less compute (10<sup>14</sup> FLOPs) to reach performance parity; but when Bob uses 10<sup>20</sup> FLOPs, Alice can get away with using 100x less (only 10<sup>18  </sup>instead of 10<sup>19  </sup>FLOPs). <strong>Efficiency gains are compute scale-dependent.</strong></p><p>Using an expanded framework which allows for this scale-dependence, our paper further breaks down the algorithmic innovations of the past decade into those which do and don&#8217;t depend on compute scale &#8211; and quantifies how much each matters. We show that most progress has indeed come from <em>steadily</em> <em>increasing compute budgets,</em> which makes Alice&#8217;s algorithm <em>appear to be more and more efficient</em> by comparison to Bob&#8217;s. This is in contrast to the dominant view in the literature, where progress comes from <em>steady</em> <em>innovations</em> in Alice&#8217;s algorithm.</p><p>In the next section, we&#8217;ll outline the empirical results and methods that lead to this finding.</p><h2>Scale-dependence (and a lot of compute) is all you need!</h2><p>To rigorously test the efficiency gains from different algorithmic innovations, we use validation loss as our performance metric, which measures how well the model approximates the training data&#8217;s distribution. We ran two kinds of experiments: ablation experiments and scaling experiments.</p><ul><li><p><strong>Ablation experiments</strong> surgically remove targeted innovations from the training algorithms to measure their performance contributions. This isolates the role of specific algorithms.</p></li><li><p><strong>Scaling experiments </strong>measure performance for different algorithms across different compute scales, deriving <em>scaling laws</em> in the process. This isolates the role of compute scale for a particular training algorithm.</p></li></ul><p>Most of the algorithms we tested (e.g. optimizers, normalization, encodings) were <em>scale-invariant</em> changes. That is, they improved efficiency by a constant factor regardless of the size of the model trained. How do we know this? We tested a cluster of algorithms over a range of compute scales.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-2" href="#footnote-2" target="_self">2</a> When removing all of these algorithms at once, the change detected in our scaling law was the same percentage of compute across all compute scales.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-3" href="#footnote-3" target="_self">3</a> This provides strong evidence that these changes individually have scale-invariant efficiency improvements.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-4" href="#footnote-4" target="_self">4</a></p><p>However, two of the innovations we explored were strongly <em>scale-dependent:</em></p><ol><li><p>the transition from LSTM to Transformer architectures, and</p></li><li><p>the transition to Chinchilla-optimal scaling.</p></li></ol><p>These innovations represented the overwhelming share of net efficiency improvements. Running scaling experiments between LSTMs and Transformer separately, we show that this architecture switch has scale-dependent efficiency improvements.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-5" href="#footnote-5" target="_self">5</a> As the compute budget for the LSTM increases, the potential <em>compute savings</em> of switching to a Transformer get larger and larger.</p><p>We also analytically explored changes in data-parameter balancing: when training large models, an inevitable tradeoff between the <em>model size </em>and the <em>dataset size</em> determines the total compute cost. Over time, our understanding of the optimal balance has improved. <a href="https://arxiv.org/abs/2001.08361">Kaplan et al.</a> recommended tilting more heavily towards parameters, while later work from <a href="https://arxiv.org/abs/2203.15556">Hoffman et al.</a> (known as &#8220;Chinchilla scaling&#8221;) advocated for a more balanced approach. We show that switching from Kaplan&#8217;s once state-of-the-art recommendation to the Chinchilla scaling yields increasing efficiency returns with compute scale. In other words, the cost of balancing incorrectly gets worse and worse with more compute.</p><p>Although our experiments are done at small scales, we can extrapolate our findings to estimate the efficiency improvements across larger compute budgets. <a href="https://epoch.ai/data/ai-models">Research done by Epoch AI</a> suggests that frontier compute levels have followed a pretty smooth exponential growth trend over time. Using these estimates, we create a detailed image of efficiency improvements over historical compute scales:</p><ol><li><p>We recover 6,930x of the 22,000x improvement in algorithmic progress estimated by <a href="https://arxiv.org/abs/2403.05812">our previous paper with Epoch AI</a> from 2012 through 2023. Though naively it may seem like we only capture one-third of total algorithmic progress, leaving 3x out of 22,000x unaccounted for means we account for more than 88% of total multiplicative efficiency gains.</p></li><li><p>We find that at 2025 frontier compute levels, 91% of measured algorithmic progress came from <em>scale-dependent</em> innovations. These gains <strong>would not have been reaped without increasing compute budgets</strong>, meaning models trained with less compute have seen less than 10% of this efficiency improvement.</p></li></ol><p>Below you can see the precise breakdown of progress decomposed into specific innovations. The innovations are depicted starting when they were discovered, and the compute scale is determined by the trend of notable models in that year. The scale-invariant changes, despite their quantity, represent a small fraction of the efficiency gains by 2025. The large blue region represents the switch to Transformers, while the lighter red region represents Chinchilla rebalancing.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!4anj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 424w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 848w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 1272w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!4anj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png" width="1456" height="409" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:409,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 424w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 848w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 1272w, /__u/substackcdn.com/image/fetch/$s_!4anj!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4fa46ba4-0c73-4452-b5ac-8d06ff00ed31_2048x575.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Stylized breakdown of efficiency gains over historical compute scales (with respect to LSTMs). Most gains come from the switch to Kaplan balanced Transformers and subsequent Chinchilla rebalancing, which both exhibit strong scale-dependence.</figcaption></figure></div><p>If models trained with less compute aren&#8217;t getting the same benefits, that has implications for the environment, science, and society more broadly. Smaller models <a href="https://arxiv.org/html/2510.01889">use orders of magnitude less energy</a>, and therefore fewer emissions.<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-6" href="#footnote-6" target="_self">6</a> Smaller foundation models are the <a href="https://arxiv.org/pdf/2511.21739">dominant option for scientific methodologies</a> across disciplines. Smaller models are essential for <a href="https://www.edps.europa.eu/data-protection/technology-monitoring/techsonar/device-artificial-intelligence_en">private, local AI on personal devices</a>. The figure below highlights the stark differences in efficiency gains across model compute scales. Models trained with 10<sup>16</sup> FLOPs see less than 30x efficiency gains, while models trained with 10<sup>24</sup> FLOPs reap more than 20,000x improvement! These are implications we hope to explore in future research.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="/__u/substackcdn.com/image/fetch/$s_!Mq6x!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="/__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 424w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 848w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_webp, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 1456w" sizes="100vw"><img src="/__u/substackcdn.com/image/fetch/$s_!Mq6x!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png" width="1456" height="410" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:410,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="/__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_424, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 424w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_848, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 848w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_1272, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 1272w, /__u/substackcdn.com/image/fetch/$s_!Mq6x!, /__u/mitfuturetech.substack.com/w_1456, /__u/mitfuturetech.substack.com/c_limit, /__u/mitfuturetech.substack.com/f_auto, /__u/mitfuturetech.substack.com/q_auto:good, /__u/mitfuturetech.substack.com/fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd1d7d57b-37c4-42a8-9140-c61bdd397dd0_2048x577.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Efficiency gains by pre-training compute. Despite leveraging the same advancements, larger models reap dramatically more compute savings.</figcaption></figure></div><h2>How could we improve measures of algorithmic progress?</h2><p>The framework we&#8217;ve proposed is an extension of the CEG framework from the existing literature. However, the notion of a compute equivalent gain admits two important limitations, both of which point to important future research on how we conceptualize algorithmic progress. In particular, CEG is (1) highly <em>reference frame-dependent</em> and (2) relies on choosing the right model <em>performance metric</em>.</p><h4>Reference-Frame Dependence</h4><p>Reference-frame dependence is a counterintuitive property that we elucidate in depth in the paper, and which only arises when efficiency improvements are scale-dependent. Importantly, this phenomenon does not occur for the kinds of efficiencies people usually reason about in everyday life, which are scale-independent.</p><p>To see the contrast, consider a familiar case where scale dependence is absent. Suppose you buy a new iPhone 16 and are told its battery efficiency is 10x better than the first iPhone. Then you hear that the iPhone 17 is 100x more efficient than the first iPhone. In that setting, it would be perfectly reasonable&#8212;and indeed unavoidable&#8212;to conclude that the iPhone 17 is about 10x more battery-efficient than the iPhone 16. Battery efficiency improvements compose transitively and can be compared without worrying about reference frames.</p><p>Algorithmic efficiency, as measured by compute-equivalent gains (CEGs), behaves differently when improvements are scale-dependent. In particular, it is possible to have a sequence of models trained with steadily increasing compute (e.g. progressively larger, otherwise unchanged Transformer models) where each model is no more compute-efficient than the previous one. Yet relative to a <em>different</em> reference algorithm, such as an LSTM, the same sequence can appear to exhibit continual efficiency gains.<em> </em><strong>In this case, nothing about the training algorithm itself has improved; instead, increasing compute moves the model along a scaling curve where the gap to the reference algorithm&#8217;s scaling curve grows.</strong></p><p>This creates the appearance of algorithmic progress without new innovations. Without explicitly running scaling and ablation experiments of the sort we do in the paper, simply observing improved performance at larger scales can lead the CEG framework to attribute efficiency gains to &#8220;algorithmic progress&#8221; that are in fact inherited from scale-dependent properties of earlier innovations.</p><h4>Performance Metrics</h4><p>When measuring model performance, we use <a href="https://en.wikipedia.org/wiki/Cross-entropy">cross-entropy loss</a> as our metric, which is standard in the scaling law literature. It tells you how good your prediction is relative to the true data distribution. This subtly makes our performance metric &#8220;how well does my model fit the training data?&#8221; Algorithmic progress, however, encompasses more than the fitness of the model to the data.</p><p>Modern chatbots, for example, don&#8217;t want to approximate the exact pre-training distribution. Through reinforcement learning, large language models subtly augment their output distribution to mimic <a href="https://arxiv.org/pdf/2109.01652">instruction following</a>, <a href="https://arxiv.org/pdf/1706.03741">obey safety guardrails</a>, or <a href="https://arxiv.org/abs/2501.12948">emphasize chain-of-thought reasoning</a>. Measuring performance in those domains is less straightforward, and is not well captured by the CEG framework without a clearly defined benchmark or fitness metric.</p><p>Moreover, many recent algorithmic innovations haven&#8217;t focused on pre-training at all. Instead, <a href="https://epoch.ai/data-insights/openai-compute-spend">a large chunk of computing costs come from serving models</a>, making the cost of inference also economically important. Lots of innovations focus on improving efficiency after the model is trained, with techniques like <a href="https://arxiv.org/abs/2502.08606">distillation</a> and <a href="https://developer.nvidia.com/blog/model-quantization-concepts-methods-and-why-it-matters/">quantization</a> targeting runtime efficiency and performance tradeoffs. (<a href="https://www.arxiv.org/abs/2511.23455">See here</a> for some recent work from our lab on the pace of progress in these areas.)</p><h2>Wrapping up</h2><p>At MIT FutureTech, algorithmic progress has been a pillar of our research for many years, well beyond algorithms for machine learning. We&#8217;ve built the <a href="https://algorithm-wiki.csail.mit.edu/wiki/Main_Page">world&#8217;s largest database of algorithms</a>, created a <a href="https://arxiv.org/abs/2310.15505">framework</a> and a <a href="https://arxiv.org/abs/2508.21031">tool</a> for assessing the advantage of quantum algorithms, applied this tool to <a href="https://scholar.google.com/citations?view_op=view_citation&amp;hl=en&amp;user=yjttFw4AAAAJ&amp;sortby=pubdate&amp;citation_for_view=yjttFw4AAAAJ:ZHo1McVdvXMC">chemistry</a> and <a href="https://scholar.google.com/citations?view_op=view_citation&amp;hl=en&amp;user=yjttFw4AAAAJ&amp;sortby=pubdate&amp;citation_for_view=yjttFw4AAAAJ:a0OBvERweLwC">deep learning</a>, and estimated the rate of <a href="https://futuretech.mit.edu/publication/algorithmic-progress-in-language-models">progress in large language models</a>. <em>Across each of these domains, analyzing progress requires leveraging the right framework to clearly capture the salient innovations of different kinds of algorithms.</em></p><p>Broadly speaking, we think analyzing algorithmic efficiency is a multifaceted problem which still requires new ideas and frameworks to properly capture. Models perform across many axes and their costs are multidimensional. To fully capture the efficiency of a model, we need better ways of measuring capabilities, training inputs, and pre-training/inference tradeoffs.</p><p><br>You can read the paper <a href="https://arxiv.org/abs/2007.05558">here</a>. Stay subscribed to Mixture of Experts to get the latest updates about these research questions.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><div><hr></div><p><em>This post was written by Alex Fogelson. Zachary Brown, Sebastian Sartor, Lucy Yan, Hans Gundlach, and Neil Thompson provided editorial feedback. The authors of the paper are Hans Gundlach, Alex Fogelson, Jayson Lynch, Ana Tri&#353;ovi&#263;, Jonathan Rosenfeld, Anmol Sandhu, and Neil Thompson. For correspondence on the paper, please contact <a href="mailto:hansgund@mit.edu">Hans Gundlach</a> or <a href="mailto:neil_t@mit.edu">Neil Thompson</a>.</em></p><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-1" href="#footnote-anchor-1" class="footnote-number" contenteditable="false" target="_self">1</a><div class="footnote-content"><p>In practice, coordinating between GPUs involves other kinds of computational overhead, but the efficiency of the floating point operations would stay the same.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-2" href="#footnote-anchor-2" class="footnote-number" contenteditable="false" target="_self">2</a><div class="footnote-content"><p>About 10<sup>13</sup> through 10<sup>18</sup> FLOPs.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-3" href="#footnote-anchor-3" class="footnote-number" contenteditable="false" target="_self">3</a><div class="footnote-content"><p>Both scaling laws we find are of the form <em>L = AC<sup>a</sup></em>, where <em>C</em> is pre-training compute, <em>L</em> is the loss, and both <em>A</em> and <em>a</em> are constants. Our ablation experiment changed the value of <em>A</em>, the multiplicative constant, to some greater <em>A&#8217;</em>, but left the exponent unchanged. Thus no matter the compute scale, ablating the cluster of algorithms implies a compute multiplier of <em>(A&#8217;/A)<sup>1/a</sup></em>.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-4" href="#footnote-anchor-4" class="footnote-number" contenteditable="false" target="_self">4</a><div class="footnote-content"><p>Our paper also breaks down the distribution of efficiency gains for each innovation individually, as well as their interaction effects.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-5" href="#footnote-anchor-5" class="footnote-number" contenteditable="false" target="_self">5</a><div class="footnote-content"><p>This presents as an exponent shift in the scaling law. Earlier we showed that a mere multiplicative change yields a multiplier of (A&#8217;/A)<sup>(1/a)</sup>. If the exponent shifts from <em>a</em> to <em>a&#8217;</em>, the result is a compute multiplier of the form <em>(A&#8217;/A)<sup>(1/a)</sup> C<sup>(a&#8217;/a - 1)</sup></em>, which is no longer constant and increases with compute scale.</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-6" href="#footnote-anchor-6" class="footnote-number" contenteditable="false" target="_self">6</a><div class="footnote-content"><p>Smaller models are often trained with less compute, though techniques like distillation make this analysis less straightforward. The next section discusses this briefly.</p><p></p></div></div>]]></content:encoded></item><item><title><![CDATA[“How fast will AI automation happen?” Reflections on the FutureTech conference]]></title><description><![CDATA[An overview of some key insights from the 2025 FutureTech conference.]]></description><link>https://mitfuturetech.substack.com/p/how-fast-will-ai-automation-happen</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/how-fast-will-ai-automation-happen</guid><dc:creator><![CDATA[Zachary Brown]]></dc:creator><pubDate>Mon, 17 Nov 2025 23:36:33 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/03791603-6ae0-4052-bc1b-3705044c8488_1747x1051.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><em>&#8220;I am nervous because, in just a few years, artificial intelligence will be smarter and more efficient than humans.&#8221;</em></p><p>That&#8217;s what Audrey, a high school student from New York (with, apparently, quite short timelines), <a href="https://www.nytimes.com/2025/02/27/learning/what-students-are-saying-about-ai-and-the-future-of-work.html">wrote in to the </a><em><a href="https://www.nytimes.com/2025/02/27/learning/what-students-are-saying-about-ai-and-the-future-of-work.html">New York Times</a> </em>in February. She went on:</p><blockquote><p><em>&#8220;Employers in the future will be more likely to choose robots that work full time, don&#8217;t take lunch breaks, are almost always right, and don&#8217;t need to be paid, over humans who need to be paid, require breaks, complain, and sometimes make errors in their work. I am fearful that by the time I go to college and am ready to start a real job, there will be nowhere for me to work [...] I need to do my research and go into a field that is not vulnerable to automation.&#8221;</em></p></blockquote><p>Meanwhile Robert, a student at West Chicago High School, is more sanguine:</p><blockquote><p><em>&#8220;In the past, major advancements like the Industrial Revolution or the rise of computers disrupted employment, yet new opportunities followed. While some jobs will vanish due to AI, this shift will likely create new roles and industries. The real challenge isn&#8217;t avoiding change &#8212; it&#8217;s adapting to it like we always have.&#8221;</em></p></blockquote><p>Similar conversations are ripping through schools, board rooms, research labs, and government offices around the world. Will AI automation happen quickly or slowly? What forces will govern the transition? Will AI augment or displace human labor? And what will the consequences be: for the economy, for scientific progress, and for Audrey and Robert?</p><p>Audrey, perceptively, cited the importance of research. At the MIT FutureTech conference in October, entitled <em>How Fast Will AI Automation Happen?</em>, we brought together some of the leading figures studying AI development, the economics of AI, and AI applications to discuss these topics. This post highlights a selection of ideas presenters raised. It&#8217;s not a full summary of each talk, just connections we found interesting. We&#8217;ve loosely organized the post around three themes:</p><ol><li><p>Technical and economic constraints to AI-fueled explosive growth,</p></li><li><p>AI adoption and the labor market, and</p></li><li><p>AI automation in science.</p></li></ol><p>We&#8217;ll take these in turn. YouTube links to the talks are included throughout.</p><h1>Technical and economic constraints to AI-fueled explosive growth</h1><p>The rate and nature of economic growth from AI depends, of course, on the pace of AI capability improvements. Many speakers referenced the astonishing progress language models have made on benchmarks, such as <a href="https://metr.org/blog/2025-03-19-measuring-ai-ability-to-complete-long-tasks/">METR&#8217;s time horizon benchmark</a>, a particularly impressive example. But, in many cases, speakers also tempered expectations of rapid improvement.</p><p>For one thing, the potential for capabilities improvements often varies by domain and type of AI model. In some cases, there may be room for AI to strongly outperform humans, but in other domains, we may already be close to optimal performance. MIT FutureTech&#8217;s Neil Thompson gave the example of AlphaChip, a Google AI tool that helps optimize its semiconductor designs. The latest generation of AlphaChip <a href="https://www.ctol.digital/news/ai-architect-google-alphachip-revolutionizes-chip-design/">achieved a 6.2% improvement</a> over their baseline performance, an impressive but relatively modest improvement. By contrast, Google was able to achieve a <a href="https://deepmind.google/blog/deepmind-ai-reduces-google-data-centre-cooling-bill-by-40/">40% reduction</a> in datacenter cooling costs using machine learning many years early, a far more substantial reduction.</p><p>What should we make of progress in language models and general purpose AI? <a href="https://www.youtube.com/watch?v=O0H1-omYMGA">Gary Marcus</a>, characteristically skeptical, argued that large language models still possess significant limitations. While capable at tasks within their training distribution, Marcus suggests they cannot effectively generalize beyond the data they have seen. He also notes that they continue to suffer from decades-old problems, like <strong>hallucinations, poor planning skill, and inconsistent world models</strong>. While benchmark performance has been impressive, <a href="https://arxiv.org/html/2508.11847v1">Tamara Broderick</a> questioned whether commonly-used metrics of AI capabilities are robustly capturing what we care about, pointing out <strong>that some widely-discussed LLM leaderboard rankings</strong> are extremely sensitive to a few data points. <a href="https://youtu.be/e5JORSnXRU8">Anna Li</a> highlighted that memory miniaturization already hit a scaling wall many years ago, and continued scaling of LLMs for long-context tasks risks becoming bottlenecked by high bandwidth memory constraints. She argued that we will need <strong>algorithmic improvements, such as quantization and RL, which reduce the memory footprint</strong> without relying on hardware advances.</p><p>One much discussed potential issue with widespread AI use is the energy and climate cost of training and running models. Elsa Olivetti walked us through the basic climate economics of AI use, demonstrating that a dramatic increase in AI use would need to either increase its share of energy consumption (already 4.4% in the US as of 2023), bidding up the price for all uses, or expand power production (as many frontier companies plan to<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-1" href="#footnote-1" target="_self">1</a>). In addition to the climate burden from energy use, producing the GPUs themselves leaves a large carbon footprint &#8211; Olivetti told us this was about 320kg of CO2e per GPU. Whether this factor constrains AI datacenter build-outs or AI induced growth, though, may depend on policy responses.</p><p>Beyond technical bottlenecks, economic bottlenecks could constrain the impacts of AI. One of Ben Jones&#8217;s slides stuck with us: <strong>over the last fifty years, computing power has improved by a factor of something like a </strong><em><strong>hundred thousand trillions</strong>. </em>Yet despite the deep integration of computing technology across the economy, <strong>the total size of the economy has only grown by a factor of about three</strong>. In economic parlance, there are tasks or production processes which are complementary to automated sectors, but which themselves are not feasible to automate. Even if dramatic efficiency improvements in automated sectors mean hugely expanding the production of some goods, the sectors that do not see efficiency improvements may constrain total output. In her talk, Beena Ammanath described some of these bottlenecks in business contexts, further <strong>emphasizing the practical difficulties of fully integrating AI.</strong></p><h1>AI adoption and the labor market</h1><p>Even if AI capabilities progress is rapid, it can take time for AI to become integrated into production processes<a class="footnote-anchor" data-component-name="FootnoteAnchorToDOM" id="footnote-anchor-2" href="#footnote-2" target="_self">2</a>, and measuring adoption during this transition can be challenging. How can we best understand the current role of AI in the workforce? And as AI diffuses, how should we expect automation to impact labor and wages?</p><p><a href="https://youtu.be/7XhGWQRCcwE">Kristina McElharan</a> showed empirical data on AI adoption <em>pre-ChatGPT</em>, finding that only about <em>six percent</em> of firms used machine learning anywhere in their production process. Yet this figure is much higher for large firms: in her sample, 62% of large firms were using machine learning somewhere in their business. Together, these figures highlight two important points: <strong>AI adoption can be slow and heterogenous, and measuring the rate of adoption depends on methodological choices.</strong> Going forward, we&#8217;re taking this as a reminder to scrutinize AI adoption statistics: what was the sample, and what precisely was measured?</p><p>In another talk, <a href="https://youtu.be/0nV_mmzhNgA">David Deming</a> presented results from a more recent sample weighted to be representative of the American public according to the US Current Population Survey. <strong>Deming and his coauthors find that AI adoption is quite impressive, with about <a href="https://www.nber.org/system/files/working_papers/w32966/w32966.pdf">40% of workers</a> responding that they used generative AI tools like ChatGPT in the past week, either at work or at home, and about 27% used AI at work specifically.</strong> Deming and his coauthors also polled workers on the time savings they attribute to generative AI, finding that each hour spent using generative AI increases a worker&#8217;s productivity by about 33%. Given current usage rates, this implies that generative AI tools could be boosting US productivity by as much as two percent. In <a href="https://www.nber.org/papers/w34255">another study</a>, he and his coauthors examine ChatGPT usage data from OpenAI, finding that usage rates have been increasing over time not only from new AI adopters, but from more intense usage of ChatGPT by existing adopters.</p><p>Several speakers mentioned the &#8220;shadow&#8221; use of AI &#8211; AI used by workers informally, and perhaps without the knowledge of managers. This could explain why the numbers Deming and his coauthors find when surveying <em>individuals</em> is more than most of the numbers McElharan and coauthors find when surveying <em>firms</em>. Indeed Deming finds some evidence for this phenomenon: among users on the consumer plan (not even the enterprise plan) about a third of messages seem to be related to work tasks. Importantly, this shadow deployment may not take full advantage of the AI productivity gains from coordinated, firm-wide deployment.</p><p>In another talk, <a href="https://www.youtube.com/watch?v=KJlcNBbxGOQ">Frank Nagle</a> suggested that the presence of <strong>cheap, open-source models can make AI more attractive to adopt and help AI diffuse more quickly</strong>. He showed that the gap between open and closed model capabilities is narrowing quickly: while it used to take open models about between ten and forty weeks or so to catch up to closed-model performance, recently the gap has shrunk to ~between ten and fifteen weeks. Nagle also presented evidence that AI inference costs have gone down dramatically. Leveraging this data, he hypothesized that open-source models have effectively capped the price of closed-source models, which have seen cheaper inference costs despite increasing capabilities. (These declining inference costs not only increase the pace of adoption, but also reduce the cost of test-time compute scaling and of automating AI research, either of which could accelerate AI capabilities.)</p><p>Altogether, the speakers presented a mixed view of AI adoption rates: AI adoption is increasing, and its pace is impressive compared to past technologies, but adoption is not uniform. Nor is it always clear that AI is being implemented in a meaningful and deliberate way by firms. But one might naturally ask: if AI adoption is pervasive enough to automate a large number of worker tasks, how will that affect workers?</p><p>Traditional models of automation assume that the first-order effects of automation are bad for workers: when a job&#8217;s task is automated, there will be less employment in that job and lower wages for workers who perform it. Countervailing effects may occur as the economy adjusts, such as an expansion of output leading to increased demand for workers (an instance of &#8220;Jevons Paradox&#8221;). And workers who lose their jobs to automation (or some of their job tasks) can sometimes move into new, higher paying roles &#8211; maybe even ones that are created by the automating technology in the first place. Still, these adjustments are second order consequences of automation.</p><p>However, <a href="https://youtu.be/OIDJGQysjGM">David Autor</a> presented a more nuanced picture in a presentation on his recent paper &#8220;<a href="https://www.nber.org/papers/w33941">Expertise</a>&#8221; (written with MIT FutureTech&#8217;s Neil Thompson with research assistance from FutureTech&#8217;s Lucy Hampton). To understand the argument, suppose jobs are made up of a bundle of different tasks, each requiring different levels of expertise. When automation occurs, it affects jobs differently depending on the relative expertise of a task within an occupation. If <em>more</em> expert tasks are automated, the job becomes <em>less</em> specialized overall, increasing the supply of eligible workers and therefore lowering wages. However, if <em>less</em> expert tasks are automated, the job becomes <em>more</em> specialized, and wages increase. Automation is therefore context dependent, and automating the same task can have different impacts on different occupations.</p><h1>AI automation in science</h1><p>Full automation of scientific research and development would be transformative, likely leading to substantial increases in the rate of economic growth. This is because science is a durable source of economic growth ordinarily; when automated, the returns to science could be continually reinvested into more AIs doing science. Indeed, <a href="https://www.nber.org/system/files/working_papers/w23928/w23928.pdf">Ben Jones has argued</a> that, while automating ordinary production of goods can lead to a &#8220;Type I&#8221; growth explosion, where growth rates increase without bound but remain finite at any timepoint, only automating the production of ideas can lead to a &#8220;Type II&#8221; growth explosion &#8211; a singularity &#8211; where models show the economy achieving infinite output in finite time.</p><p>So, given the potential transformative impact of automating science: what does AI automation in science look like today? Several of our speakers discussed the integration of AI into existing scientific research practice. For instance, <a href="https://youtu.be/vewEdCKQJPA">Karianne Bergen</a> spoke about AI use in the earth sciences. Here, <strong>machine learning models can &#8220;emulate&#8221; computationally expensive models of complex earth systems</strong>, like weather systems, predicting the output of the expensive model. This reduces time and cost for downstream researchers. <a href="https://youtu.be/NDYIRGWAtZM">Shantanu Singh</a> discussed efforts to automate and scale research in medicine and lab sciences. For example, in drug testing, <strong>AI models can be trained to identify phenotypic features of healthy and diseased cells</strong>, automating the detection of phenotypic markers from treated cells and allowing researchers to test many candidate molecules or doses simultaneously. He also emphasized that AI coding assistants and agents can prove useful in a wide range of research tasks, especially in data analysis. Patrick Ruch discussed the use of AI tools in<strong> scientific documentation and in research, including materials science, chemistry, and algorithms.</strong> <a href="https://youtu.be/Y0QXR09XgI0">Yilun Du</a> discussed some nascent methods for training robot foundation models using synthetic data from video generation models. Though these results remain exploratory and preliminary, <strong>the technique he presented would provide a way of generating robotic training data for any scientific discipline</strong>, so long as video generation models could coherently produce a high-fidelity replication of the task at hand. Since physical tasks remain a bottleneck in the laboratory sciences, it is especially important to track improvements in embodied AI.</p><p>But even if we automate substantial portions of existing scientific production pipelines, remaining unautomated areas will prove to be bottlenecks eventually. <a href="https://youtu.be/7L-7N6jPuO4">Yutaro Yamada</a> described Sakana AI&#8217;s attempts to avoid this issue by building an automated scientific production pipeline from scratch. <strong>Their agent stitches together a number of language models which read academic papers, generate hypotheses, perform computational experiments to test those hypotheses, interpret the results, and generate academic papers.</strong> They have also experimented with a &#8220;meta-agent&#8221; which learns how best to design such an agent. <a href="https://sakana.ai/ai-scientist-first-publication/">One paper</a> authored by this system was successfully published at the International Conference on Learning Representations (ICLR).</p><p>However, open questions remain about how well their approach can generalize to less computational areas of science, about the risks of models learning to &#8220;game&#8221; the peer review process, and about the type of science that approaches like this produce. In particular, Neil Thompson mentioned that it may not be enough to automate the &#8220;extensive margin&#8221; of science &#8211; that is, to simply scale up the amount of experimentation we do using existing methods or to apply existing research in a straightforward way. Rather, the most impressive science is on the &#8220;intensive margin&#8221;: it does things <em>better, </em>not just <em>more. </em>Scientific progress requires an expansion of the distribution of scientific ideas, correcting the mistakes in existing research and addressing previously unknown gaps.</p><h1>Moving forward</h1><p>These conversations highlighted just how many unknowns remain. We are still early in this transition, and many of the mechanisms shaping AI&#8217;s impact on science, workers, and society remain mysterious.<strong> </strong>There are more open questions than settled conclusions. We think research is more important now than ever.</p><p><em>A heartfelt thank you to all presenters for sharing their expertise, and to all attendees for contributing to a thoughtful discussion.</em></p><p><em>Thanks as well to the conference organizers: Emanuele Del Sozzo, Matthias Mertens, Rob Seamans, and Neil Thompson for organizing talks; Tess Fagan, Sam Brown, Lucy Yan and Shiobhain Jenkins for operations; the audiovisual team and catering staff; and the FutureTech team who assisted with operations during the conference.</em></p><p><em>This post was written by Zachary Brown. Alex Fogelson, Sebastian Sartor, Lucy Yan, and Neil Thompson provided editorial feedback. Lucy Yan helped plan this post and organize the talk links.</em></p><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-1" href="#footnote-anchor-1" class="footnote-number" contenteditable="false" target="_self">1</a><div class="footnote-content"><p>One interesting point that Olivetti made is that energy efficiency improvements in AI training and inference <em>might</em> not be sufficient to mitigate the climate burden of AI, since these improvements would also lower prices and therefore increase demand. Jevons is everywhere these days!</p></div></div><div class="footnote" data-component-name="FootnoteToDOM"><a id="footnote-2" href="#footnote-anchor-2" class="footnote-number" contenteditable="false" target="_self">2</a><div class="footnote-content"><p>Reorganizing production to take advantage of AI has costs. McElharan suggested that AI adoption involves a &#8220;productivity J-curve&#8221;: initially, adopting AI lowers productivity, as firms must make costly production adaptations before subsequently seeing productivity improvements. Perhaps reluctance to take on these short-term costs is slowing the rate of AI adoption.</p><p></p></div></div>]]></content:encoded></item><item><title><![CDATA[FutureTech Joins Substack!]]></title><description><![CDATA[Introducing Mixture of Experts by MIT FutureTech]]></description><link>https://mitfuturetech.substack.com/p/futuretech-joins-substack</link><guid isPermaLink="false">https://mitfuturetech.substack.com/p/futuretech-joins-substack</guid><dc:creator><![CDATA[Mixture of Experts]]></dc:creator><pubDate>Wed, 22 Oct 2025 17:56:59 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/50fd3932-eeb8-4a30-9865-c34db30aef69_4096x2730.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Welcome to <em>Mixture of Experts, </em>the new Substack from MIT FutureTech! We&#8217;re opening this space to share ideas, data, and discoveries emerging at the intersection of computing, AI, economics, and policy.</p><p><strong>Who We Are</strong></p><p>MIT FutureTech is an interdisciplinary research lab jointly based at MIT CSAIL and the MIT Sloan School of Management. Founded in 2019 by <a href="https://mitsloan.mit.edu/faculty/directory/neil-thompson">Dr. Neil Thompson</a>, the lab brings together more than a hundred researchers working at the intersection of technology, economics, and policy.</p><p>Our mission is to understand and quantify the causes and consequences of progress in AI and computing through rigorous, high-impact research. This requires a <em>mixture of experts: </em>we integrate expertise across hardware, software, algorithms, scaling laws, AI, robotics, macroeconomics, industrial organization, labor markets, and much more. Our resulting insights are leveraged by decision-makers in business, government, and society, as well as technical researchers and practitioners.</p><p><strong>What We Study</strong></p><p>At MIT FutureTech, we study trends in computing power (e.g. hardware innovation, Moore&#8217;s Law), how that computing power is used (AI development, algorithms, software, science), and how those uses will impact the broader society (e.g. AI automation, AI risks, and AI in R&amp;D).</p><p>For example, in our 2020 paper &#8220;<a href="https://arxiv.org/abs/2007.05558">The Computational Limits of Deep Learning</a>,&#8221; we showed that deep learning&#8217;s rapid progress is highly dependent on increases in raw computing power. We argued that without major improvements in efficiency, this trajectory will become economically and environmentally unsustainable. In our 2022 paper &#8220;<a href="https://ide.mit.edu/research/the-importance-of-exponentially-more-computing-power/">The Importance of (Exponentially More) Compute</a>&#8221; we provided evidence of similar dynamics across a number of historically important computing bellwethers (like chess) and economically important problems (like weather prediction). Across domains, progress in capabilities has required exponential increases in computing power that will become increasingly expensive to maintain.</p><p>If it is increasingly infeasible to maintain exponential growth in raw compute capacity, <a href="https://ide.mit.edu/research/theres-plenty-of-room-at-the-top-what-will-drive-computer-performance-after-moores-law/">can algorithms and efficiency improvements compensate?</a> To what degree? We&#8217;ve studied this question in <a href="https://futuretech.mit.edu/news/how-fast-do-algorithms-improve">traditional computer science problems</a> and in <a href="https://proceedings.neurips.cc/paper_files/paper/2024/hash/6b066da6a23bc55f9b887e7298102884-Abstract-Conference.html">deep learning contexts</a>. In deep learning, we found that improving algorithms for language models can double our compute efficiency in less than a year, substantially outpacing hardware gains. Beyond these paradigms, we&#8217;ve even explored new computing paradigms such as <a href="https://arxiv.org/abs/2310.15505">quantum computing</a>, analyzing where and when quantum systems may achieve a competitive edge over classical architectures based on their algorithmic and economic differences, and deploying these insights in our <a href="https://futuretech.mit.edu/quantum-economic-advantage-calculator">Quantum Economic Advantage Calculator</a>.</p><p>The remarkable progress in both computation and algorithms has led to remarkable advancements in AI capabilities. We want to better understand the economic impacts of these advancements. In &#8220;<a href="https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4700751">Beyond AI Exposure: Which Tasks Are Cost-Effective to Automate with Computer Vision?</a>&#8221;, we showed that many economically valuable tasks are not profitable to automate even when it is technically feasible to do so. When automation does occur, we&#8217;ve argued that an important consideration is the <a href="https://www.nber.org/papers/w33941">expertise</a> required for humans to perform the remaining unautomated tasks: if a job sees its most expert tasks automated, the skill required to perform it decreases, and wages go down as more people enter the profession; when inexpert tasks are automated, the job requires a greater degree of skill, and wages rise as employment falls.</p><p>When automation occurs in the production of science itself, the effects can be profound. In &#8220;<a href="https://www.sciencedirect.com/science/article/pii/S0048733324000866">Economic Impacts of AI-augmented R&amp;D</a>&#8221;, we explored how AI accelerates scientific idea generation, demonstrating that capital-intensive AI systems can dramatically boost research productivity and economic growth. Our ongoing work measures the extent to which AI use in science is already occurring, with indications that usage is growing exponentially.</p><p>Progress in AI has also brought about new risks. To support a more coordinated and evidence-based discussion, we created the <a href="https://arxiv.org/abs/2408.12622">MIT FutureTech AI Risk Repository</a>, a living database that organizes 777 documented risks drawn from 43 taxonomies. This open resource provides a shared frame of reference for researchers, policymakers, and practitioners to better understand and address the spectrum of AI risks.</p><p><strong>Looking Ahead</strong></p><p>The work presented here represents a fraction of the work we do. Our ongoing research at FutureTech explores the role of open-source models, market dynamics of building and deploying large foundation models, deep dives into AI risks, and much more.</p><p>Through this Substack, we&#8217;ll share insights into our ongoing projects, our published research, and commentary on emerging developments in computing, AI, and the economics of technological change.</p><p>We believe these are some of the most important topics of our time. We hope you&#8217;ll join us in the discussion.</p><p class="button-wrapper" data-attrs="{&quot;url&quot;:&quot;https://mitfuturetech.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe now&quot;,&quot;action&quot;:null,&quot;class&quot;:null}" data-component-name="ButtonCreateButton"><a class="button primary" href="/__u/mitfuturetech.substack.com/subscribe"><span>Subscribe now</span></a></p><div><hr></div><p><em>This piece was written jointly by Alex Fogelson, Sebastian Sartor, and Zachary Brown. Lucy Yan was essential for planning this Substack, and provided excellent operational and communications support. Thanks to Hans Gundlach for the blog name, Lucy Hampton for her expertise, and Neil Thompson for reviewing.</em></p>]]></content:encoded></item></channel></rss>