Pith. sign in

REVIEW 4 major objections 6 minor 41 references

Privacy-Preserving Multimodal News Recommendation through Federated Learning

T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read Fed-MM-PNR: a federated, multimodal news recommender that matches centralized accuracy while keeping clicks on devices.

desk verdict Plausible integration of known components, but the federated training loop is underspecified and the evaluation is not trustworthy as written. read the letter →

arxiv 2507.15460 v3 pith:P63HB2CZ submitted 2025-07-21 cs.SI cs.LG

classification cs.SIcs.LG
keywords federatedlearningmultimodalnewsrecommendationsecureaggregationShamirsecretsharingshort-termandlong-termuserinterestMINDdatasetprivacy-preserving
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

Personalized news recommendation normally trades privacy for accuracy: a central server stores click histories to train a model. This paper claims that the trade can be avoided. It introduces Fed-MM-PNR, a federated learning framework in which a server keeps a multimodal news encoder while each user's click history stays on the device; clients send only gradients, protected by Shamir-secret-sharing secure aggregation. On the MIND dataset the authors report AUC 0.698, MRR 0.350, nDCG@5 0.384, and nDCG@10 0.442, which beats every baseline they list except the centralized Hyper4NR. A sympathetic reading: if these numbers hold, federated, privacy-preserving training is a viable path for news platforms rather than a necessary accuracy sacrifice.

What carries the argument

The central object is the split model: a server-side multimodal news encoder (BERT title encoder plus ViT image encoder, late-fusion additive attention) that produces news vectors, and a lightweight user encoder that applies multi-head self-attention to the clicked-news sequence to form long-term and short-term user vectors, fuses them with additive attention, and scores candidates by dot product. The federated loop has each selected client fetch only the news vectors for its own clicked items, compute local gradient updates from the cross-entropy loss over clicked and sampled non-clicked news, and submit those gradients through Shamir-secret-sharing secure aggregation; the server aggregates them to update the global user model and, according to the paper, relevant parts of the news model.

What would settle it

Instrument the federated training loop to record the norm of news-encoder parameter updates per round. If the news encoder's weights are identical before and after aggregation, the claimed joint update of the news model does not happen, and the architecture reduces to a federated user model over frozen multimodal embeddings.

Watch

Extended reading notes

Core claim

The paper introduces Fed-MM-PNR, a federated multimodal news recommendation system in which a server maintains a large multimodal news encoder while clients keep their click histories local. The authors claim that combining text and cover-image representations with both long- and short-term user interest modeling, trained through federated averaging with Shamir secret sharing, yields AUC 0.698, MRR 0.350, nDCG@5 0.384, and nDCG@10 0.442 on MIND. On those numbers Fed-MM-PNR outperforms every listed centralized and federated baseline except the centralized Hyper4NR, and it beats the multimodal centralized models NRMS-IM, FIM-IM, and VLSNR despite never collecting user browsing data on the server. The paper's conclusion is that privacy-preserving federated training, with careful architecture design, can match or exceed centralized recommendation quality.

Load-bearing premise

The central load-bearing premise is that clients can compute gradients that update the server-held news model even though the paper gives no equation for how news-model parameters receive those gradients; if the news encoder is actually frozen, the claimed 'updated news model' and the accuracy attributed to it are unsupported.

Editorial extensions

If this is right

  • A deployed news platform could train a multimodal recommender without storing user click histories on a central server, since only aggregated gradients and group-level news-pool requests leave client devices.
  • Multimodal content (title plus cover image) is necessary for the accuracy gain: the paper's own ablation shows text-only and image-only variants both lag behind the fused model.
  • Modeling short-term interests on top of long-term history helps; the paper reports best results with the most recent 20 of 50 clicked news items used for the short-term branch.
  • Federated training with secure aggregation is not inherently a quality tax: on MIND, Fed-MM-PNR beats the multimodal centralized baselines VLSNR, NRMS-IM, and FIM-IM.
  • The practical sweet spot in this setup is roughly 200 participating users per round, balancing accuracy against the steep rise in training time at larger group sizes.

