<?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[Notes on AI Interpretability and Building]]></title><description><![CDATA[Mechanistic interpretability research, occasional notes on building AI products.]]></description><link>https://kubadvorak.substack.com</link><image><url>https://substackcdn.com/image/fetch/$s_!F0Qi!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F908fde73-300e-44b6-8203-d9b0dc307d0f_144x144.png</url><title>Notes on AI Interpretability and Building</title><link>https://kubadvorak.substack.com</link></image><generator>Substack</generator><lastBuildDate>Wed, 05 Aug 2026 13:13:58 GMT</lastBuildDate><atom:link href="https://kubadvorak.substack.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Jakub Dvořák]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[kubadvorak@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[kubadvorak@substack.com]]></itunes:email><itunes:name><![CDATA[Jakub Dvořák]]></itunes:name></itunes:owner><itunes:author><![CDATA[Jakub Dvořák]]></itunes:author><googleplay:owner><![CDATA[kubadvorak@substack.com]]></googleplay:owner><googleplay:email><![CDATA[kubadvorak@substack.com]]></googleplay:email><googleplay:author><![CDATA[Jakub Dvořák]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[Does the standard SAE feature-absorption metric over-report?]]></title><description><![CDATA[I ran both absorption metrics on a property class they had never been run on. The field-standard metric reports absorption; the causal one reports a clean zero &#8212; on both Gemma-2-2B and 9B.]]></description><link>https://kubadvorak.substack.com/p/does-the-standard-sae-feature-absorption</link><guid isPermaLink="false">https://kubadvorak.substack.com/p/does-the-standard-sae-feature-absorption</guid><dc:creator><![CDATA[Jakub Dvořák]]></dc:creator><pubDate>Sun, 02 Aug 2026 10:16:15 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!D2BD!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Sparse autoencoders are the leading tool for reading a language model&#8217;s internals, and <em>feature absorption</em> is one of the standard ways we measure whether their features can be trusted. Here is the one claim of this post, stated up front: <strong>the two standard metrics for SAE feature absorption disagree once you leave the task they were validated on.</strong> On the structural property <em>is-capitalized</em>, the projection metric &#8212; the current SAEBench standard &#8212; reports single-dominant-latent absorption modestly above its own random-direction null (0.12 vs 0.03), while the older ablation metric, which checks what the model actually <em>uses</em>, reports exactly zero on every candidate token &#8212; 0 of 727 on Gemma-2-2B and 0 of 273 on Gemma-2-9B. Controls rule out the boring explanations. The effect is small and rests on one well-powered property, but the direction is uncomfortable: the field-standard metric appears to over-report for a distributed feature with no causal correlate.</p><p>The full 15-page technical report, code, and every number in this post are public: <a href="https://github.com/Majny/absorption-atlas">github.com/Majny/absorption-atlas</a>.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://kubadvorak.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Notes on AI Interpretability and Building! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><h2>Why audit a metric instead of building something?</h2><p>My research interest is mechanistic interpretability aimed at a concrete safety target: catching deception and scheming by reading a model&#8217;s internals rather than trusting its outputs. That whole bet is only as good as the tools underneath it. Before anyone builds oversight on top of SAE features, the metrics that certify those features have to mean what they claim &#8212; and a metric validated on one task is only validated on that task. So I started one level down: pick a field-standard metric, take it off its benchmark, and see if it still measures the same thing.</p><h2>What is feature absorption?</h2><p>Feature absorption (Chanin et al., <a href="https://arxiv.org/abs/2409.14507">arXiv:2409.14507</a>) is a known SAE failure mode: a latent that looks monosemantic &#8212; say <em>starts-with-L</em> &#8212; silently fails on some tokens, because a token-aligned latent (say, a <em>lion</em> latent) has absorbed the concept&#8217;s direction and carries it instead. The general feature stays dark, the interpretation breaks, and you only find out if you go looking token by token.</p><p>Two metrics quantify it:</p><ul><li><p><strong>The ablation (behavioral) metric</strong> &#8212; Chanin&#8217;s original. Integrated-gradient attribution of SAE latents to the model&#8217;s <em>task answer</em>. It asks: is there a single latent the model causally uses in place of the main one?</p></li><li><p><strong>The projection (representational) metric</strong> &#8212; the current <a href="https://arxiv.org/abs/2503.09532">SAEBench</a> standard. It decomposes the residual stream&#8217;s projection onto the concept direction into per-latent contributions and flags a single dominant non-main latent.</p></li></ul><p>Nearly everything the literature knows about absorption comes from <strong>one task: first-letter spelling</strong>. Chanin&#8217;s own future-work section asks for &#8220;absorption unrelated to character identification.&#8221; Structural properties aren&#8217;t untouched territory &#8212; the feature-hedging line already probes part-of-speech &#8212; but running the absorption metrics themselves on them, <em>both</em> of them, and contrasting the answers, hadn&#8217;t been done. That is the gap this project fills.</p><h2>What I did</h2><p>First, the boring-but-necessary part: I reproduced first-letter absorption on current Gemma Scope SAEs (Gemma-2-2B, layer 12, 16k width) &#8212; mean rate 0.032, and the characteristic L0 law, absorption rising steeply as L0 falls (0.127 at L0=22 down to 0.010 at L0=445). The curve has the same shape as SAEBench&#8217;s published one, with absolute rates about 3&#215; below their JumpReLU reference &#8212; exactly what you&#8217;d expect for Google&#8217;s better-trained Gemma Scope SAEs.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!D2BD!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!D2BD!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 424w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 848w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 1272w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!D2BD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png" width="900" height="630" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:630,&quot;width&quot;:900,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Feature absorption vs L0 on Gemma Scope SAEs: absorption rises steeply as L0 falls&quot;,&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="Feature absorption vs L0 on Gemma Scope SAEs: absorption rises steeply as L0 falls" title="Feature absorption vs L0 on Gemma Scope SAEs: absorption rises steeply as L0 falls" srcset="https://substackcdn.com/image/fetch/$s_!D2BD!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 424w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 848w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.png 1272w, https://substackcdn.com/image/fetch/$s_!D2BD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3403c8d9-fe6d-466a-a625-2acdd451ccc3_900x630.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>The same measurement on <strong>last-letter</strong> gives a curve of the same shape and comparable &#8212; at mid and high L0, higher &#8212; magnitude, so absorption isn&#8217;t literally a first-letter quirk. But last-letter is still a <em>letter</em> property.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!xsFE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!xsFE!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 424w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 848w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 1272w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!xsFE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png" width="900" height="630" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:630,&quot;width&quot;:900,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Absorption by property: first-letter vs last-letter curves across L0&quot;,&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="Absorption by property: first-letter vs last-letter curves across L0" title="Absorption by property: first-letter vs last-letter curves across L0" srcset="https://substackcdn.com/image/fetch/$s_!xsFE!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 424w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 848w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.png 1272w, https://substackcdn.com/image/fetch/$s_!xsFE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F175a13b8-d2e4-4a9d-aedd-85fa7584e360_900x630.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>The stronger test is structural. I extended the measurement to tokenizer-derivable structural properties: is-capitalized, ALL-CAPS, common suffixes. Of these, <strong>is-capitalized is the only well-powered anchor</strong> (candidate pools in the hundreds of tokens); all-caps and the suffixes, at n=9&#8211;33, are underpowered anecdotes and I treat them as such.</p><h2>The result: the two metrics disagree</h2><p>For is-capitalized, single-dominant-latent rate at dominance ratio R=3, with Wilson 95% CIs:</p><ul><li><p><strong>Projection metric:</strong> 0.12 [0.077, 0.191] against a random-direction null of 0.03 [0.014, 0.081] (n=130). Above null &#8212; but marginally, and about 4&#215; weaker than the same metric on spelling (0.53).</p></li><li><p><strong>Ablation metric:</strong> <strong>0.0.</strong> On Gemma-2-9B, 0 of 273 candidate tokens absorbed (binomial 95% CI [0, ~0.011]). Zero on 2B as well (0 of 727). A robust nothing.</p></li></ul><p>One metric says &#8220;some absorption is happening here.&#8221; The other says &#8220;the model does not causally use a single substitute latent, at all.&#8221;</p><h2>Could it be something boring?</h2><p>The mundane explanations I could test, I tested:</p><ul><li><p><strong>&#8220;The model just can&#8217;t do the task.&#8221;</strong> No: Gemma-2-9B performs is-capitalized at 0.91 accuracy &#8212; and its behavioral absorption is still exactly zero.</p></li><li><p><strong>&#8220;The ablation metric is dead at that layer.&#8221;</strong> No: at the same 9B layer and L0, the ablation metric fires at 0.045 for spelling.</p></li><li><p><strong>The airtight version &#8212; matched task accuracy:</strong> sweeping first-letter accuracy down to ~0.9 (via ICL count and corrupted ICL), spelling still shows behavioral absorption (~0.017&#8211;0.035) where is-capitalized shows 0.0 at the same ability level.</p></li></ul><p>A side result worth knowing if you use these metrics: <em>within</em> first-letter, the ablation metric tracks task accuracy (absorption moves 0.011 &#8594; 0.030 as accuracy goes 0.53 &#8594; 0.97) while the projection metric stays flat around 0.60. The causal metric is task-performance-sensitive; the representational one is not. Neither property is free.</p><h2>What I think it means &#8212; and what I&#8217;m not claiming</h2><p>The defensible reading is about <strong>metric validity</strong>, not about deep facts of representation. Capitalization is a high-frequency, heavily correlated concept; a 16k-latent SAE plausibly spreads it across several latents &#8212; <em>feature hedging</em>, in Chanin&#8217;s (<a href="https://arxiv.org/abs/2505.11756">arXiv:2505.11756</a>) terms. On such a feature, &#8220;one dominant latent by projection&#8221; is a weak, partly geometric signal, not evidence of a token-aligned absorber the model actually uses.</p><p>I am <strong>not</strong> claiming a grand representational-vs-causal dissociation. The claim is narrower and checkable: on this property, the two standard metrics disagree, the projection metric over-reports relative to the ablation metric, and the disagreement survives task-ability and layer controls.</p><p>Limitations, stated rather than hidden: the effects are near floor everywhere (the 0.12 signal is marginal above its null at n=130); is-capitalized is the only powered structural property, so &#8220;property-type-dependent&#8221; is really n=1; and it&#8217;s one model family with one SAE recipe (Gemma-2 + Gemma Scope JumpReLU). I also don&#8217;t yet show a downstream case where trusting the projection-flagged absorption would break something.</p><h2>What&#8217;s next</h2><p>The one lever that would upgrade this from a caveat to a claim: a second SAE recipe (TopK / Matryoshka) and a second well-powered structural property. That extension is running now, sized around my September state exam. As it produces something worth showing, a tightened version of this result goes to LessWrong / Alignment Forum.</p><p>If you work on SAE evaluation and think I&#8217;ve got something wrong &#8212; that&#8217;s the most useful email you can send me: <a href="mailto:hi@kubadvorak.com">hi@kubadvorak.com</a>. Everything is reproducible from the committed results: <a href="https://github.com/Majny/absorption-atlas">github.com/Majny/absorption-atlas</a>, full report <a href="https://github.com/Majny/absorption-atlas/blob/main/paper/paper.pdf">here</a>.</p><p><em>&#8212; Jakub Dvo&#345;&#225;k, <a href="https://kubadvorak.com">kubadvorak.com</a></em></p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://kubadvorak.substack.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Notes on AI Interpretability and Building! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item></channel></rss>