Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

Beyond Personalization: Federated Recommendation with Calibration via Low-rank Decomposition

T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Federated recommendation's shared item embeddings skew each client's local user model; a low-rank buffer matrix recalibrates it and personalizes items, beating all compared baselines on five datasets.

desk verdict A real phenomenon and a plausible fix, but the theory leans on an unjustified contraction assumption; empirically interesting enough to send to a serious referee. read the letter →

arxiv 2506.09525 v1 pith:VKSXG7CC submitted 2025-06-11 cs.CR

classification cs.CR
keywords federatedrecommendationuserembeddingskewcalibrationlow-rankdecompositionpersonalizationlocaldifferentialprivacymatrixfactorization
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper argues that in federated recommendation, the item embeddings shared and aggregated across clients quietly distort each client's locally kept user embedding, pushing it toward a collaborative but individually suboptimal point. The authors name this the 'user embedding skew' and derive the two gradient terms—a scaling term and a shift term—through which the gap between global and local item embeddings alters the user embedding's update. Their proposed method, PFedCLR, adds a low-rank buffer matrix that simultaneously recalibrates the user embedding and personalizes item embeddings, and it uploads the unpersonalized model before personalization so the server never sees user-specific information. On five datasets PFedCLR beats existing federated and personalized-federated baselines by wide margins while adding only small client-side overhead, a result the paper attributes to correcting the previously ignored skew.

What carries the argument

The load-bearing object is the buffer matrix $W_u \in \mathbb{R}^{m \times d}$, implemented in low-rank form $A_u B_u$ with $A_u \in \mathbb{R}^{m \times r}$ zero-initialized and $B_u \in \mathbb{R}^{r \times d}$ randomly initialized, $r \ll \min(m,d)$. It is injected into the frozen local item embeddings as $Q_u + A_u B_u$ and jointly serves two functions: its update produces the calibration terms $-\eta L_1 L_2 p_u^\top p_u \cdot q_i^{(u)}$ and $-\eta L_1^2 p_u$, which oppose the scaling and shift components of the user embedding skew, and its merged form personalizes the global item embeddings per client. The analysis decomposes the skew into these two gradient terms, and the protocol's ordering, train item embeddings with the user embedding frozen, upload, then calibrate, is what keeps the server from ever seeing the personalized model.

What would settle it

Run FedMF on a standard dataset and record $\|q_i^{(g,t)} - q_i^{(u,t)}\|$ per item per round; if the maximum ratio ever exceeds 1 or fails to trend below 1, the geometric contraction behind the skew bound is violated and the bound does not apply as stated.

Watch

Extended reading notes

Core claim

PFedCLR's central claim is that user embeddings in embedding-based federated recommender systems suffer from a skew: global aggregation introduces a gap $\delta_i^{(t)}$ between the server-level item embedding and the local one, and this gap injects a scaling term and a shift term into the user embedding's gradient that rotate and stretch its update direction. The theory bounds the accumulated skew over $T$ rounds under a geometric contraction assumption, concluding that the user embedding would converge to a suboptimal point and that the damage should be mitigated from the very first rounds. The proposed remedy is a zero-initialized buffer matrix, decomposed into low-rank factors $A_u B_u$, that is optimized while the item embedding is frozen; the buffer's update produces calibration terms that oppose the skew, and merging the buffer with the local item embeddings also yields client-specific item personalization. By uploading the model before running this personalization step, the server only receives the unpersonalized item embeddings, preserving privacy while the calibration stays on-device. Experiments report consistent gains, with HR@10 above 0.9 on four datasets and up to 39.8% relative improvement over the best baseline, plus negligible extra space and parallel client-server execution.

Load-bearing premise

The whole skew bound depends on the assumption that the gap between each global and local item embedding shrinks by a factor $\gamma < 1$ every round; if local training and global aggregation instead amplify the gap, the accumulated-skew bound and the 'calibrate from round one' argument lose their theoretical support.

Editorial extensions

