← Back to Paper List

Dual Personalization on Federated Recommendation

Chunxu Zhang, Guodong Long, Tianyi Zhou, Peng Yan, Zijian Zhang, Chengqi Zhang, Bo Yang
Jilin University, University of Technology Sydney, University of Maryland
arXiv (2023)
Recommendation P13N

πŸ“ Paper Summary

Federated Recommendation Systems Personalized Federated Learning On-device Recommendation
PFedRec is a federated recommendation framework that simultaneously learns a personalized local score function and fine-tunes item embeddings locally to capture user-specific preferences without exposing user data.
Core Problem
Existing federated recommendation systems typically learn a heavyweight global model on the server and share identical item embeddings across all users, failing to capture fine-grained user-specific views on item relationships.
Why it matters:
  • Standard federated approaches hinder the deployment of lightweight on-device models by relying on server-centric heavy models
  • Sharing exactly the same item embeddings ignores that different users may perceive the proximity and utility of items differently
  • Privacy concerns require minimizing data exposure, yet personalization is critical for effective recommendation
Concrete Example: In standard FedRec, if User A and User B both like 'Sci-Fi', they share the exact same embedding for the movie 'Matrix'. However, User A might view 'Matrix' as similar to 'Inception' (plot complexity), while User B views it as similar to 'Star Wars' (action). A global embedding forces a compromise, losing these specific personal views.
Key Novelty
Dual Personalization Mechanism (PFedRec)
  • Splits the recommendation model into a personalized score function (kept local) and item embeddings (shared but locally fine-tuned)
  • Uses a 'post-tuning' strategy where clients first update their score function using global embeddings, then fine-tune the item embeddings on their local data to create a personalized view before aggregation
Architecture
Architecture Figure Figure 1(c)
The conceptual framework of PFedRec compared to FedMF and FedNCF. It illustrates the 'Dual Personalization' approach where both the score function and item embeddings are personalized.
Evaluation Highlights
  • +13.53% HR@10 improvement on MovieLens-100K when integrating Dual Personalization into FedNCF
  • +18.29% NDCG@10 improvement on MovieLens-100K when integrating Dual Personalization into FedNCF
  • PFedRec outperforms state-of-the-art federated baselines (FedMF, FedNCF, FedRecon) across four datasets (MovieLens, Lastfm-2K, Amazon-Video)
Breakthrough Assessment
7/10
Offers a simple yet effective architectural shift for federated recommendation by personalizing item embeddings, a component usually kept global. Significant empirical gains, though the underlying technique is a straightforward application of fine-tuning.
×