Reading between the lines

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

  • Editorial extension: the news-model update is asserted but not demonstrated; no equation details how clients, who hold only news vectors, produce gradients for server-side news-encoder parameters. If the encoder is frozen, the accuracy gains should be attributed to the user model and the fixed multimodal representations, not to jointly trained news representations.
  • Editorial extension: the comparison uses published baseline numbers rather than re-running baselines under the same federated protocol, so part of the reported margin may reflect differences in training schedule, negative sampling, or hardware rather than the architecture alone.
  • Editorial extension: the privacy claim covers the training phase; serving-time behavior, where clients receive news vectors for candidates from the server, is outside the stated guarantee and could still leak group-level access patterns.
  • Testable extension: if the news encoder is made genuinely trainable in this split architecture, one would expect news vectors to drift across rounds; measuring representation drift or gradient norms at the server would show whether the claimed joint update occurs.
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 / 6 minor

Summary. The paper proposes Fed-MM-PNR, a multimodal personalized news recommendation framework that combines textual and visual news representations with long- and short-term user interest modeling, and trains the model in a federated setting with secure aggregation based on Shamir's secret sharing. The authors evaluate the approach on the MIND-Large dataset and report that it outperforms most centralized and federated baselines on AUC, MRR, nDCG@5, and nDCG@10 while preserving user privacy. The high-level architecture is plausible, but the manuscript has two decisive technical deficiencies: the federated gradient flow for updating the news model is unspecified, so the training algorithm is not well-defined, and the baseline comparison is based on numbers copied from other papers rather than a common experimental protocol, invalidating the central empirical claim.

Significance. If the claims were supported, the paper would address a timely and important problem: combining multimodal news representation, long/short-term user modeling, and privacy-preserving federated training. The proposed architecture is a sensible extension of Efficient-FedRec to the multimodal setting, and the idea of using an aggregated news pool to hide individual click histories from the server is interesting. However, the current manuscript does not deliver valid evidence for these claims. The federated update rule for the news model is not formally defined, the evaluation uses non-standard baseline methodology, and the hyperparameters are selected in a way that is not clearly separated from test performance. No code or detailed protocol is provided, so the experiments are not reproducible from the text. These issues are load-bearing for the paper's central claim, and I cannot recommend publication in the current form.

major comments (4)
  1. [§4.1, Table 3] The federated update loop does not specify how the server updates the news model. The text says that clients 'compute the gradients of their local user model' and that the server 'updates the global user model and, if necessary, relevant parts of the news model,' but clients receive only news representation vectors and the lightweight user model, so they hold no parameters of the text encoder (BERT), image encoder (ViT), or fusion layer. Consequently, clients cannot compute ∂L/∂θ_news. For the news model to be trainable, clients would need to send upstream gradients ∂L/∂n_i for the requested news vectors, and the server would need to apply the chain rule ∂L/∂θ_news = Σ_i (∂L/∂n_i)(∂n_i/∂θ_news); this message is never described. If the news encoder is frozen, the abstract's claim of an 'updated news model' is unsupported; if it is trainable, the client-server protocol is incomplete. Either way, the reported results cannot be attributed to the algorithm as written.
  2. [§4.2, Figures 7 and 8] The baseline comparison is not a controlled experiment. The paper states, 'we relied on the performance metrics reported in their respective papers,' but those metrics are typically obtained on different dataset splits and hyperparameter settings. For example, DKN, NPA, and NRMS were originally evaluated on MIND-small, while the present paper uses MIND-Large; other baselines such as Hyper4NR may also use different splits. Without reimplementing the baselines under a common protocol, the performance gaps in Table 3 cannot be attributed to the proposed method rather than to dataset size, negative sampling, sequence length, or other settings. This invalidates the central empirical claim that Fed-MM-PNR 'outperforms most baseline models.'
  3. [§3.3, Eqs. (3)-(7)] The final configuration (M=20, group size=200) is selected based on the performance curves in Figures 7 and 8, but the paper does not state whether these curves are computed on the validation split or the test split. If they are computed on the test set, the final numbers in Table 3 are the result of test-set tuning and are optimistically biased. The paper also reports only averages over five runs without any variance or significance testing, so the apparent optimality of M=20 and group size=200 is not established statistically. The authors must specify the split used for hyperparameter selection and report standard deviations or confidence intervals.
  4. [4.2, Performance Evaluation] The secure aggregation protocol described is not Shamir's secret sharing as claimed. In Eqs. (3)-(7), each user splits each vector element into M random additive parts (hi,j = Σ_k h^k_i,j) and the server reconstructs h by summing all received column sums. This is additive secret sharing, not Shamir's polynomial-based secret sharing, which requires threshold interpolation and provides dropout resilience. The described protocol also assumes all M users complete the protocol and requires O(M^2) pairwise share distribution, and no mechanism for handling dropouts is given. Furthermore, the privacy claim that the server 'only knows the collective news accessed by a set of clients' is weak: the aggregated news pool reveals the union of the group's clicked news, and the paper provides no threat model or formal privacy analysis. These gaps directly affect the paper's stated privacy contribution.