If this is right

  • Baselines that personalize before uploading leak user preference patterns in the uploaded item embeddings, whereas PFedCLR's upload-before-personalization ordering prevents that leakage.
  • The low-rank buffer needs only about 10% extra client-side space at rank 2 and can be trained in parallel with server aggregation, keeping per-round efficiency close to plain FedMF.
  • Calibration must start from round one: the accumulated skew bound is governed by the initial gap $\delta_i^{(0)}$, so injecting the buffer late cannot undo the distortion.
  • PFedCLR stays stable under local differential privacy: with Laplace noise of strength $\lambda = 0.5$, performance degradation stays below 5% on all five datasets and still exceeds the state-of-the-art baselines.
  • Because the buffer simultaneously personalizes item embeddings, PFedCLR closes much of the gap toward centralized recommenders, matching or beating them on most datasets tested.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same skew mechanism should appear in any federated method that aggregates shared item-side parameters while keeping user-side parameters local; a testable extension is to apply the calibration buffer to NCF-style or graph-based backbones instead of matrix factorization.
  • The motivation plots show local-only training eventually outperforming aggregation on long horizons, which suggests that annealing the aggregation weight over rounds could improve late-stage accuracy, an implication the paper reports but does not pursue.
  • The geometric contraction assumption ($\gamma < 1$) deserves a direct empirical check: logging the per-round gap between global and local item embeddings in a standard FedMF run would either confirm the bound or show that a different mechanism, such as gradient diversity, is what actually controls the skew.
  • A low-rank calibration buffer placed before personalization could also serve as a privacy shield against membership inference in other embedding-based federated models, not just matrix-factorization recommenders.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. This paper studies federated recommendation (FR) and the phenomenon that globally aggregated item embeddings can distort the local user embedding updates, a problem the authors term "user embedding skew." The authors provide a theoretical analysis of this skew via a Taylor expansion (Lemmas 3.1-3.3) and propose PFedCLR, which uses a low-rank buffer matrix to simultaneously calibrate the user embedding and personalize item embeddings. The method is evaluated on five benchmark datasets against centralized and federated baselines, reporting large improvements in HR@10 and NDCG@10, along with efficiency comparisons and a local differential privacy extension. The code is publicly available.

Significance. The paper addresses a practical and under-explored issue in personalized federated recommendation, and the proposed mechanism is simple, lightweight, and privacy-aware. If the reported gains are reproducible and the theoretical motivation can be placed on firmer ground, PFedCLR could be a useful contribution to the FR literature. The paper also includes a thorough experimental section with five datasets, a cost analysis, and a privacy analysis, and it ships code. These strengths are tempered by gaps in the theoretical derivation and by the lack of statistical reporting in the main experiments.

