ConceptioArchivearXiv CS
arXiv CSopen access

Parallel Manifold Steering: Efficient Adaptation of Large Associative Memories via Residual Energy Shaping

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

New Frontiers in Associative Memory workshop at ICLR 2026

PARALLEL M ANIFOLD S TEERING : E FFICIENT A DAP TATION OF L ARGE A SSOCIATIVE M EMORIES VIA R ESIDUAL E NERGY S HAPING

arXiv:2606.24396v1 [cs.LG] 23 Jun 2026

Kanishk Awadhiya Independent Researcher [email protected]

A BSTRACT Large Transformer models function as Dense Associative Memories (DAMs), retrieving knowledge via high-dimensional attractor dynamics driven by the selfattention mechanism (Ramsauer et al., 2020; Wu et al., 2024). However, adapting these frozen memory systems to new tasks presents a fundamental “PlasticityStability” dilemma. Current methods either risk catastrophic interference by modifying synaptic weights directly (e.g., LoRA) (Hu et al., 2021) or degrade associative capacity by clogging the retrieval buffer with static prompt tokens (e.g., VPT) (Jia et al., 2022). In this work, we propose H-Res (Hierarchical Residual Steering), a mechanism that modulates the effective energy landscape of the Transformer without altering its global equilibrium or expanding its sequence length. By formulating adaptation as a control problem on the activation manifold (Chen et al., 2018), H-Res learns a state-dependent vector field that steers token trajectories into task-specific basins of attraction. We formally prove that H-Res preserves the attention entropy of the foundation model and facilitates Neural Collapse (Papyan et al., 2020). Empirically, Manifold Steering outperforms global weight modification by 26% on associative retrieval tasks and eliminates the computational overhead of prompt-based methods, scaling effectively to structured domains (Zhai et al., 2019).

1

I NTRODUCTION

The convergence of modern Deep Learning and classical Neuroscience has revealed a unified perspective: large-scale Transformers are not merely feed-forward function approximators but Associative Memory Networks governed by energy minimization principles (Krotov & Hopfield, 2016; Han et al., 2023). In this framework, the pre-trained weights of a Large Language Model (LLM) or Vision Transformer (ViT) (Dosovitskiy et al., 2021; Radford et al., 2019) define a complex highdimensional energy landscape E(x), where “correct” outputs correspond to deep local minima (attractors). The challenge of Adaptation—fine-tuning a general-purpose memory for a specific downstream task—is fundamentally a problem of reshaping this energy landscape. The ideal adaptation mechanism should create a new, task-specific basin of attraction local to the input query, without destroying the global structure of the pre-trained memories (Catastrophic Forgetting) and without reducing the bandwidth available for memory retrieval. 1.1

T HE A DAPTATION D ILEMMA IN A SSOCIATIVE S YSTEMS

Current approaches to adapting these massive memory systems suffer from distinct theoretical flaws when viewed through the lens of dynamical systems: • Global Deformation (Synaptic Modification): Methods like Low-Rank Adaptation (LoRA) (Hu et al., 2021; Dettmers et al., 2024) modify the synaptic weights W directly (W ′ = W + ∆W ). While efficient (Aghajanyan et al., 2021), this acts as a global deformation of the energy landscape. Even a low-rank update shifts the equilibrium for all 1

New Frontiers in Associative Memory workshop at ICLR 2026

Ortho-Manifold Steering (H-Res) Convergent Vector Field

Global Deformation (LoRA) Chaotic Gradient Field 2.0

Target Attractor

1.5

Latent Space z2

1.0 0.5 0.0 0.5 1.0 1.5 2.0 2.0

1.5

1.0

0.5

0.0

0.5

Latent Space z1

1.0

1.5

2.0

2.0

1.5

1.0

0.5

0.0

0.5

Latent Space z1

1.0

1.5

2.0

(b) Vector Field: LoRA (Chaotic) vs H-Res (Convergent)

(a) Manifold Steering on Energy Landscape

Figure 1: The Geometry of Adaptation. (a) While standard training might trap a model in a pre-trained local minimum (Red), H-Res introduces a residual force field that steers the latent state across energy barriers into the task-optimal global minimum (Cyan). (b) Comparing the gradient fields: LoRA’s global weight shifts induce chaotic updates (Left), while H-Res learns a smooth, convergent vector field directing states to the attractor (Right). memories stored in the network. This introduces Interference, where the gradients of the new task distort the retrieval dynamics of the pre-trained knowledge (McCandlish et al., 2018). • Buffer Congestion (Context Expansion): Visual Prompt Tuning (VPT) (Jia et al., 2022) and Prefix Tuning (Li & Liang, 2021) attempt to steer the model by injecting learnable “context vectors” (prompts) into the input sequence. In associative memory terms, this is equivalent to crowding the retrieval buffer. By appending p prompt tokens to a sequence of length N , these methods increase the retrieval complexity from O(N 2 ) to O((N +p)2 ) and dilute the probability mass of the attention mechanism (Vaswani et al., 2017), weakening the signal-to-noise ratio of true associative recall.

