AI Signal 194
J-lens default targeting final layer inherits dominant language direction in DeepSeek-V3
Targeting the final layer in J-lens causes a single direction from the last transformer block to dominate readouts, shifting English text toward Chinese tokens and inflating evaluation metrics on DeepSeek-V3.
About 80% of publicly released J-lenses default to the final layer, but this choice can make earlier layers appear to represent output-specialized behavior rather than their actual computations. Engineers using J-lens for interpretability should verify whether their target layer inherits amplified directions from downstream blocks that distort what the lens reveals.
Written by elseif from the cluster below · every claim links back to a sourceThe three things worth knowing
DeepSeek-V3's final block amplifies a language-separating direction twelve times more than typical directions, causing it to dominate Jacobians at all earlier layers when the final layer is targeted.
Switching to the penultimate layer target reduces the language effect by roughly twentyfold, aligning readouts with logit lens results and flipping the sign of excess kurtosis from Anthropic's original paper.
The released J-lens library defaults to the final layer despite Gurnee et al. using penultimate for Sonnet experiments, and 80% of 78 checked public lenses follow this default.
THE READ
What the cluster adds up to.
A J-lens translates hidden states into words by asking how a nudge at an earlier layer changes the representation at a target layer, then reading through the unembedding. On DeepSeek-V3, the choice of target layer fundamentally changes what the lens shows because the final transformer block pushes down Chinese-token probabilities during English text, creating a large residual-stream shift that barely affects predictions but dominates the Jacobian.
This amplified direction becomes the top singular direction at every earlier layer when differentiating through the final block, causing roughly half of mid-depth readouts to show majority Chinese tokens on English inputs. Targeting the penultimate layer excludes that block and restores readouts to 3% Chinese tokens, matching the logit lens baseline.
The distortion cascades into evaluation metrics: on order-of-operations prompts, the final-layer target lifts every number token by about one standard deviation, making J-lens appear better than logit lens on that test. The same target choice also flips the sign of excess kurtosis, a statistic used in Anthropic's original paper to characterize representation geometry.
The author checked 78 publicly released J-lenses and found 80% target the final layer by default, while the library default and most practitioners follow this pattern. Gurnee et al. notably used penultimate targeting for their Sonnet experiments, suggesting awareness of the issue that did not propagate to the default configuration.
The broader lesson is that any strong downstream specialization, whether language calibration, token suppression, or other output-layer behavior, can dominate a J-lens and make earlier layers appear to carry that specialization. Engineers should test whether changing the target layer removes dominant directions before interpreting what a lens reveals about model internals.
Written by elseif from the cluster below · checked for specifics the sources never containedTHE CLUSTER
↗