major comments (4)
  1. [§B.3, Lemma B.3 (Eq. 19/23)] The bound on accumulated user embedding skew relies critically on the assumption ||δ_i^(t+1)|| ≤ γ||δ_i^(t)|| with γ∈(0,1), justified only by a generic reference to the convergence property of FedAvg [17,40]. FedAvg convergence results bound the global model's behavior, not the per-client gap between the global item embedding q_g^(t) and a client's locally trained item embedding q_u^(t). Under non-IID data, this gap can stay large, oscillate, or grow, especially since PFedCLR deliberately trains the uploaded model before personalization and uses a different effective item embedding for the user update. If γ≥1, the bound in Eq. (23) diverges, and the conclusion in Remark B.4 that accumulated skew is finite and that early calibration is sufficient collapses. As the theoretical analysis of the skew is a central claimed contribution, this unsupported contraction assumption needs to be either proved under explicit conditions or substantially weakened.
  2. [§5.2, Table 1; §C.3] Although the implementation details state that results are the average of 5 repeated experiments, no standard deviations, confidence intervals, or significance tests are reported for any of the main results. This makes it impossible to assess whether PFedCLR's improvements over the baselines are statistically reliable. Additionally, the reported HR@10=0.9989 on ML-100K is near saturation and is not explained; the evaluation protocol does not clearly specify how many negative candidates are used per positive item in the leave-one-out setting. The paper mentions sampling N=4 negative instances per positive sample for training, but the evaluation candidate set is not specified. This is essential for interpreting the scores, and the near-perfect values raise concerns about whether the evaluation setup is overly easy (e.g., a very small candidate set). Please report variances, use significance tests where appropriate, and specify the exact evaluation candidate construction.
  3. [§4.2, Lemma 4.1 (Eq. 7)] The calibration analysis shows that the low-rank buffer matrix introduces correction terms with the same algebraic structure as the skew terms in Lemma 3.2, but it does not establish that the residual skew is actually reduced or bounded. The proof in Lemma B.5 uses a first-order approximation and drops terms of order O(||δ_i + w_i||^2), and the correction terms involve p_u, not δ_i, so the cancellation is only structural and approximate. To support the claim that PFedCLR "effectively mitigates user embedding skew," the paper should provide either a quantitative bound on the remaining skew after calibration or a direct empirical measurement showing that the user embedding trajectories under PFedCLR are closer to the no-global-aggregation trajectories than those of the baselines.
  4. [§3, Lemmas 3.1-3.3 vs. §4, Step 1/2] The theoretical skew analysis in Lemma B.2 derives the skew term for a user embedding update that directly uses the globally aggregated item embeddings q^(g)_i. However, in PFedCLR, Step 1 freezes the user embedding and trains the local item embeddings Q_u from Q_g, and only in Step 2 is the user embedding updated using Q_u + A_u B_u, not Q_g. Thus, the analytical expression for the skew does not directly describe the actual user update in the proposed algorithm. This gap between the theory and the algorithmic procedure makes it unclear how the theoretical analysis justifies the specific design choices of PFedCLR. The authors should reconcile the theory with the actual update rule, or explicitly frame the theory as a motivating approximation for a different (simpler) FR setting and provide an empirical validation of the skew phenomenon in their own algorithm.
minor comments (5)
  1. [§1, footnote 2] The definitions of "global optimum" and "local optimum" in the footnote are unconventional; consider renaming them (e.g., "collaborative optimum" and "individual optimum") to avoid confusion with standard optimization terminology.
  2. [§2, Figure 2 and §5.3, Figure 5] The t-SNE trajectory subfigures are very small and the legend entries are nearly illegible; please enlarge the figures or provide separate panels with readable labels.
  3. [§5.5 and Appendix D.7] The statement that uploading the non-personalized local model "prevents the server from accessing sensitive information" is too strong in the absence of a formal privacy guarantee; the inherent privacy claim should be presented as an empirical property, with LDP being the formal mechanism, and the wording should be adjusted accordingly.
  4. [§4.1, Eq. (6) and §5.1] The learning rate β for the low-rank matrices is introduced in Section 4.2 but its interaction with the embedding learning rate η is not discussed until Appendix D.6; consider mentioning the default setting (β=η=0.01) in the main text.
  5. [Appendix D.1] The evaluation protocol for the motivation experiment should state the number of negative candidates used for computing HR@10 and NDCG@10, just as recommended for the main experiments, so that the near-saturated scores can be interpreted.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the skew and calibration terms are derived by self-contained Taylor expansions, and the weak contraction assumption in Lemma B.3 is a correctness gap rather than a circular reduction.

full rationale

The derivation chain is formally self-contained. Lemma 3.2 (Appendix B.2) computes the user-embedding skew by a first-order Taylor expansion of the BCE gradient about the local item embedding, i.e., the difference between the gradient evaluated at the global item embedding and the local one; this is a mathematical identity, not a fitted quantity. Lemma 4.1 (Appendix B.5) derives the calibration term by the same expansion after injecting a zero-initialized buffer matrix and taking one gradient step for the buffer; Eq. (7) is not set equal to Eq. (4) by construction, because the skew depends on the global-local item gap delta_i while the calibration depends on the user embedding p_u, and no constant is fitted to any target metric. The empirical claims are tested against held-out HR/NDCG and external baselines, so the central results do not reduce to the paper's own definitions. The main theoretical weakness is Lemma B.3's assumed contraction ||delta_i^(t+1)|| <= gamma ||delta_i^(t)|| with gamma < 1, justified only by a generic FedAvg convergence citation; if that contraction fails in non-IID personalized federated recommendation, the accumulated-skew bound diverges and the theory does not establish the mitigation claim. That is an unsupported premise and a correctness risk, but not a circular reduction. Self-citations in the paper (e.g., [31]) appear as context or framework references and are not load-bearing for the main derivations. Overall, there is no exhibited circular step, so the appropriate finding is a low score.

