Plugin trains a small autoregressive model to multiply its softmax into a frozen LLM's softmax, adapting the output distribution to a target domain using only logits and limited data.
On the Duality between Gradient Transformations and Adapters
1 Pith paper cite this work. Polarity classification is still indexing.
abstract
We study memory-efficient optimization of neural networks (in particular language models) with linear gradient transformations, where the gradients are linearly mapped to a lower dimensional space than the full parameter space, thus saving memory required for gradient accumulation and optimizer state persistence. The model parameters are updated by first performing an optimization step in the lower dimensional space and then going back into the original parameter space via the linear map's transpose. We show that optimizing the model in this transformed space is equivalent to reparameterizing the original model through a linear adapter that additively modifies the model parameters, and then only optimizing the adapter's parameters. When the transformation is Kronecker-factored, this establishes an equivalence between GaLore and one-sided LoRA. We show that this duality between gradient transformations and adapter-based reparameterizations unifies existing approaches to memory-efficient training and suggests new techniques for improving training efficiency and memory use.
fields
cs.LG 1years
2025 1verdicts
REJECT 1representative citing papers
citing papers explorer
-
Logits are All We Need to Adapt Closed Models
Plugin trains a small autoregressive model to multiply its softmax into a frozen LLM's softmax, adapting the output distribution to a target domain using only logits and limited data.