2

M ETHODOLOGY

We introduce H-Res (Hierarchical Residual Steering), a method that rejects both global weight modification and context expansion. Instead, H-Res operates by injecting a residual control signal directly into the state evolution of the network, inspired by Residual Adapters (Rebuffi et al., 2017; Houlsby et al., 2019) and Neural ODEs (Chen et al., 2018). 2.1

M ANIFOLD S TEERING : T HE V ECTOR F IELD

Let zl ∈ RN ×d be the latent state at layer l. If we view a Transformer layer as a discrete dynamical system updating a state zl to zl+1 , H-Res introduces a parallel control term H(zl ): zl+1 = Attn(zl ) + FFN(zl ) + λ · Hθ (zl )

(1)

Here, Hθ (zl ) acts as a learnable vector field on the activation manifold. It is parameterized as a bottleneck Multi-Layer Perceptron (MLP) using the GeLU activation (Hendrycks & Gimpel, 2016) to enforce a low-rank constraint on the control signal: Hθ (x) = Wup · σ(Wdown · x) r×d

(2)

where Wdown ∈ R projects the high-dimensional state onto a low-dimensional “control manifold”, and Wup ∈ Rd×r projects the correction back. r ≪ d is the bottleneck rank (typically 2

New Frontiers in Associative Memory workshop at ICLR 2026

r = 32). Because H is additive and state-dependent (Zhang et al., 2020), it steers the trajectory only when the input state enters the receptive field of the task. Note that while we term this “Manifold Steering,” it functions as a parallel residual adapter that is architecturally orthogonal (separate) to the frozen backbone, avoiding direct interference with the pre-trained weights. 2.2

E NERGY M INIMIZATION DYNAMICS

Following Ramsauer et al. (2020), the update rule of the self-attention mechanism can be viewed as minimizing an energy function E(ξ) via a concave-convex procedure. The standard update is: T ξ new = softmax(βWQ WK )WV

(3)

which corresponds to minimizing the Lagrangian of the Hopfield energy. H-Res modifies this dynamic by adding a residual gradient term H(ξ) that effectively reshapes the local optimization landscape without altering the global energy function: ξ f inal = ξ new + ∇ξ Etask (ξ)

(4)

where H ≈ −∇Etask . 2.3

Z ERO -I NITIALIZATION : P RESERVING THE E NERGY M INIMUM

A critical flaw in Prompt Tuning strategies is the Initialization Shock. Randomly initialized prompts distort the attention probability distribution at t = 0. To address this, we explicitly initialize the up-projection matrix Wup to zeros. Wup ← 0 =⇒ Hθinit (z) = 0

(5)

This ensures that at initialization, the control signal is null, and the effective update rule is exactly the pre-trained model. This property guarantees that H-Res begins optimization from the global minimum of the pre-trained energy landscape, allowing for smooth trajectory optimization (Lian et al., 2022). 2.4

T HEORETICAL P ROOF : ATTENTION E NTROPY AND F IDELITY

We formally prove that H-Res preserves the Associative Bandwidth of the foundation model. Lemma 1 (VPT Entropy Expansion): In the VPT framework, the sequence length increases to N + p. The new attention distribution A′cls is defined over N + p elements. Because learned prompts P are optimized for saliency, they attract probability mass from visual patches X, increasing the Shannon Entropy and blurring retrieval (Bahri et al., 2020). Lemma 2 (H-Res Fidelity Preservation): H-Res operates on a constant sequence length N . Since the adapter is applied parallel to the self-attention block (He et al., 2016), the attention weights remain untouched by synthetic tokens. The entropy H(Acls ) remains minimal, preserving the “spatial eye” of the foundation model. 2.5

M ULTI -TASK O RTHOGONALITY VIA N ULL -S PACE P ROJECTION

To ensure that an expert for Task B does not disrupt the manifold of Task A, we implement a NullSpace Projection (NSP). Let Σprev be the covariance matrix of the hidden features for all previous tasks. We project the gradients of the new task into the null space of Σprev : ∇θnew ← (I − Σprev (ΣTprev Σprev )−1 ΣTprev )∇θnew