Assumptions & free parameters 3 free parameters · 3 assumptions · 1 invented entities

The method introduces two tuned hyperparameters (rank r and learning rate β), relies on a geometric contraction assumption for the skew bound, and adds a buffer matrix that is validated empirically.

free parameters (3)
  • rank r of low-rank matrices = 2 (searched over {1,2,4,6,8,10,12})
    Chosen by validation-set performance; a hyperparameter of the proposed method.
  • learning rate β of low-rank matrices = 0.01 (searched over {0.1,0.01,0.001,0.0001,0})
    Chosen by validation performance; β=η=0.01 gives best results.
  • Laplace noise strength λ for LDP experiments = 0.5 (main table), robustness up to 1.0
    A hyperparameter controlling the privacy/utility trade-off; results are reported for selected values.
assumptions (3)
  • domain assumption The difference δ_i between global and local item embeddings contracts geometrically: ||δ_i^(t+1)|| ≤ γ ||δ_i^(t)|| with γ in (0,1).
    Invoked in the proof of Lemma B.3 to bound accumulated skew; the paper justifies it by appealing to the convergence of FedAvg, but this is not proven for the personalized FR setting.
  • standard math First-order Taylor expansion of the sigmoid with higher-order terms neglected.
    Used in Lemma B.2 and Lemma B.5 to derive the skew and calibration terms; valid only when ||δ_i|| is small.
  • domain assumption The user embedding is frozen during Step 1 to avoid skew from Q_g; this decoupling is assumed to not break the joint optimization.
    The alternating update scheme in Algorithm 1 relies on this design choice, but no convergence guarantee for the alternating scheme is provided.
invented entities (1)
  • Dual-function buffer matrix W_u (low-rank AuBu) independent evidence
    purpose: Simultaneously calibrates the local user embedding against aggregation-induced skew and personalizes global item embeddings for each client.
    The matrix is a model component with reported empirical gains across five datasets and ablations; its effect is observable in the trajectory/embedding visualizations, so it has independent evidence beyond the theory.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Beyond Personalization: Federated Recommendation with Calibration via Low-rank Decomposition." pith.science (2026). https://pith.science/paper/VKSXG7CC

@misc{pith2026250609525,
  author       = {Pith},
  title        = {Pith review of: Beyond Personalization: Federated Recommendation with Calibration via Low-rank Decomposition},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/VKSXG7CC}},
  note         = {Machine review of arXiv:2506.09525}
}
read the original abstract

Federated recommendation (FR) is a promising paradigm to protect user privacy in recommender systems. Distinct from general federated scenarios, FR inherently needs to preserve client-specific parameters, i.e., user embeddings, for privacy and personalization. However, we empirically find that globally aggregated item embeddings can induce skew in user embeddings, resulting in suboptimal performance. To this end, we theoretically analyze the user embedding skew issue and propose Personalized Federated recommendation with Calibration via Low-Rank decomposition (PFedCLR). Specifically, PFedCLR introduces an integrated dual-function mechanism, implemented with a buffer matrix, to jointly calibrate local user embedding and personalize global item embeddings. To ensure efficiency, we employ a low-rank decomposition of the buffer matrix to reduce the model overhead. Furthermore, for privacy, we train and upload the local model before personalization, preventing the server from accessing sensitive information. Extensive experiments demonstrate that PFedCLR effectively mitigates user embedding skew and achieves a desirable trade-off among performance, efficiency, and privacy, outperforming state-of-the-art (SOTA) methods.

