Our Honest Take on LLM Neuroanatomy II: A Brilliant Architectural Hack with a Latency Tax
The "RYS" (Repeat Your Self) method proposed by David Noel Ng represents one of the most intriguing developments in the "LocalLLaMA" community. By treating a Transformer as a biological entity with distinct functional regions rather than just a stack of identical blocks, Ng claims to improve model performance without changing a single weight. After reviewing the latest findings in LLM Neuroanatomy II, here is our analysis.
Verdict at a glance
- What’s genuinely impressive: The discovery of a "Universal Language" space in the middle layers, where English, Arabic, and even Base64 converge into nearly identical semantic representations.
- What’s disappointing: The lack of concrete data on the inference latency penalty. Doubling layers may increase performance, but it also increases the computational cost per token.
- Who it’s for: Open-source developers and researchers looking to squeeze maximum "reasoning" performance out of mid-sized weights (e.g., 27B-72B) without the budget for full-parameter fine-tuning.
- Price/Performance verdict: High value for quality seekers, but a potential trap for production environments where tokens-per-second and VRAM efficiency are the primary metrics.
What’s actually new
The first LLM Neuroanatomy was an observation; Part II is a methodology. Ng has moved from anecdotal "hacks" to a more rigorous, automated search for optimal model topology.
- Direct Visualization of the "ERD" Structure: The most significant advancement is the empirical evidence for the Encoding, Reasoning, and Decoding (ERD) phases. By measuring the cosine similarity of hidden states across languages (EN, ZH, AR, etc.) for the same prompt, Ng proves that modern LLMs possess a "thinking space" in the middle layers where the surface language is discarded in favor of pure semantic meaning.
- Automated Topology Search: Ng utilized a beam search of 3,024 candidates and a surrogate model to analyze 2 million configurations. This moves RYS from "vibes-based" duplication to an algorithmic optimization of which specific layers (the "reasoning" blocks) deserve to be repeated.
- Cross-Model Validation: The technique is no longer restricted to Qwen2-72B. By applying it to the newer Qwen3.5-27B, Ng demonstrates that this architectural property is likely a fundamental characteristic of the Transformer-decoder architecture, rather than a fluke of one specific training run.
The hype check
Ng claims that duplicating middle layers "produced the #1 model on the HuggingFace Open LLM Leaderboard." While technically true for certain versions of the leaderboard, we must apply some skepticism:
- Claim: "Universal Language." While the convergence of hidden states is visually stunning, calling it a "Universal Language" is a poetic stretch. It is a shared vector space. The model isn't "thinking in a new language"; it is mapping diverse inputs to a unified set of internal manifolds.
- Claim: Improving the model "without training." This is accurate, but it’s not magic. By repeating middle layers, you are effectively giving the model "more time to think" during the forward pass. This is conceptually similar to "Chain of Thought" but happening within the weights themselves.
- Leaderboard Gaming: It is well-documented that the HuggingFace Leaderboard can be "gamed" by certain architectural tweaks that don't always translate to better real-world utility. However, Ng’s use of EQ-Bench (which measures emotional intelligence and nuance) suggests the improvements are more than just benchmark overfitting.
Real-world implications
For the average CTO, the RYS method is a double-edged sword.
- The Benefit: You can take a 27B model (which fits on consumer hardware) and potentially give it the "reasoning depth" of a 35B or 40B model without the complexity of a new training run.
- The Unlock: This is particularly useful for specialized reasoning tasks (medical, legal, or complex logic) where the model's "middle-brain" capacity is the bottleneck, rather than its vocabulary or surface-level grammar.
Limitations they’re not talking about
The source content focuses heavily on the quality of the output, but glosses over the hardware reality.
- The Latency Tax: If you duplicate seven layers in a 72B model, you are essentially running a 79B model. Your inference will be slower. For real-time chat applications, this might be a deal-breaker.
- VRAM Bloat: Each duplicated layer requires additional memory for the KV cache. On a dual 4090 or Grace-Hopper setup, this is manageable. For mobile or edge deployments, RYS might push the model past the available memory threshold.
- Long-Context Stability: The source does not specify how duplicating layers affects the Rotary Positional Embeddings (RoPE). Doubling middle layers could potentially confuse the model’s sense of token distance, leading to coherence degradation in very long documents (e.g., 32k+ tokens).
How it stacks up
Compared to Model Merging (e.g., SLERP or Franken-merging), RYS is more surgically precise. While merging often blends two different models, RYS extends the "working memory" of a single, coherent brain. It is far more predictable than merging but lacks the diverse knowledge-base gain you get from combining a "Coding Llama" with a "Prose Llama."
Constructive suggestions
Ng’s work is a vital contribution to our understanding of model "anatomy." To make this genuinely industry-ready, we suggest:
- Quantify the "Efficiency Frontier": Provide a chart comparing Accuracy Gain vs. Latency Penalty. At what point does adding a layer provide diminishing returns?
- Investigate Pruning: If the middle layers are for "reasoning" and early layers are for "encoding," could we remove redundant early layers to offset the latency of the duplicated middle layers?
- Context Window Testing: Explicitly test if RYS models maintain their advertised context window without loss of "needle-in-a-haystack" performance.
Our verdict
- For Researchers: Adopt now. The "Universal Language" visualizations alone provide a roadmap for more efficient cross-lingual training.
- For Home Users/LocalLLaMA Enthusiasts: Experiment immediately. If you have the VRAM, RYS variants of Qwen3.5 are likely the highest-performing models you can run.
- For Enterprise: Wait. Until there is a clearer understanding of the latency-to-quality trade-off and more testing on long-context stability, sticking to the base weights is the safer bet for production.
FAQ
Should we switch from Llama-3 or Mistral to a RYS variant of Qwen?
Only if your primary bottleneck is reasoning depth and you are already comfortable with the Qwen ecosystem. RYS is an architectural modification, not a fix for a model’s underlying knowledge base. If Llama-3’s "personality" fits your use case, stick with it.
Is it worth the price premium in compute?
If you are running an offline batch-processing job (like summarizing 10,000 documents), the extra 10-15% latency is worth the boost in accuracy. For a customer-facing chatbot where every millisecond counts, the answer is likely no.
Does this mean we don't need fine-tuning anymore?
No. RYS improves the "how" (reasoning) but not the "what" (specific knowledge). You still need fine-tuning or RAG to give the model domain-specific data or a specific brand voice.
Sources
All technical specifications, pricing, and benchmark data in this article are sourced directly from official announcements. Competitor comparisons use publicly available data at time of publication. We update our coverage as new information becomes available.