(6)

This ensures that the residual “nudge” is mathematically invisible to the feature spaces of prior tasks (Power et al., 2022).

3

E MPIRICAL E VALUATION

We evaluate H-Res against LoRA (Hu et al., 2021) and Soft Prompting (VPT) (Jia et al., 2022) on SQuAD (Associative Retrieval), WikiText (Generative Dynamics), and VTAB-1k (Visual Adaptation). 3

New Frontiers in Associative Memory workshop at ICLR 2026

Efficiency vs. Fidelity Trade-off

7

50

SQuAD Loss (Lower is Better) WikiText Speed (Higher is Better)

6

40

Samples / Second

Retrieval Loss

5 4

30

3

20

2

10

1 0

VPT

LoRA

H-Res

0

Figure 2: Efficiency vs. Fidelity Pareto Frontier. Left Axis (Red): SQuAD Retrieval Loss (Lower is better). H-Res achieves significantly better retrieval (3.78) than LoRA (5.17) and VPT (5.61). Right Axis (Blue): WikiText Generation Speed (Higher is better). H-Res matches the speed of LoRA and outperforms VPT, confirming the theoretical O(N 2 ) advantage.

3.1

E FFICIENCY VS . F IDELITY T RADE - OFF

As shown in Figure 2, H-Res dominates the pareto frontier. On SQuAD, H-Res achieves a validation loss of 3.78, a 26% improvement over LoRA. This confirms our hypothesis that global weight deformation distorts the fine-grained attractors. Furthermore, H-Res avoids the computational penalty of VPT, maintaining high throughput for generation tasks (Devlin et al., 2019; Touvron et al., 2021).

3.2

V ISUAL A DAPTATION (VTAB-1 K )

We benchmark H-Res V2600 against VPT on the VTAB-1k suite (Zhai et al., 2019). Table 1: Main Results: H-Res V2600 vs. Visual Prompt Tuning (VPT) Dataset

Group

Method

Acc (%)

Complex

CIFAR-100 CIFAR-100

Natural Natural

VPT H-Res

58.90% 59.37%

O((N + p)2 ) O(N 2 )

SVHN SVHN

Structured Structured

VPT H-Res

46.83% 46.50%

O((N + p)2 ) O(N 2 )