Figures

Figures reproduced from arXiv: 2506.09525 by the authors.

Figure 1
Figure 1. Different frameworks for federated recommendation (FR). While existing pFR methods [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Motivation. "LT w/o GA" denotes only local training without global aggregation, while "w/ GA (i- )" denotes that global aggregation is performed from round i onwards, rather than local training only. However, we empirically find that the glob￾ally aggregated item embeddings can distort the training trajectories of local user embed￾ding, leading to suboptimal solutions. In the experiment, we start global aggregation … view at source ↗
Figure 3
Figure 3. An overview of PFedCLR. During local training, the client only updates the global model [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Efficiency comparison on ML-1M. The position of each bubble indicates the space cost, while its size reflects the average training time per round. A smaller bubble de￾notes more efficient training per round. Efficiency. We further compare the time and space costs of di…
Figure 5
Figure 5. Figure 5: Training trajectories of lo￾cal user embedding for Client #94. "GA" denotes global aggregation. Trajectory visualization. The t-SNE training trajectories of local user embedding under different variants are illus￾trated in [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 6
Figure 6. Figure 6: Visualizations of embeddings for Client #233. The [PITH_FULL_IMAGE:figures/full_fig_p008_6.png]
Figure 7
Figure 7. Figure 7: Model performance and extra overhead under different rank. The horizontal axis is the [PITH_FULL_IMAGE:figures/full_fig_p009_7.png]
Figure 8
Figure 8. Figure 8: Visualizations of item embeddings uploaded to the server by different pFR methods. Items [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]
Figure 9
Figure 9. Figure 9: More pre-experimental results for motivation. Subfigures (a) and (b) show performance on [PITH_FULL_IMAGE:figures/full_fig_p020_9.png]
Figure 10
Figure 10. Figure 10: We provide the following analysis: I) Early-stage convergence: PFedCLR exhibits a faster convergence speed in the early training rounds and consistently outperforms other methods on most datasets, particularly on ML-100K, ML-1M, and HetRec2011. This advantage stems fr…
Figure 10
Figure 10. Figure 10: Model convergence comparison. The horizontal axis is the federated rounds, and the [PITH_FULL_IMAGE:figures/full_fig_p022_10.png]
Figure 11
Figure 11. Figure 11: Performance and training trajectory under different variants. "GA", "AF", "CF", and [PITH_FULL_IMAGE:figures/full_fig_p022_11.png]
Figure 12
Figure 12. Figure 12: T-SNE visualizations of user and item embeddings learned by FedMF and PFedCLR. [PITH_FULL_IMAGE:figures/full_fig_p023_12.png]
Figure 13
Figure 13. Figure 13: Model performance under different learning rate [PITH_FULL_IMAGE:figures/full_fig_p024_13.png]
Figure 14
Figure 14. Figure 14: T-SNE visualizations of item embeddings uploaded to the server by different methods. [PITH_FULL_IMAGE:figures/full_fig_p025_14.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Breaking the Aggregation Bottleneck in Federated Recommendation: A Personalized Model Merging Approach

    cs.DC 2025-08 unverdicted novelty 4.0 of 10

    FedEM blends each client's local model with the federated global model to counter the claimed aggregation bottleneck in federated recommendation, where averaging harms personalization.

Reference graph

Works this paper leans on

44 extracted references · 39 canonical work pages · cited by 1 Pith paper

  1. [1]

    A survey on federated recommendation systems

    Zehua Sun, Yonghui Xu, Yong Liu, Wei He, Lanju Kong, Fangzhao Wu, Yali Jiang, and Lizhen Cui. A survey on federated recommendation systems. IEEE TNNLS, pages 6–20, 2024

  2. [2]

    On-device recommender systems: A comprehensive survey

    Hongzhi Yin, Liang Qu, Tong Chen, Wei Yuan, Ruiqi Zheng, Jing Long, Xin Xia, Yuhui Shi, and Chengqi Zhang. On-device recommender systems: A comprehensive survey. arXiv preprint arXiv:2401.11441, 2024

  3. [3]

    Personalized Recommendation Models in Federated Settings: A Survey

    Chunxu Zhang, Guodong Long, Zijian Zhang, Zhiwei Li, Honglei Zhang, Qiang Yang, and Bo Yang. Personalized recommendation models in federated settings: A survey. arXiv preprint arXiv:2504.07101, 2025

  4. [4]

    Federated collaborative filtering for privacy-preserving personalized recommendation system

    Muhammad Ammad-Ud-Din, Elena Ivannikova, Suleiman A Khan, Were Oyomno, Qiang Fu, Kuan Eeik Tan, and Adrian Flanagan. Federated collaborative filtering for privacy-preserving personalized recommendation system. arXiv preprint arXiv:1901.09888, 2019

  5. [5]

    Secure federated matrix factorization

    Di Chai, Leye Wang, Kai Chen, and Qiang Yang. Secure federated matrix factorization. IEEE Intelligent Systems, pages 11–20, 2020

  6. [6]

    Federated neural collaborative filtering

    Vasileios Perifanis and Pavlos S Efraimidis. Federated neural collaborative filtering. Knowledge-Based Systems, page 108441, 2022

  7. [7]

    Lightfr: Lightweight federated recommendation with privacy-preserving matrix factorization

    Honglei Zhang, Fangyuan Luo, Jun Wu, Xiangnan He, and Yidong Li. Lightfr: Lightweight federated recommendation with privacy-preserving matrix factorization. ACM TOIS, pages 1–28, 2023

  8. [8]

    Dual personalization on federated recommendation

    Chunxu Zhang, Guodong Long, Tianyi Zhou, Peng Yan, Zijian Zhang, Chengqi Zhang, and Bo Yang. Dual personalization on federated recommendation. In IJCAI, pages 4558–4566, 2023

Show all 44 references
  1. [9]

    A tutorial of personalized federated recommender systems: Recent advances and future directions

    Jing Jiang, Chunxu Zhang, Honglei Zhang, Zhiwei Li, Yidong Li, and Bo Yang. A tutorial of personalized federated recommender systems: Recent advances and future directions. In WWW, 2025

  2. [10]

    Confree: Conflict-free client update aggregation for personalized federated learning

    Hao Zheng, Zhigang Hu, Liu Yang, Meiguang Zheng, Aikun Xu, and Boyu Wang. Confree: Conflict-free client update aggregation for personalized federated learning. In AAAI, pages 22875–22883, 2025

  3. [11]

    Personalized federated learning with inferred collaboration graphs

    Rui Ye, Zhenyang Ni, Fangzhao Wu, Siheng Chen, and Yanfeng Wang. Personalized federated learning with inferred collaboration graphs. In ICML, pages 39801–39817, 2023

  4. [12]

    Gpfedrec: Graph-guided personalization for federated recommendation

    Chunxu Zhang, Guodong Long, Tianyi Zhou, Zijian Zhang, Peng Yan, and Bo Yang. Gpfedrec: Graph-guided personalization for federated recommendation. In KDD, pages 4131–4142, 2024

  5. [13]

    Federated recommendation with additive person- alization

    Zhiwei Li, Guodong Long, and Tianyi Zhou. Federated recommendation with additive person- alization. In ICLR, 2024

  6. [14]

    Personalized federated learning with theoretical guarantees: A model-agnostic meta-learning approach

    Alireza Fallah, Aryan Mokhtari, and Asuman Ozdaglar. Personalized federated learning with theoretical guarantees: A model-agnostic meta-learning approach. In NeurIPS, pages 3557– 3568, 2020

  7. [15]

    Personalized federated learning with moreau envelopes

    Canh T Dinh, Nguyen Tran, and Josh Nguyen. Personalized federated learning with moreau envelopes. In NeurIPS, pages 21394–21405, 2020

  8. [16]

    Model-agnostic meta-learning for fast adapta- tion of deep networks

    Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adapta- tion of deep networks. In ICML, pages 1126–1135, 2017

  9. [17]

    Communication-efficient learning of deep networks from decentralized data

    Brendan McMahan, Eider Moore, Daniel Ramage, Seth Hampson, and Blaise Aguera y Arcas. Communication-efficient learning of deep networks from decentralized data. In AISTATS, pages 1273–1282, 2017

  10. [18]

    Personalized federated learning using hypernetworks

    Aviv Shamsian, Aviv Navon, Ethan Fetaya, and Gal Chechik. Personalized federated learning using hypernetworks. In ICML, pages 9489–9502, 2021. 10

  11. [19]

    Fedmd: Heterogenous federated learning via model distillation

    Daliang Li and Junpu Wang. Fedmd: Heterogenous federated learning via model distillation. In NeurIPS, 2019

  12. [20]

    Ensemble distillation for robust model fusion in federated learning

    Tao Lin, Lingjing Kong, Sebastian U Stich, and Martin Jaggi. Ensemble distillation for robust model fusion in federated learning. In NeurIPS, pages 2351–2363, 2020

  13. [21]

    Practical one-shot federated learning for cross-silo setting

    Qinbin Li, Bingsheng He, and Dawn Song. Practical one-shot federated learning for cross-silo setting. In IJCAI, pages 1484–1490, 2021

  14. [22]

    Ditto: Fair and robust federated learning through personalization

    Tian Li, Shengyuan Hu, Ahmad Beirami, and Virginia Smith. Ditto: Fair and robust federated learning through personalization. In ICML, pages 6357–6368, 2021

  15. [23]

    Exploiting shared representations for personalized federated learning

    Liam Collins, Hamed Hassani, Aryan Mokhtari, and Sanjay Shakkottai. Exploiting shared representations for personalized federated learning. In ICML, pages 2089–2099, 2021

  16. [24]

    Fedala: Adaptive local aggregation for personalized federated learning

    Jianqing Zhang, Yang Hua, Hao Wang, Tao Song, Zhengui Xue, Ruhui Ma, and Haibing Guan. Fedala: Adaptive local aggregation for personalized federated learning. In AAAI, pages 11237–11244, 2023

  17. [25]

    Fedphp: Federated personalization with inherited private models

    Xin-Chun Li, De-Chuan Zhan, Yunfeng Shao, Bingshuai Li, and Shaoming Song. Fedphp: Federated personalization with inherited private models. In ECML PKDD, pages 587–602, 2021

  18. [26]

    Adaptive personalized federated learning

    Yuyang Deng, Mohammad Mahdi Kamani, and Mehrdad Mahdavi. Adaptive personalized federated learning. arXiv preprint arXiv:2003.13461, 2020

  19. [27]

    Matrix factorization techniques for recom- mender systems

    Yehuda Koren, Robert Bell, and Chris V olinsky. Matrix factorization techniques for recom- mender systems. Computer, pages 30–37, 2009

  20. [28]

    Neural collaborative filtering

    Xiangnan He, Lizi Liao, Hanwang Zhang, Liqiang Nie, Xia Hu, and Tat-Seng Chua. Neural collaborative filtering. In WWW, pages 173–182, 2017

  21. [29]

    Lora: Low-rank adaptation of large language models

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. Lora: Low-rank adaptation of large language models. In ICLR, page 3, 2022

  22. [30]

    Towards efficient communication and secure federated recommendation system via low-rank training

    Ngoc-Hieu Nguyen, Tuan-Anh Nguyen, Tuan Nguyen, Vu Tien Hoang, Dung D Le, and Kok- Seng Wong. Towards efficient communication and secure federated recommendation system via low-rank training. In WWW, pages 3940–3951, 2024

  23. [31]

    Beyond similarity: Personalized federated recommendation with composite aggregation

    Honglei Zhang, Haoxuan Li, Jundong Chen, Sen Cui, Kunda Yan, Abudukelimu Wuerkaixi, Xin Zhou, Zhiqi Shen, and Yidong Li. Beyond similarity: Personalized federated recommendation with composite aggregation. arXiv preprint arXiv:2406.03933, 2024

  24. [32]

    Personalized federated collaborative filtering: A variational autoencoder approach

    Zhiwei Li, Guodong Long, Tianyi Zhou, Jing Jiang, and Chengqi Zhang. Personalized federated collaborative filtering: A variational autoencoder approach. In AAAI, pages 18602–18610, 2025

  25. [33]

    Fedloca: Low-rank coordinated adaptation with knowledge decoupling for federated recommendations

    Yuchen Ding, Siqing Zhang, Boyu Fan, Wei Sun, Yong Liao, and Peng Yuan Zhou. Fedloca: Low-rank coordinated adaptation with knowledge decoupling for federated recommendations. In RecSys, pages 690–700, 2024

  26. [34]

    A novel bayesian similarity measure for recommender systems

    Guibing Guo, Jie Zhang, and Neil Yorke-Smith. A novel bayesian similarity measure for recommender systems. In IJCAI, pages 2619–2625, 2013

  27. [35]

    The movielens datasets: History and context

    F Maxwell Harper and Joseph A Konstan. The movielens datasets: History and context. ACM TIIS, pages 1–19, 2015

  28. [36]

    Second workshop on information het- erogeneity and fusion in recommender systems (hetrec2011)

    Iván Cantador, Peter Brusilovsky, and Tsvi Kuflik. Second workshop on information het- erogeneity and fusion in recommender systems (hetrec2011). In RecSys, pages 387–388, 2011

  29. [37]

    A generic coordinate descent framework for learning from implicit feedback

    Immanuel Bayer, Xiangnan He, Bhargav Kanagal, and Steffen Rendle. A generic coordinate descent framework for learning from implicit feedback. In WWW, pages 1341–1350, 2017. 11

  30. [38]

    Trirank: Review-aware explainable recommendation by modeling aspects

    Xiangnan He, Tao Chen, Min-Yen Kan, and Xiao Chen. Trirank: Review-aware explainable recommendation by modeling aspects. In CIKM, pages 1661–1670, 2015

  31. [39]

    Lightgcn: Simplifying and powering graph convolution network for recommendation

    Xiangnan He, Kuan Deng, Xiang Wang, Yan Li, Yongdong Zhang, and Meng Wang. Lightgcn: Simplifying and powering graph convolution network for recommendation. In SIGIR, pages 639–648, 2020

  32. [40]

    On the convergence of fedavg on non-iid data

    Xiang Li, Kaixuan Huang, Wenhao Yang, Shusen Wang, and Zhihua Zhang. On the convergence of fedavg on non-iid data. In ICLR, 2019

  33. [41]

    A federated graph neural network framework for privacy-preserving personalization

    Chuhan Wu, Fangzhao Wu, Lingjuan Lyu, Tao Qi, Yongfeng Huang, and Xing Xie. A federated graph neural network framework for privacy-preserving personalization. Nature Communications, page 3091, 2022

  34. [42]

    Calibrating noise to sensitivity in private data analysis

    Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In TCC, pages 265–284, 2006

  35. [43]

    Guaranteeing local differential privacy on ultra-low-power systems

    Woo-Seok Choi, Matthew Tomei, Jose Rodrigo Sanchez Vicarte, Pavan Kumar Hanumolu, and Rakesh Kumar. Guaranteeing local differential privacy on ultra-low-power systems. In ISCA, pages 561–574, 2018

  36. [44]

    ↑" denotes increased costs on FedMF, while

    Kang Wei, Jun Li, Ming Ding, Chuan Ma, Howard H Yang, Farhad Farokhi, Shi Jin, Tony QS Quek, and H Vincent Poor. Federated learning with differential privacy: Algorithms and performance analysis. IEEE TIFS, pages 3454–3469, 2020. 12 Appendix To support the main content of the ...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.