minor comments (6)
  1. [§4.1, Table 1] The dataset is labeled 'MIND-Large' but the reported statistics (130,379 images) match IM-MIND or V-MIND; the paper should clarify which dataset variant was actually used and how the cover images were obtained, and the limitations section mentions 'MM-MIND,' which is never defined.
  2. [§3.1] The user model architecture is described only in prose; equations for the multi-head self-attention, the additive attention fusion of long- and short-term representations, and the final user representation are missing, making the model difficult to reproduce.
  3. [§3.2] The federated aggregation step is underspecified: the paper says the server 'aggregates the gradients' but does not provide the aggregation formula (e.g., FedAvg weighting), the number of communication rounds, local epochs, or the client sampling fraction.
  4. [§4.2, Figures 5 and 6] The text says these figures compare Fed-MM-PNR with single-modality and single-term variants, but the figures are not described in enough detail, and it is unclear whether they show validation or test results or include error bars.
  5. [Conclusion, §5] The claim that the framework 'can be adopted by major platforms such as Microsoft and Google News' is speculative and unsupported by the experiments.
  6. [References] Reference [17] for BERT is incomplete and does not cite the original Devlin et al. paper; the current citation appears to be a placeholder.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation: Fed-MM-PNR's federated training and evaluation do not reduce to their inputs; the flagged concerns concern evaluation comparability and an unspecified gradient path, not circularity.

full rationale

The manuscript contains no derivation chain that reduces to its own inputs. The core architecture (multimodal text/image news encoder, user encoder with long- and short-term self-attention, dot-product click score, cross-entropy loss) is a standard supervised pipeline trained and evaluated on MIND, and the federated decomposition is explicitly adopted from the external Efficient-FedRec work [29] with Shamir's secret sharing cited to [36]. There are no load-bearing self-citations by the present authors: the references to FedRec, Efficient-FedRec, MIND, BERT, ViT, and CLIP are all independent prior work, and none is relied upon as an unverified premise unique to this paper. The two concerns raised in the reader's take are not circularity under the definitions used here. First, hyperparameters M and group size are chosen from the performance curves in Figures 7 and 8 and then reported in Table 3; this is hyperparameter selection on the same benchmark, which may make the reported numbers optimistic if the tuning used the test split, but the reported metrics are still the outcome of a learned model rather than a quantity identical to the fitted input by construction. Second, Section 3.2 does not give an explicit equation for how news-model parameters receive gradients from clients that never hold the news encoder weights; this is an incompleteness in the algorithm specification, not a circular step. The paper also acknowledges its single-dataset limitation in Section 5. Because no step meets the quoted-evidence bar for self-definitional reasoning, fitted-input-as-prediction, self-citation dependence, or renaming, the appropriate finding is no significant circularity.

