Federated Parameter-Efficient Fine-Tuning
FraQ: Efficient Coordinate-Space Recompression for Federated Low-Rank Adaptation
Shenghui Li1 and Thiemo Voigt1,2
1Uppsala University, Uppsala, Sweden 2Research Institutes of Sweden, Stockholm, Sweden
Abstract
Federated fine-tuning with Low-Rank Adaptation (LoRA) enables collaborative and efficient adaptation of Large Language Models (LLMs) without centralizing private data. However, its two-factor parameterization introduces an aggregation mismatch across clients, as naive factor-wise averaging does not recover the average of the induced updates. Forming the exact aggregate in the full weight space and recompressing it avoids this mismatch, but decomposing the resulting full-size matrix is computationally expensive and memory-intensive. We propose FraQ, an efficient coordinate-space recompression method for federated LoRA. Starting from stacked factors that represent the exact aggregate, FraQ expresses the aggregate as the product of an orthonormal basis and a compact coordinate matrix. It then recovers the singular spectrum from a small Gram matrix of this coordinate representation and selects the smallest rank satisfying a prescribed energy threshold. The selected coordinate subspace is mapped back via the basis to construct the global adapter. Experiments across text classification and commonsense reasoning benchmarks demonstrate that FraQ achieves accuracy close to that of uncompressed baselines while substantially reducing downlink communication and incurring low server-side recompression overhead.
Overview
FraQ aggregates heterogeneous client-side LoRA adapters in a compact coordinate space. The server orients the weighted factor stacks along the smaller weight dimension, computes a single reduced Householder QR factorization, and recovers the spectrum from a small Gram matrix rather than reconstructing the full dense update.
FraQ represents the exact aggregate in coordinate space, selects a rank-adaptive approximation, and broadcasts a compact global adapter to clients.
Highlights
- Exact aggregation before truncation. FraQ preserves the weighted aggregate represented by stacked LoRA factors before applying rank-adaptive recompression.
- One-sided, direction-adaptive factorization. A single reduced Householder QR factorization is applied along the smaller weight dimension; the larger dimension appears only in matrix multiplications involving compact factors.
- Communication-aware rank selection. An energy threshold controls the downlink size of the compact global adapter while maintaining strong accuracy.
Method
In each communication round, client trains a local LoRA adapter with rank and scale . The server first constructs weighted stacked factors by concatenating the client adapters:
where is the aggregation weight for client . This gives an exact factorized representation of the weighted average update:
FraQ then recompresses this aggregate without forming the dense matrix. It orients the factors along the smaller weight dimension:
A reduced Householder QR factorization of obtains and an implicit representation of the orthonormal basis , with . FraQ forms the coordinate matrix and the compact Gram matrix
Because the oriented aggregate satisfies and is orthonormal, the eigenvalues of equal the squared singular values of the exact aggregate. FraQ selects the smallest rank whose retained spectral energy exceeds and computes
The stored Householder reflectors are applied directly to , so the full basis need not be materialized. The resulting factors are mapped back to the original orientation and broadcast as the compact global adapter .
BibTeX
@misc{li2026fraqefficientcoordinatespacerecompression, title={FraQ: Efficient Coordinate-Space Recompression for Federated Low-Rank Adaptation}, author={Shenghui Li and Thiemo Voigt}, year={2026}, eprint={2608.03605}, archivePrefix={arXiv}, primaryClass={cs.AI}, url={https://arxiv.org/abs/2608.03605},}