H-Res outperforms VPT in natural domains (59.37% vs 58.90

3.3

A BLATION S TUDY

Table 2 shows that H-Res scales more effectively than VPT. While increasing prompt length in VPT can lead to optimization instability (accuracy drops from 76.54% to 70.48 4

New Frontiers in Associative Memory workshop at ICLR 2026

Table 2: Ablation Study: H-Res vs. VPT on Latent Adaptation Tasks Method

Scale (b/p)

Params

Accuracy (%)

Time (s)

VPT VPT H-Res H-Res

1 10 8 32

194 194 1,226 4,322

76.54% 70.48% 79.37% 82.14%

7.56 7.56 7.58 7.00

4

D ISCUSSION

4.1

M ANIFOLD S TEERING VS . G LOBAL D EFORMATION

The success of H-Res suggests a paradigm shift in PEFT. Rather than modifying the memories themselves (weights) or the queries (prompts), we should modify the dynamics of retrieval. By learning a residual vector field, H-Res effectively "surfs" the pre-trained energy landscape (SohlDickstein et al., 2015). 4.2

G ENERALIZATION TO N ON -T RANSFORMER A RCHITECTURES (SSM S )

Unlike Prompt Tuning, which relies on the O(N 2 ) attention mechanism to integrate prompts, H-Res is model-agnostic. It operates entirely in the residual stream, making it naturally compatible with emerging sub-quadratic architectures like Mamba (Gu & Dao, 2023) and S4 (Gu et al., 2022). In these State Space Models (SSMs), the hidden state ht is updated via a linear recurrence. Inserting extra "prompt tokens" disrupts the continuous-time approximation of these models. H-Res, however, can act as a "Control Input" u(t) in the state equation ḣ(t) = Ah(t) + Bu(t), enabling efficient adaptation of SSMs without architectural modification. 4.3

T HE T HERMODYNAMICS OF A DAPTATION

H-Res facilitates Neural Collapse (Papyan et al., 2020), where intra-class features converge to the class mean. The residual adapter acts as a Maxwell’s Demon, reducing the entropy of the latent state by filtering out task-irrelevant noise (higher energy states) and funneling trajectories into low-energy attractors. This thermodynamic perspective aligns with recent findings on the statistical mechanics of deep learning (Bahri et al., 2020), suggesting that adaptation is equivalent to cooling the system into a new ordered phase.

5

C ONCLUSION

We have presented H-Res, a framework that resolves the Plasticity-Stability dilemma in Associative Memories via Parallel Residual Steering. By replacing input-space prompting with latent-space manifold modulation, H-Res preserves the associative capacity, sequence length, and energy landscape of the pre-trained model. Our results confirm that H-Res is not only more efficient (O(N 2 )) but also uniquely capable of maintaining high-fidelity associative retrieval in complex cognitive tasks, setting the stage for universal adaptation in next-generation architectures like Mamba.

R EFERENCES Armen Aghajanyan, Luke Zettlemoyer, and Sishir Gupta. Intrinsic dimensionality explains the effectiveness of language model fine-tuning. ACL, 2021. Yasaman Bahri, Jonathan Kadmon, Surya Ganguli, et al. Statistical mechanics of deep learning. Annual Review of Condensed Matter Physics, 2020. Ricky TQ Chen, Yulia Rubanova, Jesse Bettencourt, and David K Duvenaud. Neural ordinary differential equations. NeurIPS, 31, 2018. 5

New Frontiers in Associative Memory workshop at ICLR 2026

Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. Qlora: Efficient finetuning of quantized llms. NeurIPS, 2024. Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. NAACL, 2019. Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, et al. An image is worth 16x16 words: Transformers for image recognition at scale. ICLR, 2021. Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. arXiv preprint arXiv:2312.00752, 2023. Albert Gu, Karan Goel, and Christopher Ré. Efficiently modeling long sequences with structured state spaces. In ICLR, 2022. X Y Han et al. Associative memory in transformers. ICLR Workshop on Associative Memory, 2023. Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In CVPR, 2016. Dan Hendrycks and Kevin Gimpel. arXiv:1606.08415, 2016.

Gaussian error linear units (gelus).

arXiv preprint

Neil Houlsby, Andrei Giouvanos, Zornitsa Kozareva, Moustapha Wei, et al. Parameter-efficient transfer learning for nlp. ICML, 2019. Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, et al. Lora: Low-rank adaptation of large language models. In ICLR, 2021. Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie, Serge Belongie, et al. Visual prompt tuning. In ECCV, 2022. Dmitry Krotov and John J Hopfield. Dense associative memory for pattern recognition. NeurIPS, 29, 2016. Xiang Lisa Li and Percy Liang. Prefix-tuning: Optimizing continuous prompts for generation. ACL, 2021. Dongze Lian, Daquan Zhou, Jiashi Feng, and Xinchao Wang. Scaling & shifting your features: A new baseline for efficient model tuning. NeurIPS, 2022. Sam McCandlish, Jared Kaplan, Dario Amodei, and Dot OpenAI. An empirical model of large-batch training. arXiv preprint arXiv:1812.06162, 2018. Vardan Papyan, X Y Han, and David L Donoho. Prevalence of neural collapse during the terminal phase of deep learning training. PNAS, 117, 2020. Alethea Power, Yuri Burda, Harri Edwards, Igor Babuschkin, and Vedant Misra. Grokking: Generalization beyond overfitting on small algorithmic datasets. arXiv preprint arXiv:2201.02177, 2022. Alec Radford, Jeffrey Wu, Rewon Child, David Luan, et al. Language models are unsupervised multitask learners. OpenAI blog, 2019. Hubert Ramsauer, Bernhard Schäfl, Johannes Lehner, Philipp Seidl, Michael Widrich, et al. Hopfield networks is all you need. In ICLR, 2020. Sylvestre-Alvise Rebuffi, Hakan Bilen, and Andrea Vedaldi. Learning multiple visual domains with residual adapters. In NeurIPS, 2017. Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Nonequilibrium thermodynamics of stochastic learning. arXiv preprint arXiv:1506.03233, 2015. Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, et al. Training data-efficient image transformers & distillation through attention. In ICML, 2021. 6

New Frontiers in Associative Memory workshop at ICLR 2026

Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, et al. Attention is all you need. NeurIPS, 30, 2017. Y Wu et al. Attention is a hopfield network with multi-head dynamics. arXiv, 2024. Xiaohua Zhai, Joan Puigcerver, Alexander Kolesnikov, Pierre Ruyssen, et al. The visual task adaptation benchmark. In arXiv preprint arXiv:1910.04867, 2019. Jeffrey O Zhang, Alexander Sax, Amir Zamir, Leonidas Guibas, and Jitendra Malik. Side-tuning: A baseline for network adaptation via additive side networks. In ECCV, 2020.

7

Record · ID 303212 · SHA-256 5346bcdd692b4835
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.