Assumptions & free parameters 6 free parameters · 4 assumptions · 0 invented entities

No new particles, forces, or formal objects are introduced. The framework itself is an architecture, not a postulated entity. The hand-chosen hyperparameters (L, M, group size, K, learning rate, dimension) and the untested privacy assumption are the main ledger entries.

free parameters (6)
  • short-term sequence length M = 20
    Swept from 5 to 30 in Section 4.2 and chosen as the value with the best reported test performance (Figure 7); no separate validation split is mentioned. This is a test-fitted hyperparameter.
  • user group size per FL round = 200
    Varying group size in Figure 8, the paper reports best performance at 200 and uses it for final results; this is selection on the evaluation set.
  • long-term sequence length L = 50
    Set equal to the full history length by design (Section 3.1, Table 2); not swept, but hand-chosen.
  • negative samples per positive = 20
    Randomly sampled from same impression (Section 4.1, Table 2); no ablation reported.
  • news representation dimension = 400
    Set in Table 2; free architectural choice.
  • learning rate = 6e-5
    NAdam optimizer setting in Table 2; hand-chosen.
assumptions (4)
  • domain assumption Pre-trained BERT and ViT provide useful representations of news titles and cover images.
    Section 3.1 uses them as frozen or fine-tuned extractors; no analysis of their adequacy or failure cases.
  • standard math Shamir secret sharing with M parties and threshold M prevents the server from seeing individual user data.
    Section 3.3 relies on this; standard only if there are no dropouts and no collusion between the server and M-1 users, a condition not discussed.
  • domain assumption The MIND/V-MIND/IM-MIND image associations are correct and complete for all news items used.
    Section 4.1 assumes images are available for training and evaluation; missing or mismatched images would alter the reported metrics.
  • ad hoc to paper The aggregated news pool hides individual click histories from the server.
    Section 3.3 states this without proof; with popular news items or small group sizes, rare clicks can be attributed to specific users.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Privacy-Preserving Multimodal News Recommendation through Federated Learning." pith.science (2026). https://pith.science/paper/P63HB2CZ

@misc{pith2026250715460,
  author       = {Pith},
  title        = {Pith review of: Privacy-Preserving Multimodal News Recommendation through Federated Learning},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/P63HB2CZ}},
  note         = {Machine review of arXiv:2507.15460}
}
read the original abstract

Personalized News Recommendation systems (PNR) have emerged as a solution to information overload by predicting and suggesting news items tailored to individual user interests. However, traditional PNR systems face several challenges, including an overreliance on textual content, common neglect of short-term user interests, and significant privacy concerns due to centralized data storage. This paper addresses these issues by introducing a novel multimodal federated learning-based approach for news recommendation. First, it integrates both textual and visual features of news items using a multimodal model, enabling a more comprehensive representation of content. Second, it employs a time-aware model that balances users' long-term and short-term interests through multi-head self-attention networks, improving recommendation accuracy. Finally, to enhance privacy, a federated learning framework is implemented, enabling collaborative model training without sharing user data. The framework divides the recommendation model into a large server-maintained news model and a lightweight user model shared between the server and clients. The client requests news representations (vectors) and a user model from the central server, then computes gradients with user local data, and finally sends their locally computed gradients to the server for aggregation. The central server aggregates gradients to update the global user model and news model. The updated news model is further used to infer news representation by the server. To further safeguard user privacy, a secure aggregation algorithm based on Shamir's secret sharing is employed. Experiments on a real-world news dataset demonstrate strong performance compared to existing systems, representing a significant advancement in privacy-preserving personalized news recommendation.

