REVIEW 5 major objections 5 minor 2 cited by
FedNAMs: Performing Interpretability Analysis in Federated Learning Context
T0 review · 5 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Federated learning gains per-feature explanations by training one small network per input feature and averaging the feature functions across clients.
desk verdict Routine composition of NAMs and FedAvg with no evaluation to back the central accuracy claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the per-feature shape function $f_i(x_k)$: each input feature is processed by its own small neural network (a FeatureNN with three hidden layers of 20 neurons and ExU units), and the federated global model is the pointwise average of the client shape functions (Eqs. 3-7), rather than an average of network weights as in FedAvg. This function-space averaging is what converts client-local additive models into a global additive model whose per-feature plots are directly readable.
What would settle it
Train FedNAMs on the same three benchmark datasets with a deliberately non-IID partition (e.g., each client receiving one class or one subpopulation) and compare the function-space-averaged global model's accuracy and per-feature curves against a centrally trained NAM on the pooled data; if the averaged model's accuracy or the shape of the curves diverges substantially, the aggregation rule does not hold.
Extended reading notes
Core claim
The paper introduces Federated Neural Additive Models (FedNAMs), in which the global model is not a single shared network but an additive collection of per-feature networks. Each client $i$ trains its own shape functions $f^i_k(x_k)$ for every feature $k$, and the final global feature function is defined as the unweighted average of the client functions, $f_k(x_k) = \frac{1}{n}\sum_i f^i_k(x_k)$. Because each feature's contribution is a separate sub-network, the model retains the glass-box property of Generalized Additive Models, and the per-client structure yields client-level explanations alongside the global explanation. The paper reports that on UCI Heart Disease, OpenML Wine, Iris, and MNIST, FedNAMs achieve strong interpretability with minimal accuracy loss compared to traditional federated DNNs, and that the identified important features match domain expectations.
Load-bearing premise
The paper assumes that client-specific feature networks are comparable enough that averaging their per-feature outputs yields a valid global model, without aligning the networks or proving that the average preserves the accuracy and zero-centering of the individual shape functions.
Editorial extensions
If this is right
- Federated models on tabular data can be glass-box: each feature's marginal effect is visible as a curve, both per client and globally.
- Privacy is preserved at the level of standard federated learning, since only shape-function updates (or the functions themselves) leave clients, not raw data.
- Low-contributing features can be identified and potentially dropped, streamlining models in federated deployment.
- Client-level variation in shape functions provides a natural diagnosis of non-IID data drift.
- The approach extends NAMs' multiclass and multitask flexibility to federated settings, beyond tree-based GAMs.
Reading between the lines
- If function-space averaging of independently trained shape functions is stable, FedNAMs could serve as a cheap diagnostic layer on top of existing federated deep networks, rather than a replacement architecture.
- A testable consequence the paper leaves implicit is that the global explanation should approach the explanation of a centrally trained NAM on pooled data as client data becomes IID, giving a calibration check for the aggregation step.
- The same aggregation rule could be applied to other additive interpretable models (e.g., spline GAMs or boosted trees) inside federated loops, provided their feature functions are comparable across clients.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FedNAMs, a federated learning framework that trains Neural Additive Models (NAMs) on each client and aggregates the per-feature shape functions by averaging them in function space. The authors claim that FedNAMs provide strong interpretability, identify critical predictive features at client and global levels, and achieve state-of-the-art performance with minimal accuracy loss relative to traditional federated DNNs, based on experiments on the UCI Heart Disease, OpenML Wine, and Iris datasets. The manuscript describes the architecture, presents client-wise feature contribution tables and shape-function plots, and qualitatively compares with Captum attributions on a masked MNIST image. It also includes a reproducibility artifact link and an appendix with additional plots.
Significance. If the claims were substantiated, FedNAMs would be a useful contribution to interpretable federated learning: per-feature, client-level explanations on tabular benchmarks without major accuracy loss would be practically valuable, especially in finance and healthcare. The architectural idea of imposing an additive structure in a federated setting and aggregating shape functions is reasonable and worth exploring. However, the paper's central empirical claims are entirely unsupported by the presented evidence: no predictive accuracy, ROC-AUC, variance, or baseline comparison appears anywhere, and the interpretability benchmark against Captum is not quantitatively validated. The paper's current value is therefore only as a proposal sketch, not as a demonstrated method.
major comments (5)
- [Section 6 (Experimentation and Results)] The evaluation section states that 'model performance is evaluated based on classification accuracy and metrics such as the ROC-AUC score,' but no accuracy, ROC-AUC, confidence interval, or baseline comparison is reported anywhere in the manuscript. Tables 1-3 list feature contribution values and Captum attributions, and Appendix B contains only shape-function plots and a masked MNIST image. The abstract's claim of 'minimal accuracy loss compared to traditional Federated Deep Neural Networks' and the conclusion's claim of 'state-of-the-art performance' are therefore unsupported by any quantitative evidence. This is a load-bearing omission: the paper's central contribution is empirical, and the promised evaluation is absent.
- [Equations (3)-(7)] The aggregation rule averages client-specific shape functions f_i(x_k) in function space to obtain the global feature function. In contrast, standard FedAvg, given in Equation (2), averages network weights. The manuscript provides no justification that per-feature networks across clients are semantically aligned such that averaging their outputs yields a meaningful global model. Issues such as permutation of hidden units, differing bias terms, non-identifiability of additive components (the E[f_i]=0 centering constraint is mentioned in Section 1 but not enforced or discussed in the federated setting), and lack of convergence guarantees are not addressed. Without an alignment argument or an experiment comparing function-space averaging to weight-space FedAvg, the validity of the 'final aggregated feature function' is not established, and this directly affects both accuracy and interpretability claims.
- [Tables 1-3 and Section 6.1] The interpretability benchmark against Captum is not quantitatively validated. Table 1 reports client-wise feature contributions on a scale of roughly 2-5, while Table 2 reports Captum attribution values on a scale of roughly -0.01 to 0.003; no correlation, rank agreement, or normalized comparison is given. The text claims that FedNAMs offer 'more detailed and feature-specific interpretability than Captum,' but no metric supports this comparative claim. Figure 6 is a qualitative image comparison. The assertion that the framework's interpretability is validated by this benchmark is therefore unsupported.
- [Table 3] Table 3 is captioned as 'Client-wise feature contributions and Feature attribution values of Captum for UCI Wine dataset with reduced precision,' but the table lists heart-disease features (thalach, thal, age, ca, cp, sex, trestbps, oldpeak, fbs, restecg, exang, slope, chol), not wine features such as fixed acidity, volatile acidity, or sulfates. This internal inconsistency invalidates the wine-specific feature contribution results and undermines the paper's claims about identifying critical predictive features for the wine dataset. The source of this error needs to be corrected and the results regenerated.
- [Abstract and Section 6.2] The abstract claims the paper studies 'various text and image classification tasks,' but the experiments use only tabular datasets (Heart Disease, Wine, Iris). The only image experiment is a qualitative MNIST illustration of masked pixels in Section 6.2, which is not a classification task with reported performance. This overstatement misrepresents the scope of the experiments and should be corrected.
minor comments (5)
- [Section 5 (Datasets)] The Iris dataset description says the target has three classes but names only 'Iris-setosa and Iris-versicolor'; the third class (Iris-virginica) is missing. Also, the text describes Iris classification as 'multi-label classification,' but it is a multiclass problem, not multi-label.
- [Section 2] There is a typo: 'model'sel's' should be 'model's'.
- [Equations (8)-(11)] The notation g(E[y_client1]) is unclear; it mixes client indices with a generic link function and does not define the relationship between the per-client equations and the aggregated functions in Equations (3)-(7). The superscripts in later equations also appear inconsistent (e.g., f_i^j versus f_j^i).
- [Table 3 caption] The phrase 'with reduced precision' is vague; it is unclear whether this refers to numerical precision, model precision, or something else, and no explanation is given.
- [References] Some references do not support the claims they are cited for. For example, Zhang et al. (2024a) is cited as 'proposed FedGNN, a federated learning framework that utilizes Graph Neural Networks,' but the listed reference is 'Recent methodological advances in federated learning for healthcare,' which does not describe FedGNN. The citation for Bonawitz (2019) also lacks page numbers and appears in an unusual format.
Circularity Check
No significant circularity: the FedNAM derivation is a direct NAM-plus-FedAvg construction; the unsupported accuracy claim is an evidentiary issue, not a circular one.
full rationale
The paper's core derivation is a direct construction: each client trains a NAM with per-feature networks, and Equations (3)-(7) define the global feature function as the average of client shape functions. Equations (8)-(11) then write each client's GAM as the sum of those feature functions. This is an explicit algorithmic aggregation scheme, not a hidden fit renamed as a prediction. The 'critical predictive features' (volatile acidity, chest pain type, petal length/width, etc.) are read off the fitted shape functions and client-wise contribution tables (Tables 1-3, Figures 4-5); that is descriptive interpretability of the trained model, which is normal practice in interpretability work, not circular derivation. The only self-citations (Balija et al. 2024; Nanda et al. 2024) appear in general background about language modeling and federated learning and are not load-bearing for the FedNAMs claims. The paper's serious weakness is evidentiary: Section 6 promises accuracy and ROC-AUC evaluation but reports no quantitative metrics, so the 'minimal accuracy loss' and 'state-of-the-art' statements in the abstract and conclusion are unsupported. That is a missing-evidence/correctness problem, not circularity. No step reduces by construction to its own input, so the circularity score is 0.
Assumptions & free parameters
free parameters (4)
- NAM architecture depth and width =
3 hidden layers, 20 neurons each
- Number of clients =
3
- Hyperparameters (dropout, learning rate, batch size) =
not reported
- High versus low feature categorization threshold
assumptions (3)
- domain assumption The target decomposes additively as g(E[y]) = beta + sum_i f_i(x_i)
- domain assumption Averaging client updates via FedAvg yields a valid global model
- ad hoc to paper Averaging per-feature functions across clients preserves semantic alignment
Cite this review
Pith. "Pith review of FedNAMs: Performing Interpretability Analysis in Federated Learning Context." pith.science (2026). https://pith.science/paper/X3WO6DHH
@misc{pith2026250617466,
author = {Pith},
title = {Pith review of: FedNAMs: Performing Interpretability Analysis in Federated Learning Context},
year = {2026},
howpublished = {\url{https://pith.science/paper/X3WO6DHH}},
note = {Machine review of arXiv:2506.17466}
}
read the original abstract
Federated learning continues to evolve but faces challenges in interpretability and explainability. To address these challenges, we introduce a novel approach that employs Neural Additive Models (NAMs) within a federated learning framework. This new Federated Neural Additive Models (FedNAMs) approach merges the advantages of NAMs, where individual networks concentrate on specific input features, with the decentralized approach of federated learning, ultimately producing interpretable analysis results. This integration enhances privacy by training on local data across multiple devices, thereby minimizing the risks associated with data centralization and improving model robustness and generalizability. FedNAMs maintain detailed, feature-specific learning, making them especially valuable in sectors such as finance and healthcare. They facilitate the training of client-specific models to integrate local updates, preserve privacy, and mitigate concerns related to centralization. Our studies on various text and image classification tasks, using datasets such as OpenFetch ML Wine, UCI Heart Disease, and Iris, show that FedNAMs deliver strong interpretability with minimal accuracy loss compared to traditional Federated Deep Neural Networks (DNNs). The research involves notable findings, including the identification of critical predictive features at both client and global levels. Volatile acidity, sulfates, and chlorides for wine quality. Chest pain type, maximum heart rate, and number of vessels for heart disease. Petal length and width for iris classification. This approach strengthens privacy and model efficiency and improves interpretability and robustness across diverse datasets. Finally, FedNAMs generate insights on causes of highly and low interpretable features.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 2 Pith papers
-
Physically Constrained Federated Additive Models for O-RAN SLA-Risk Prediction
Monotone spline constraints in a federated additive model eliminate physically invalid KPI-risk shapes for O-RAN SLA prediction with a small accuracy trade-off.
-
The Trust Fabric: Decentralized Interoperability and Economic Coordination for the Agentic Web
The paper presents a five-layer decentralized framework (Nanda) for agent discovery, trust scoring, and micropayments, but supports its deployment claims only with self-referential descriptions.
Reference graph
Works this paper leans on
-
[1]
Neural additive models: Interpretable machine learning with neural nets
Rishabh Agarwal, Levi Melnick, Nicholas Frosst, Xuezhou Zhang, Ben Lengerich, Rich Caruana, and Geoffrey E Hinton. Neural additive models: Interpretable machine learning with neural nets. Advances in neural information processing systems, 34: 0 4699--4711, 2021
2021
-
[2]
Handling privacy-sensitive medical data with federated learning: challenges and future directions
Ons Aouedi, Alessio Sacco, Kandaraj Piamrat, and Guido Marchetto. Handling privacy-sensitive medical data with federated learning: challenges and future directions. IEEE journal of biomedical and health informatics, 27 0 (2): 0 790--803, 2022
work page 2022
-
[3]
Building communication efficient asynchronous peer-to-peer federated llms with blockchain
Sree Bhargavi Balija, Amitash Nanda, and Debashis Sahoo. Building communication efficient asynchronous peer-to-peer federated llms with blockchain. In Proceedings of the AAAI Symposium Series, volume 3, pp.\ 288--292, 2024
work page 2024
-
[4]
Towards federated learning at scale: Syste m design
Keith Bonawitz. Towards federated learning at scale: Syste m design. arXiv preprint arXiv:1902.01046, 2019
arXiv 1902
-
[5]
Tianshi Che, Ji Liu, Yang Zhou, Jiaxiang Ren, Jiwen Zhou, Victor S Sheng, Huaiyu Dai, and Dejing Dou. Federated learning of large language models with parameter-efficient prompt tuning and adaptive optimization. arXiv preprint arXiv:2310.15080, 2023
-
[6]
Fast federated learning in the presence of arbitrary device unavailability
Xinran Gu, Kaixuan Huang, Jingzhao Zhang, and Longbo Huang. Fast federated learning in the presence of arbitrary device unavailability. Advances in Neural Information Processing Systems, 34: 0 12052--12064, 2021
work page 2021
-
[7]
Federated learning for mobile keyboard prediction
Andrew Hard, Kanishka Rao, Rajiv Mathews, Swaroop Ramaswamy, Fran c oise Beaufays, Sean Augenstein, Hubert Eichner, Chlo \'e Kiddon, and Daniel Ramage. Federated learning for mobile keyboard prediction. arXiv preprint arXiv:1811.03604, 2018
arXiv 2018
-
[8]
Trevor J Hastie. Generalized additive models. In Statistical models in S, pp.\ 249--307. Routledge, 2017
work page 2017
Show all 23 references
-
[9]
Federated learning for computer vision
Yassine Himeur, Iraklis Varlamis, Hamza Kheddar, Abbes Amira, Shadi Atalla, Yashbir Singh, Faycal Bensaali, and Wathiq Mansoor. Federated learning for computer vision. arXiv preprint arXiv:2308.13558, 2023
2023 arXiv
-
[10]
Advances and open problems in federated learning
Peter Kairouz, H Brendan McMahan, Brendan Avent, Aur \'e lien Bellet, Mehdi Bennis, Arjun Nitin Bhagoji, Kallista Bonawitz, Zachary Charles, Graham Cormode, Rachel Cummings, et al. Advances and open problems in federated learning. Foundations and trends in machine learning , 1...
2021
-
[11]
Towards interpretable federated learning
Anran Li, Rui Liu, Ming Hu, Luu Anh Tuan, and Han Yu. Towards interpretable federated learning. arXiv preprint arXiv:2302.13473, 2023
2023 arXiv
-
[12]
Recent advances on federated learning: A systematic survey
Bingyan Liu, Nuoyan Lv, Yuanchun Guo, and Yawen Li. Recent advances on federated learning: A systematic survey. Neurocomputing, pp.\ 128019, 2024
2024
-
[13]
Consistent feature attribution for tree ensembles
Scott M Lundberg and Su-In Lee. Consistent feature attribution for tree ensembles. arXiv preprint arXiv:1706.06060, 2017
2017 arXiv
-
[14]
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 Artificial intelligence and statistics, pp.\ 1273--1282. PMLR, 2017
2017
-
[15]
Cptquant--a novel mixed precision post-training quantization techniques for large language models
Amitash Nanda, Sree Bhargavi Balija, and Debashis Sahoo. Cptquant--a novel mixed precision post-training quantization techniques for large language models. arXiv preprint arXiv:2412.03599, 2024
2024 arXiv
-
[16]
why should i trust you?
Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. " why should i trust you?" explaining the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining, pp.\ 1135--1144, 2016
2016
-
[17]
Recent methodological advances in federated learning for healthcare
Fan Zhang, Daniel Kreuter, Yichen Chen, S \"o ren Dittmer, Samuel Tull, Tolou Shadbahr, Martijn Schut, Folkert Asselbergs, Sujoy Kar, Suthesh Sivapalaratnam, et al. Recent methodological advances in federated learning for healthcare. Patterns, 5 0 (6), 2024 a
2024
-
[18]
A clustered federated learning method of user behavior analysis based on non-iid data
Jianfei Zhang and Zhongxin Li. A clustered federated learning method of user behavior analysis based on non-iid data. Electronics, 12 0 (7): 0 1660, 2023
2023
-
[19]
A survey of trustworthy federated learning: Issues, solutions, and challenges
Yifei Zhang, Dun Zeng, Jinglong Luo, Xinyu Fu, Guanzhong Chen, Zenglin Xu, and Irwin King. A survey of trustworthy federated learning: Issues, solutions, and challenges. ACM Transactions on Intelligent Systems and Technology, 2024 b
2024
-
[20]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
-
[21]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[22]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[23]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.