EPS
← All batches·2605.08177

Echo-LoRA: Parameter-Efficient Fine-Tuning via Cross-Layer Representation Injection

topic: general_aitop score: 100released: 2026-05-12first surfaced: 2026-05-12arXivPDFthreats2026-05-12

Authors: Yihang Peng, Peng Jin, Jie Gong et al.

arXiv · PDF

Summary

Echo-LoRA is a parameter-efficient fine-tuning method that injects information from deeper layers back into shallower LoRA modules during training. It collects hidden states from late layers, aggregates them into an "echo representation," and uses lightweight projection and gating networks to feed that signal into early LoRA/DoRA updates. The echo path is discarded after training, so the deployed model is identical to standard LoRA at inference. On eight commonsense reasoning benchmarks, Echo-LoRA improves over LoRA by 5.7 percentage points (against reported baselines) or 3.0 points (against reproduced baselines) across LLaMA-7B/LLaMA2-7B/LLaMA3-8B.

Main takeaways:

  • Echo-LoRA collects boundary hidden states from deeper layers and injects them into shallow LoRA modules via lightweight projection and gating, creating a training-only cross-layer feedback loop.
  • The echo path is removed after training, so inference keeps the original low-rank LoRA form with no added parameters or compute.
  • On eight commonsense reasoning tasks, the method improves over LoRA by 3–5.7 percentage points depending on baseline, and by 2.7 points when combined with DoRA.
  • Answer-only masking, masked distillation, and stochastic routing are used to stabilize the auxiliary path and reduce train-test mismatch.

Relevance

Relevant to my midtraining and fine-tuning work (marker implantation, installation-path equivalence) — Echo-LoRA changes how updates propagate during training, which might interact with where and how persona behaviors or markers get installed, especially given my #237 result that any SFT collapses Qwen2.5-7B persona geometry.

Threat model

Potential threat/caveat for clean result "Training a [ZLT] persona-marker into Qwen-2.5-7B doesn't increase system-prompt attention at the marker timestep — base Qwen on identical tokens attends the same way (LOW confidence)": this item discusses benchmark.

Abstract

arXiv:2605.08177v1 Announce Type: new Abstract: Parameter-efficient fine-tuning (PEFT) has become a practical route for adapting large language models to downstream tasks, with LoRA-style methods being particularly attractive because they are inexpensive to train and easy to deploy. Most LoRA variants, however, revise the update rule within the weight space of each layer and leave the intermediate representations formed by deeper layers largely unused. We propose Echo-LoRA, a cross-layer representation injection method for parameter-efficient fine-tuning. During training, Echo-LoRA collects boundary hidden states from deeper source layers, aggregates them into a sample-level echo representation, and uses lightweight projection and gating networks to inject the resulting signal into shallow LoRA or DoRA modules. Answer-only masking, masked distillation, and stochastic routing are used to keep this auxiliary path stable and to reduce the gap between training and inference. On eight commonsense reasoning benchmarks, Echo-LoRA exceeds the reported LoRA baselines by 5.7 percentage points on average across LLaMA-7B, LLaMA2-7B, and LLaMA3-8B. Under reproduced LoRA baselines in our unified implementation, the average gain is 3.0 points; when combined with DoRA, the gain is 2.7 points. The Echo path is discarded after training, so the deployed model keeps the original low-rank LoRA/DoRA form and adds neither inference-time parameters nor inference computation.