Figures

Figures reproduced from arXiv: 2507.15460 by the authors.

Figure 1
Figure 1. Multimodal News Information (Microsoft News) 2. Existing models often focus mainly on long-term user interests, overlooking recent pref￾erences. This can negatively impact user experience because users’ clicks are influenced both by their long-lasting interests [9] and by currently trending news. Therefore, a model that integrates both long-term and short-term interest modeling is required to provide a more accurate… view at source ↗
Figure 2
Figure 2. News Encoder Architecture The text encoder focuses on processing news titles and consists of three layers. The first layer uses the BERT tokenizer [17] to transform titles into word sequences. The second layer incorporates a pre-trained BERT model to generate contextually aware representations of the input text. The final layer is a multilayer perceptron (MLP) that projects the BERT output into a suitable format for… view at source ↗
Figure 3
Figure 3. User Encoder Architecture Long-term interest modeling utilizes multi-head self-attention and additive atten￾tion networks to capture correlations between different news articles read by the same user, and finally, the long-term representation uL of the user is obtained. Short-term interest modeling focuses on the most recent batch of news vectors, applying the same network structure (multi-head self-attention and ad… view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Fed-MM-PNR Framework user model, which is shared between the server and the clients. In each federated learning round, a subset of clients is randomly selected to participate in training. Random selection is used because not all clients may be available or capable of c…
Figure 5
Figure 5. Figure 5: Effectiveness of Multimodal Information consistently show that the best performance is achieved when both long-term and short￾term user interests are considered. This combined approach outperforms models that rely solely on long-term or short-term interests, with long-…
Figure 6
Figure 6. Figure 6: Effectiveness of Combining Short-Term and Long-Term User Interests Influence of Length of Short-Term News Sequences on Performance. To explore the influence of short-term news sequence length on recommendation performance, we conducted experiments to optimize the value…
Figure 7
Figure 7. Figure 7: Performance Metrics for Short-Term News Sequence Length Influence of User Group Size on Performance. To evaluate the influence of user group size on the performance of the system, we varied the number of users selected per training round and analyzed its impact on the …
Figure 9
Figure 9. Figure 9: Training Time vs. User Group Size 5 Conclusion, Limitations, and Future Works Our multimodal federated learning framework for news recommendation, Fed-MM-PNR, integrates both textual and visual features of news while capturing long-term and short￾term user interests an…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

41 extracted references · 34 canonical work pages

  1. [1]

    Toward the next generation of recommender sys- tems: A survey of the state-of-the-art and possible extensions,

    G. Adomavicius and A. Tuzhilin, “Toward the next generation of recommender sys- tems: A survey of the state-of-the-art and possible extensions,” IEEE transactions on knowledge and data engineering , vol. 17, no. 6, pp. 734–749, 2005

  2. [2]

    News recommender systems – Survey and roads ahead, – Information Processing & Management,

    M. Karimi, D. Jannach, and M. Jugovac, “News recommender systems – Survey and roads ahead, – Information Processing & Management,” vol. 54, no. 6, pp. 1203– 1227, Nov. 2018

  3. [3]

    Neural news recommendation with long-and short-term user representations,

    M. An, F. Wu, C. Wu, K. Zhang, Z. Liu, and X. Xie, “Neural news recommendation with long-and short-term user representations,” in Proceedings of the 57th annual meeting of the association for computational linguistics , 2019, pp. 336–345

  4. [4]

    Neural news recommen- dation with attentive multi-view learning,

    C. Wu, F. Wu, M. An, J. Huang, Y. Huang, and X. Xie, “Neural news recommen- dation with attentive multi-view learning,” arXiv preprint arXiv:1907.05576 , 2019

  5. [5]

    Hierec: Hierarchical user interest modeling for person- alized news recommendation,

    T. Qi, F. Wu, C. Wu, et al., “Hierec: Hierarchical user interest modeling for person- alized news recommendation,” arXiv preprint arXiv:2106.04408 , 2021

  6. [6]

    Dkn: Deep knowledge-aware network for news recommendation,

    H. Wang, F. Zhang, X. Xie, and M. Guo, “Dkn: Deep knowledge-aware network for news recommendation,” in Proceedings of the 2018 world wide web conference, 2018, pp. 1835–1844

  7. [7]

    Dan: Deep attention neural net- work for news recommendation,

    Q. Zhu, X. Zhou, Z. Song, J. Tan, and L. Guo, “Dan: Deep attention neural net- work for news recommendation,” in Proceedings of the AAAI conference on artificial intelligence, vol. 33, 2019, pp. 5973–5980

  8. [8]

    Why do we click: Visual impression-aware news recommendation,

    J. Xun, S. Zhang, Z. Zhao, et al. , “Why do we click: Visual impression-aware news recommendation,” in Proceedings of the 29th ACM international conference on mul- timedia, 2021, pp. 3881–3890

Show all 41 references
  1. [9]

    Modeling and broadening temporal user interest in personalized news recommendation,

    L. Li, L. Zheng, F. Yang, and T. Li, “Modeling and broadening temporal user interest in personalized news recommendation,” Expert Systems with Applications , vol. 41, no. 7, pp. 3168–3177, 2014

  2. [10]

    Privacy Enhanced Matrix Factorization for Recommendation with Local Differential Privacy,

    H. Shin, S. Kim, J. Shin, and X. Xiao, “Privacy Enhanced Matrix Factorization for Recommendation with Local Differential Privacy,” en,IEEE Transactions on Knowl- edge and Data Engineering , vol. 30, no. 9, pp. 1770–1782, Sep. 2018, issn: 1041- 4347, 1558-2191, 2326-3865. doi: ...

  3. [11]

    The eu general data protection regulation (gdpr),

    P. Voigt and A. Von dem Bussche, “The eu general data protection regulation (gdpr),” A practical guide, 1st ed., Cham: Springer International Publishing , vol. 10, no. 3152676, pp. 10–5555, 2017

  4. [12]

    How the gdpr will change the world,

    J. P. Albrecht, “How the gdpr will change the world,” Eur. Data Prot. L. Rev. , vol. 2, p. 287, 2016

  5. [13]

    Recommender systems: Issues, challenges, and re- search opportunities,

    S. Khusro, Z. Ali, and I. Ullah, “Recommender systems: Issues, challenges, and re- search opportunities,” in Information science and applications (ICISA) 2016, Springer, 2016, pp. 1179–1189

  6. [14]

    Npa: Neural news recom- mendation with personalized attention,

    C. Wu, F. Wu, M. An, J. Huang, Y. Huang, and X. Xie, “Npa: Neural news recom- mendation with personalized attention,” in Proceedings of the 25th ACM SIGKDD international conference on knowledge discovery & data mining , 2019, pp. 2576– 2584

  7. [15]

    Gradient-based learning applied to document recognition,

    Y. Lecun, L. Bottou, Y. Bengio, and P. Haffner, “Gradient-based learning applied to document recognition,” Proceedings of the IEEE, vol. 86, no. 11, pp. 2278–2324, Nov. 1998, Conference Name: Proceedings of the IEEE, issn: 1558-2256. doi: 10. 1109/5.726791 . [Online]. Availabl...

  8. [16]

    Attention is all you need,

    V. Ashish, “Attention is all you need,” Advances in neural information processing systems, vol. 30, p. I, 2017

  9. [17]

    Bert: Pre-training of deep bidirectional transformers for language under- standing,

    J. Kim, “Bert: Pre-training of deep bidirectional transformers for language under- standing,” 2022

  10. [18]

    Neural news recommendation with multi-head self-attention,

    C. Wu, F. Wu, S. Ge, T. Qi, Y. Huang, and X. Xie, “Neural news recommendation with multi-head self-attention,” in Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (E...

  11. [19]

    Graph neural news recommenda- tion with long-term and short-term interest modeling,

    L. Hu, C. Li, C. Shi, C. Yang, and C. Shao, “Graph neural news recommenda- tion with long-term and short-term interest modeling,” Information Processing & Management, vol. 57, no. 2, p. 102 142, 2020

  12. [20]

    Vision-language recommendation via attribute augmented multimodal reinforcement learning,

    T. Yu, Y. Shen, R. Zhang, X. Zeng, and H. Jin, “Vision-language recommendation via attribute augmented multimodal reinforcement learning,” in Proceedings of the 27th ACM International Conference on Multimedia , 2019, pp. 39–47

  13. [21]

    Principle-to-program: Neural fashion recom- mendation with multi-modal input,

    M. Chelliah, S. Biswas, and L. Dhakad, “Principle-to-program: Neural fashion recom- mendation with multi-modal input,” in Proceedings of the 27th ACM International Conference on Multimedia, 2019, pp. 2706–2708

  14. [22]

    Vlsnr: Vision-linguistics coordination time sequence- aware news recommendation,

    S. Han, W. Huang, and X. Luan, “Vlsnr: Vision-linguistics coordination time sequence- aware news recommendation,” arXiv preprint arXiv:2210.02946 , 2022

  15. [23]

    Learning transferable visual models from natural language supervision,

    A. Radford, J. W. Kim, C. Hallacy, et al. , “Learning transferable visual models from natural language supervision,” inInternational conference on machine learning, PMLR, 2021, pp. 8748–8763

  16. [24]

    SECRECSY: A Secure Frame- work for Enhanced Privacy-Preserving Location Recommendations in Cloud Envi- ronment,

    L. Ravi, V. Subramaniyaswamy, M. Devarajan, et al., “SECRECSY: A Secure Frame- work for Enhanced Privacy-Preserving Location Recommendations in Cloud Envi- ronment,” en, Wireless Personal Communications , vol. 108, no. 3, pp. 1869–1907, Oct. 2019, issn: 1572-834X. doi: 10.1007...

  17. [25]

    Federated learning: Challenges, methods, and future directions,

    T. Li, A. K. Sahu, A. Talwalkar, and V. Smith, “Federated learning: Challenges, methods, and future directions,” IEEE signal processing magazine , vol. 37, no. 3, pp. 50–60, 2020

  18. [26]

    Communication- efficient learning of deep networks from decentralized data,

    B. McMahan, E. Moore, D. Ramage, S. Hampson, and B. A. y Arcas, “Communication- efficient learning of deep networks from decentralized data,” in Artificial intelligence and statistics , PMLR, 2017, pp. 1273–1282

  19. [27]

    Privacy-preserving news recommen- dation model learning,

    T. Qi, F. Wu, C. Wu, Y. Huang, and X. Xie, “Privacy-preserving news recommen- dation model learning,” arXiv preprint arXiv:2003.09592 , 2020

  20. [28]

    Lopub: High-dimensional crowdsourced data pub- lication with local differential privacy,

    X. Ren, C.-M. Yu, W. Yu, et al., “Lopub: High-dimensional crowdsourced data pub- lication with local differential privacy,”IEEE Transactions on Information Forensics and Security, vol. 13, no. 9, pp. 2151–2166, 2018

  21. [29]

    Efficient-fedrec: Efficient federated learning framework for privacy-preserving news recommendation,

    J. Yi, F. Wu, C. Wu, R. Liu, G. Sun, and X. Xie, “Efficient-fedrec: Efficient federated learning framework for privacy-preserving news recommendation,” arXiv preprint arXiv:2109.05446, 2021

  22. [30]

    Crypten: Secure multi-party computation meets machine learning,

    B. Knott, S. Venkataraman, A. Hannun, S. Sengupta, M. Ibrahim, and L. van der Maaten, “Crypten: Secure multi-party computation meets machine learning,” Ad- vances in Neural Information Processing Systems , vol. 34, pp. 4961–4973, 2021

  23. [31]

    Privacy-Preserving Deep Learning via Additively Homomorphic Encryption,

    L. T. Phong, Y. Aono, T. Hayashi, L. Wang, and S. Moriai, “Privacy-Preserving Deep Learning via Additively Homomorphic Encryption,” en, IEEE Transactions on Information Forensics and Security , vol. 13, no. 5, pp. 1333–1345, May 2018, issn: 1556-6013, 1556-6021. doi: 10.1109/T...

  24. [32]

    LoPub : High-Dimensional Crowdsourced Data Publication With Local Differential Privacy,

    X. Ren, C.-M. Yu, W. Yu, et al. , “LoPub : High-Dimensional Crowdsourced Data Publication With Local Differential Privacy,” IEEE Transactions on Information Forensics and Security, vol. 13, no. 9, pp. 2151–2166, Sep. 2018, Conference Name: IEEE Transactions on Information Fore...

  25. [33]

    UCoin: An Efficient Privacy Preserving Scheme for Cryptocurrencies,

    M. R. Nosouhi, S. Yu, K. Sood, et al. , “UCoin: An Efficient Privacy Preserving Scheme for Cryptocurrencies,” en, IEEE Transactions on Dependable and Secure Computing, vol. 20, no. 1, pp. 242–255, Jan. 2023, issn: 1545-5971, 1941-0018, 2160-9209. doi: 10 . 1109 / TDSC . 2021 ....

  26. [34]

    Dosovitskiy, L

    A. Dosovitskiy, L. Beyer, A. Kolesnikov, et al. , An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale , en, arXiv:2010.11929 [cs], Jun. 2021. [Online]. Available: http://arxiv.org/abs/2010.11929 (visited on 05/18/2024)

  27. [35]

    An effective recommendation model based on deep representation learning,

    J. Ni, Z. Huang, J. Cheng, and S. Gao, “An effective recommendation model based on deep representation learning,” Information Sciences, vol. 542, pp. 324–342, 2021

  28. [36]

    How to share a secret,

    A. Shamir, “How to share a secret,” Communications of the ACM , vol. 22, no. 11, pp. 612–613, 1979

  29. [37]

    Mind: A large-scale dataset for news recommendation, in proceedings of the 58th annual meeting of the association for computational linguistics,

    F. Wu et al., “Mind: A large-scale dataset for news recommendation, in proceedings of the 58th annual meeting of the association for computational linguistics,” Online: Association for Computational Linguistics, Jul. 2020, pp. 3597–3606. doi: , vol. 10. D. Jurafsky, J. Chai, N...

  30. [38]

    Mm-rec: Multimodal news recommendation,

    C. Wu, F. Wu, T. Qi, and Y. Huang, “Mm-rec: Multimodal news recommendation,” arXiv preprint arXiv:2104.07407 , 2021

  31. [39]

    Heterogeneous graph neural network with personalized and adaptive diversity for news recommendation,

    G. Zhang, D. Li, H. Gu, T. Lu, and N. Gu, “Heterogeneous graph neural network with personalized and adaptive diversity for news recommendation,” ACM Trans- actions on the Web , vol. 18, no. 3, pp. 1–33, 2024

  32. [40]

    News recommendation with word-related joint topic prediction,

    X. Pu, J. Zhang, X. Chen, Y. Qian, and R. Zhang, “News recommendation with word-related joint topic prediction,” IEEE Access, 2024

  33. [41]

    Dual-view hypergraph attention network for news recommendation,

    W. Liu, Z. Zhang, and B. Wang, “Dual-view hypergraph attention network for news recommendation,” Engineering Applications of Artificial Intelligence , vol. 133, p. 108 256, 2024

Pith tools

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