Pith. sign in

REVIEW 3 major objections 5 minor 51 references

Federated learning framework for collaborative remaining useful life prognostics: an aircraft engine case study

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

Pith's one-line read Airlines can train a shared remaining-useful-life model without sharing data, and it beats isolated training for five of six simulated airlines.

desk verdict Useful, honest FL-for-RUL case study with released code, but the headline FL-vs-isolated comparison is confounded by asymmetric test-time normalization. read the letter →

arxiv 2506.00499 v1 pith:GAGM6ACR submitted 2025-05-31 cs.LG cs.DCcs.ETcs.SYeess.SYstat.ML

classification cs.LGcs.DCcs.ETcs.SYeess.SYstat.ML
keywords federatedlearningremainingusefullifeprognosticsN-CMAPSSaircraftenginerobustaggregationdecentralizedvalidationprivacy-preservingmachine
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

The paper aims to establish that airlines can pool their engine-condition data indirectly through federated learning, training a shared model that predicts how many flights an engine has left before failure without any airline handing raw sensor data to a central server. The motivation is that run-to-failure data is scarce and privacy concerns block direct sharing, so models trained alone are inaccurate. The authors propose a decentralized validation procedure and four noise-robust aggregation rules, and test them on six simulated airlines that each own one engine from the N-CMAPSS dataset. They report that the federated model predicts remaining useful life more accurately than isolated per-airline training for five of the six airlines, with an overall RMSE of 9.9 flights versus a mean of 15.8 flights, and that the robust aggregation methods stay accurate when some airlines' sensors are noisy.

What carries the argument

The central machinery is the federated training loop itself, extended with a decentralized validation step. In each round, every client trains a local copy of a shared one-dimensional CNN on its own engine data and sends only the weights to the server. The server then either distributes every local model to every client (full validation) or randomly assigns each local model to one client (random validation); each receiving client reports the loss of that model on its own validation set, and the server combines these losses into an evaluation score $E_j = \mathrm{median}_i L_{\mathrm{metric}}(V^i, W^j)$, taking the median to limit the influence of noisy clients. Two aggregation policies use those scores: the best-model policy sets the global weights to the local model with the lowest score, $W^G = W^{i_{\mathrm{best}}}$, and the softmax policy forms a weighted average $w^G = \sum_i \alpha_i w^i$ with weights from a z-score-normalized softmax over inverse evaluation scores. This score-then-aggregate mechanism is what lets the global model down-weight noisy participants while keeping all data local.

What would settle it

Repeat the comparison while varying the number of engines each airline contributes (for example, one, two, and five engines per airline with total data held fixed) and report RMSE on engines 11, 14, and 15; if an isolated model trained on as few as two or three engines matches or beats the federated model, the claimed benefit is an artifact of the one-engine-per-airline scarcity rather than a general property of FL.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central claim is that a federated learning framework with a decentralized validation step can replace centralized data sharing for aircraft-engine remaining-useful-life prognostics: airlines never send raw sensor data to the server, yet the shared model is more accurate than each airline training alone. In the N-CMAPSS DS02 case study, six airlines each train a local one-dimensional CNN on the run-to-failure data of a single engine, and the server aggregates the local model weights. At every round, each local model is scored against the validation sets of the other airlines, with only loss values sent back to the server; the four proposed aggregation methods (Random-Best, Random-Softmax, Full-Best, Full-Softmax) then reweight or select local models according to those scores, down-weighting noisy clients. The reported result is an overall test RMSE of 9.9 flights for the federated model versus 15.8 flights on average for the six isolated models, with the federated model beating five of the six; with a noise multiplier of $\alpha=1$, Full-Softmax keeps the RMSE at 10.1 flights while FedAvg rises to 12.3.

Load-bearing premise

The load-bearing premise is that each airline has only one engine's run-to-failure data, so the isolated comparison models are trained on a single engine; if real airlines possessed data from several engines, the federated model's advantage could shrink or disappear.

Editorial extensions

If this is right

  • If the central claim holds, airlines can obtain a shared RUL prognostic model without a central data repository, which removes a major contractual and privacy obstacle to collaborative prognostics.
  • The decentralized validation procedure gives a path toward regulatory approval of collaborative ML models: each airline validates the global model locally and shares only the loss, satisfying a validation requirement without raw data leaving the airline.
  • The aggregation results imply that standard FedAvg is acceptable when all clients have clean or mildly noisy data, but the proposed softmax methods are preferable when some clients carry substantial sensor noise.
  • The comparison with the centralized oracle (RMSE 6.3 flights) bounds the privacy cost of federated learning for this problem, showing the FL model is competitive rather than equal to having all data in one place.
  • Because the framework treats validation loss as a generic score, the same decentralized validation and aggregation scheme transfers to other FL regression or classification tasks beyond RUL prognostics.

Reading between the lines

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

  • An unstated consequence of the one-engine-per-airline setup is that the isolated baselines are trained on extremely small datasets; if a real airline held several engines, its isolated model would improve and the reported 5-of-6 advantage could shrink or reverse.
  • The 5-of-6 result rests on a single random 80/20 train-validation split and only three test engines; testing across repeated splits would show how much of the headline is due to the specific split.
  • The median-based evaluation score limits all four aggregation methods to settings where fewer than half the clients are noisy, a boundary the paper notes but does not quantify in terms of model accuracy.
  • The robustness results suggest a concrete testable extension: at a fixed noise level, vary the fraction of noisy clients and measure the crossover where Full-Softmax's advantage over FedAvg disappears, which would give operators a practical guideline for when robust aggregation is needed.
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

3 major / 5 minor

Summary. This paper proposes a federated learning (FL) framework for collaborative remaining useful life (RUL) prognostics, with a decentralized validation procedure and four robust parameter aggregation methods (Random/Full validation crossed with Best/Softmax aggregation). The framework is evaluated on the N-CMAPSS DS02 dataset, simulating six airlines, each owning one training engine, with three test engines. The reported results show that the FL model achieves an overall test RMSE of 9.9 flights versus a mean of 15.8 flights for six isolated models, with FL giving better accuracy for five of the six airlines, and that the proposed aggregation methods outperform FedAvg under high synthetic sensor noise.

Significance. If the empirical comparison is made clean, this is a useful applied contribution: it addresses a realistic privacy constraint in aviation prognostics, releases open-source code and evaluation data, and explicitly discusses limitations such as the privacy-robustness trade-off, median breakdown, regulatory approval, and stragglers. The decentralized validation procedure is a sensible adaptation of client-side validation to FL. However, the central quantitative claims are currently weakened by an asymmetric preprocessing protocol between the FL and isolated baselines and by the absence of uncertainty estimates; these issues are fixable within the paper's scope.

major comments (3)
  1. [Section 5.1 and 5.3] The FL-versus-NI comparison is confounded by different test-time normalization policies. In Section 5.1 each training engine is min-max normalized with its own minimum and maximum, while the three test engines are normalized using the minimum and maximum of all six training engines. In Section 5.3, however, each NI model is tested on test engines normalized with the minimum and maximum of that airline's single training engine. The FL global model is therefore evaluated on feature values produced by an aggregate transform that no client used during training, while the NI models are evaluated on features produced by the same transform used in their training. Since the RMSE differences in Table 5 are the basis for the 'five out of six airlines' claim, the comparison does not isolate the effect of federated collaboration. Please add a sensitivity analysis that evaluates the FL model under the same per-airline normalization as the NI models, and/or evaluates NI models under the aggregate normalization, and report both variants.
  2. [Section 6.2, Table 5] The headline result rests on a single run over only three test engines. Table 5 reports point RMSE values without confidence intervals, repeated seeds, or any uncertainty measure; the test set consists of engines 11, 14, and 15, which cover three flight classes while all six training engines are class 3. With three test units, a single engine can dominate the aggregate RMSE, and the five-of-six statement is not robustly established. In addition, the setup assigns exactly one training engine per airline (Section 5, Table 3), an artificial data-scarcity assumption; the paper does not test sensitivity to the number of engines per client. Please report multiple seeds and bootstrap confidence intervals over flights or engines, and ideally vary the number of training engines per airline.
  3. [Section 6.3, Tables 6-8] The robustness advantage of the proposed aggregation methods is not uniform, and the wording in the abstract and conclusion overstates it. At alpha=0, FedAvg has the best overall RMSE (9.9) versus 10.1 for Full-Softmax and 11.6 for Full-Best; at alpha=0.1, FedAvg again has the best overall RMSE (10.2), with Random-Best second at 10.4. The proposed methods only clearly dominate at larger noise levels, e.g., alpha=1, where Full-Best (9.5) and Full-Softmax (10.1) beat FedAvg (12.3). Moreover, the Random-* methods have an additional random allocation step, but no variance is reported for their outcomes, and Table 9 shows only one realized selection sequence. Please scope the claim to large noise, report variance for repeated random allocations, and state clearly which method is recommended in which noise regime.
minor comments (5)
  1. [Appendix A.5] The artifact description states that run.sh runs 5 clients and 1 server for each federated learning algorithm, while the case study has six airlines; please reconcile this discrepancy so the released code reproduces the reported experiments.
  2. [Table 3] The mean flight length for Airline E (engine 18) is printed as '12.545' rather than '12,545'; please fix the thousands separator.
  3. [Section 6.3] The sentence discussing engine 16 contains the typo 'in islotation'; it should read 'in isolation'.
  4. [Figure 11] The plots would benefit from error bars or shaded intervals, especially for the Random-* methods; as they stand, they convey no uncertainty about the point trajectories.
  5. [Section 5.1] The min-max normalization is described as producing values in [-1,1], but the exact scaling formula is not given; please specify it, since the normalization confound in the comparison depends on the precise transform.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the FL-vs-isolated comparison and the noise-robust aggregation results are empirical and evaluated on an independent test set; the only self-citation is a non-load-bearing preprocessing choice.

full rationale

This is an empirical systems/methods paper rather than a derivation, and no claimed prediction reduces to a fitted input or to a self-citation by construction. The model is trained on N-CMAPSS DS02 training engines and evaluated on the three designated test engines (11, 14, 15), whose RUL labels are not used during training, validation, or aggregation. Hyperparameters such as the learning rate, batch size, and the noise multiplier alpha are chosen by hand, not fitted to test outcomes, so the headline RMSE values are genuine out-of-sample measurements. The decentralized validation procedure uses each client's local validation loss both for epoch selection and for computing aggregation weights; this is standard model selection on validation data, not a circular reuse of the test labels. The comparison with the six non-collaborative (NI) models is likewise an empirical benchmark, and the paper even reports one airline (Airline D, engine 16) that beats the FL model, which shows that the five-of-six claim is not forced by the setup. The only self-citation is to the authors' prior work [12] for the choice of 13 sensors and the 20-second measurement aggregation; this is a preprocessing convention, not a load-bearing theorem, and it does not predetermine the FL-versus-isolated outcome. A reviewer concern about asymmetric test-time normalization between FL and NI models is a validity threat to the comparison, not a circularity, because the normalization statistics are not derived from test RUL values and do not make the reported predictions equivalent to the model's inputs. Overall, the central empirical claims are self-contained against the open N-CMAPSS benchmark and the released code, so no circular step is exhibited.

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

The paper's conclusions rest on domain assumptions about the N-CMAPSS dataset, the one-engine-per-airline partition, the Gaussian noise model, and the privacy of sharing weights. The methods themselves contain no fitted physical constants; the main free parameters are standard ML hyperparameters and the noise sweep alpha.

free parameters (5)
  • Noise multiplier alpha = swept from 0 to 2
    User-chosen parameter controlling the standard deviation of Gaussian noise added to sensor and operating condition data in Section 5.4. The robustness results are reported as a function of alpha, so the claim depends on this sweep.
  • Learning rate = 0.001
    Adam optimizer learning rate for the CNN, fixed in Section 5.2. Chosen from prior practice, not fitted to test labels, but all results depend on it.
  • Batch size = 128
    CNN training batch size, Section 5.2. A standard hyperparameter fixed without a sensitivity study.
  • Window length and stride = 50 time steps with stride 10
    Sample extraction from flights in Section 5.1, following prior N-CMAPSS studies [12,8]. Results depend on this choice.
  • Validation split fraction = 20% of flights per engine
    Each client randomly holds out 20% of flights for validation (Section 5.1). The split is run once, with no repeated sampling or seed variation.
assumptions (6)
  • domain assumption The N-CMAPSS DS02 dataset is a valid proxy for real aircraft engine fleets and fault modes.
    The entire case study and the conclusions about airline collaboration rest on this simulated dataset (Section 5). No real airline data is used.
  • ad hoc to paper Assigning one training engine per airline captures the data scarcity and heterogeneity of real airlines.
    Section 5 maps Airlines A-F to engines 2, 5, 10, 16, 18, and 20. The comparison with isolated models and the five-of-six claim depend on this artificial one-engine-per-client setup, which is not stress-tested.
  • domain assumption Sharing model weights and scalar validation losses is acceptable from a privacy perspective.
    This underpins the 'without sharing data' framing (Section 3, Steps 2-6). Section 6.4 admits that inversion and property inference attacks can infer information from weights, so the assumption is only partially true.
  • ad hoc to paper Sensor noise can be modeled as additive Gaussian noise with per-sensor standard deviation scaled by alpha.
    Section 5.4 defines this noise model to evaluate the robust aggregation methods. Real sensor noise may be non-Gaussian, correlated across sensors, or drift-based.
  • domain assumption Fewer than half of the clients have noisy data.
    The median-based evaluation in Equation (4) relies on outlier robustness. Section 6.4 states that the methods lose their suitability when more than half of the clients contain noise.
  • domain assumption Clients follow the protocol honestly and do not send maliciously crafted parameters.
    The framework addresses noisy data, not Byzantine clients. Related work on Byzantine robustness is cited in Section 2.1 but not incorporated into the proposed methods.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Federated learning framework for collaborative remaining useful life prognostics: an aircraft engine case study." pith.science (2026). https://pith.science/paper/GAGM6ACR

@misc{pith2026250600499,
  author       = {Pith},
  title        = {Pith review of: Federated learning framework for collaborative remaining useful life prognostics: an aircraft engine case study},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GAGM6ACR}},
  note         = {Machine review of arXiv:2506.00499}
}
read the original abstract

Complex systems such as aircraft engines are continuously monitored by sensors. In predictive aircraft maintenance, the collected sensor measurements are used to estimate the health condition and the Remaining Useful Life (RUL) of such systems. However, a major challenge when developing prognostics is the limited number of run-to-failure data samples. This challenge could be overcome if multiple airlines would share their run-to-failure data samples such that sufficient learning can be achieved. Due to privacy concerns, however, airlines are reluctant to share their data in a centralized setting. In this paper, a collaborative federated learning framework is therefore developed instead. Here, several airlines cooperate to train a collective RUL prognostic machine learning model, without the need to centrally share their data. For this, a decentralized validation procedure is proposed to validate the prognostics model without sharing any data. Moreover, sensor data is often noisy and of low quality. This paper therefore proposes four novel methods to aggregate the parameters of the global prognostic model. These methods enhance the robustness of the FL framework against noisy data. The proposed framework is illustrated for training a collaborative RUL prognostic model for aircraft engines, using the N-CMAPSS dataset. Here, six airlines are considered, that collaborate in the FL framework to train a collective RUL prognostic model for their aircraft's engines. When comparing the proposed FL framework with the case where each airline independently develops their own prognostic model, the results show that FL leads to more accurate RUL prognostics for five out of the six airlines. Moreover, the novel robust aggregation methods render the FL framework robust to noisy data samples.

Figures

Figures reproduced from arXiv: 2506.00499 by the authors.

Figure 1
Figure 1. Schematic overview of FL with the proposed decentralized validation [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. Zoom in - Schematic overview of all steps of the FL with the proposed [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 4
Figure 4. An example of a full and random allocation with three clients [PITH_FULL_IMAGE:figures/full_fig_p005_4.png] view at source ↗
Figures from the paper (7 more)
Figure 5
Figure 5. Figure 5: Schematic illustration of the random validation policy. In this exam [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]
Figure 6
Figure 6. Figure 6: Example of the Best model aggregation policy with the gradient de￾scent algorithm. Here, γ denotes the learning rate, w e i denotes a single model parameter at epoch e and client i, w e G denotes the corresponding single param￾eter weight at epoch e for the global mode…
Figure 7
Figure 7. Figure 7: Normalized operating conditions and normalized sensor measure [PITH_FULL_IMAGE:figures/full_fig_p008_7.png]
Figure 8
Figure 8. Figure 8: Schematic overview of the CNN with a data sample [PITH_FULL_IMAGE:figures/full_fig_p009_8.png]
Figure 9
Figure 9. Figure 9: RMSE of the validation set for the FL model and the unrestricted [PITH_FULL_IMAGE:figures/full_fig_p010_9.png]
Figure 11
Figure 11. Figure 11: The overall RMSE of the test set in flights for all considered aggrega [PITH_FULL_IMAGE:figures/full_fig_p014_11.png]
Figure 12
Figure 12. Figure 12: Non-normalized and normalized sensor measurements of flight 1, engine 2, for di [PITH_FULL_IMAGE:figures/full_fig_p015_12.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

51 extracted references · 46 canonical work pages

  1. [1]

    Accessed: 2025-05-20

    Federated learning framework for collaborative remaining useful life prognostics: an aircraft engine case study.https://github.com/ EC-labs/rul-fl. Accessed: 2025-05-20

  2. [2]

    Accessed: 2025-05-20

    Turbofan dataset.https://phm-datasets.s3.amazonaws.com/ NASA/17.+Turbofan+Engine+Degradation+Simulation+Data+ Set+2.zip. Accessed: 2025-05-20

  3. [3]

    F. N. Al-Wesabi, H. A. Mengash, R. Marzouk, N. Alruwais, R. Allafi, R. Alabdan, M. Alharbi, and D. Gupta. Pelican optimization algorithm with federated learning driven attack detection model in internet of things environment.Future Generation Computer Systems, 2023

  4. [4]

    Alebouyeh and A

    Z. Alebouyeh and A. J. Bidgoly. Benchmarking robustness and privacy- preserving methods in federated learning.Future Generation Computer Systems, 155:18–38, 2024

  5. [5]

    Arias Chao, C

    M. Arias Chao, C. Kulkarni, K. Goebel, and O. Fink. Aircraft engine 14 (a) Non-normalized sensor measurements,α=0. (b) Normalized sensor measurements,α=0. (c) Non-normalized sensor measurements,α=0.1. (d) Normalized sensor measurements,α=0.1. (e) Non-normalized sensor measurements,α=1. (f) Normalized sensor measurements,α=1. Figure 12: Non-normalized and ...

  6. [6]

    A. N. Bhagoji, S. Chakraborty, P. Mittal, and S. Calo. Analyzing feder- ated learning through an adversarial lens. InInternational Conference on Machine Learning, pages 634–643. PMLR, 2019

  7. [7]

    Blanchard, E

    P. Blanchard, E. M. El Mhamdi, R. Guerraoui, and J. Stainer. Machine learning with adversaries: Byzantine tolerant gradient descent.Advances in neural information processing systems, 30, 2017

  8. [8]

    M. A. Chao, C. Kulkarni, K. Goebel, and O. Fink. Fusing physics-based and deep learning models for prognostics.Reliability Engineering&Sys- tem Safety, 217:107961, 2022

Show all 51 references
  1. [9]

    J. Chen, J. Li, R. Huang, K. Yue, Z. Chen, and W. Li. Federated learning for bearing fault diagnosis with dynamic weighted averaging. In2021 International Conference on Sensing, Measurement&Data Analytics in the era of Artificial Intelligence (ICSMD), pages 1–6. IEEE, 2021

  2. [10]

    J. Chen, J. Li, R. Huang, K. Yue, Z. Chen, and W. Li. Federated trans- fer learning for bearing fault diagnosis with discrepancy-based weighted federated averaging.IEEE Transactions on Instrumentation and Mea- surement, 71:1–11, 2022

  3. [11]

    Damaskinos, R

    G. Damaskinos, R. Guerraoui, R. Patra, M. Taziki, et al. Asynchronous byzantine machine learning (the case of sgd). InInternational Conference on Machine Learning, pages 1145–1154. PMLR, 2018

  4. [12]

    de Pater and M

    I. de Pater and M. Mitici. Developing health indicators and rul prog- nostics for systems with few failure instances and varying operating con- ditions using a lstm autoencoder.Engineering Applications of Artificial Intelligence, 117:105582, 2023

  5. [13]

    Djenouri, T

    Y . Djenouri, T. P. Michalak, and J. C.-W. Lin. Federated deep learning for smart city edge-based applications.Future Generation Computer Sys- tems, 147:350–359, 2023

  6. [14]

    Concept paper: First usable guidance for level 1 machine learning 15 applications

    EASA. Concept paper: First usable guidance for level 1 machine learning 15 applications. Technical report, European Union Aviation Safety Agency, 2023

  7. [15]

    M. Fang, X. Cao, J. Jia, and N. Gong. Local model poisoning attacks to {Byzantine-Robust}federated learning. In29th USENIX security sympo- sium (USENIX Security 20), pages 1605–1622, 2020

  8. [16]

    N. Fei, Y . Gao, Z. Lu, and T. Xiang. Z-score normalization, hubness, and few-shot learning. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 142–151, 2021

  9. [17]

    O. Fink, Q. Wang, M. Svensen, P. Dersin, W.-J. Lee, and M. Ducoffe. Potential, challenges and future directions for deep learning in prognos- tics and health management applications.Engineering Applications of Artificial Intelligence, 92:103678, 2020

  10. [18]

    Geiping, H

    J. Geiping, H. Bauermeister, H. Dröge, and M. Moeller. Inverting gradients-how easy is it to break privacy in federated learning?Advances in neural information processing systems, 33:16937–16947, 2020

  11. [19]

    L. Guo, Y . Yu, M. Qian, R. Zhang, H. Gao, and Z. Cheng. Fedrul: A new federated learning method for edge-cloud collaboration based remaining useful life prediction of machines.IEEE/ASME Transactions on Mecha- tronics, 2022

  12. [20]

    Hayes and O

    J. Hayes and O. Ohrimenko. Contamination attacks and mitigation in multi-party machine learning.Advances in neural information processing systems, 31, 2018

  13. [21]

    S. Ji, S. Pan, G. Long, X. Li, J. Jiang, and Z. Huang. Learning private neu- ral language modeling with attentive aggregation. In2019 International joint conference on neural networks (IJCNN), pages 1–8. IEEE, 2019

  14. [22]

    D. P. Kingma and J. Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014

  15. [23]

    Y . Lei, N. Li, L. Guo, N. Li, T. Yan, and J. Lin. Machinery health prog- nostics: A systematic review from data acquisition to RUL prediction. Mechanical Systems and Signal Processing, 104:799–834, 2018

  16. [24]

    H. Li, C. Li, J. Wang, A. Yang, Z. Ma, Z. Zhang, and D. Hua. Review on security of federated learning and its application in healthcare.Future Generation Computer Systems, 144:271–290, 2023

  17. [25]

    T. Li, A. K. Sahu, M. Zaheer, M. Sanjabi, A. Talwalkar, and V . Smith. Federated optimization in heterogeneous networks.arXiv preprint arXiv:1812.06127, 2018

  18. [26]

    X. Li, Q. Ding, and J.-Q. Sun. Remaining useful life estimation in prog- nostics using deep convolution neural networks.Reliability Engineering &System Safety, 172:1–11, 2018

  19. [27]

    Li, D.-C

    X.-C. Li, D.-C. Zhan, Y . Shao, B. Li, and S. Song. Fedphp: Federated personalization with inherited private models. InJoint European Con- ference on Machine Learning and Knowledge Discovery in Databases, pages 587–602. Springer, 2021

  20. [28]

    H. Lu, A. Thelen, O. Fink, C. Hu, and S. Laflamme. Federated learn- ing with uncertainty-based client clustering for fleet-wide fault diagnosis. arXiv preprint arXiv:2304.13275, 2023

  21. [29]

    H. Lu, A. Thelen, O. Fink, C. Hu, and S. Laflamme. Federated learn- ing with uncertainty-based client clustering for fleet-wide fault diagnosis. Mechanical Systems and Signal Processing, 210:111068, 2024

  22. [30]

    McMahan, E

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

  23. [31]

    Mihai, N

    B. Mihai, N. Saurabh, and D. Kimovski. Multi-objective optimization of federated learning systems in the computing continuum. In M. Farman- bar, M. Tzamtzi, A. K. Verma, and A. Chakravorty, editors,Frontiers of Artificial Intelligence, Ethics, and Multidisciplinary Application...

  24. [32]

    Mitici, I

    M. Mitici, I. de Pater, A. Barros, and Z. Zeng. Dynamic predictive main- tenance for multiple components using data-driven probabilistic rul prog- nostics: The case of turbofan engines.Reliability Engineering&System Safety, 234:109199, 2023

  25. [33]

    Rezaeianjouybari and Y

    B. Rezaeianjouybari and Y . Shang. Deep learning for prognostics and health management: State of the art, challenges, and opportunities.Mea- surement, 163:107929, 2020

  26. [34]

    Röder, P

    M. Röder, P. Kowalczyk, and F. Thiesse. Tracing down the value of co- creation in federated ai ecosystems. InECIS, 2022

  27. [35]

    S. Ruiz, A. Rungger, J. Busto, S. Toor, and I. Martin. Privacy-preserving federated machine learning in atm: experimental results from two use cases.Proceedings of the 12th SESAR Innovation days, 2022

  28. [36]

    Sannara, F

    E. Sannara, F. Portet, P. Lalanda, and V . German. A federated learning aggregation algorithm for pervasive computing: Evaluation and compar- ison. In2021 IEEE International Conference on Pervasive Computing and Communications (PerCom), pages 1–10. IEEE, 2021

  29. [37]

    Final project results report: AICHAIN, a platform for privacy- preserving federated machine learning using blockchain to enable opera- tional improvements in ATM., 2022

    SESAR. Final project results report: AICHAIN, a platform for privacy- preserving federated machine learning using blockchain to enable opera- tional improvements in ATM., 2022

  30. [38]

    Shang, D

    J. Shang, D. Xu, H. Qiu, L. Gao, C. Jiang, and P. Yi. A novel data augmen- tation framework for remaining useful life estimation with dense convolu- tional regression network.Journal of Manufacturing Systems, 74:30–40, 2024

  31. [39]

    B. Wang, Y . Lei, N. Li, and T. Yan. Deep separable convolutional network for Remaining Useful Life prediction of machinery.Mechanical Systems and Signal Processing, 134:106330, 2019

  32. [40]

    Y . Wang, T. Zhu, W. Chang, S. Shen, and W. Ren. Model poisoning defense on federated learning: A validation based approach. InInter- national Conference on Network and System Security, pages 207–223. Springer, 2020

  33. [41]

    D. Wu, R. Ullah, P. Harvey, P. Kilpatrick, I. Spence, and B. Varghese. Fedadapt: Adaptive offloading for iot devices in federated learning.IEEE Internet of Things Journal, 9(21):20889–20901, 2022

  34. [42]

    C. Xie, O. Koyejo, and I. Gupta. Generalized byzantine-tolerant sgd. arXiv preprint arXiv:1802.10116, 2018

  35. [43]

    C. Xie, S. Koyejo, and I. Gupta. Zeno: Distributed stochastic gradient descent with suspicion-based fault-tolerance. InInternational Conference on Machine Learning, pages 6893–6901. PMLR, 2019

  36. [44]

    W. Yang, J. Chen, Z. Chen, Y . Liao, and W. Li. Federated transfer learning for bearing fault diagnosis based on averaging shared layers. In 2021 Global Reliability and Prognostics and Health Management (PHM- Nanjing), pages 1–7. IEEE, 2021

  37. [45]

    D. Yin, Y . Chen, R. Kannan, and P. Bartlett. Byzantine-robust distributed learning: Towards optimal statistical rates. InInternational conference on machine learning, pages 5650–5659. Pmlr, 2018

  38. [46]

    T. Yu, E. Bagdasaryan, and V . Shmatikov. Salvaging federated learning by local adaptation.arXiv preprint arXiv:2002.04758, 2020

  39. [47]

    Zhang and X

    W. Zhang and X. Li. Federated transfer learning for intelligent fault di- agnostics using deep adversarial networks with data privacy.IEEE/ASME Transactions on Mechatronics, 27(1):430–439, 2021

  40. [48]

    Zhang and X

    W. Zhang and X. Li. Data privacy preserving federated transfer learning in machinery fault diagnostics using prior distributions.Structural Health Monitoring, 21(4):1329–1344, 2022

  41. [49]

    Zhang, X

    W. Zhang, X. Li, H. Ma, Z. Luo, and X. Li. Federated learning for machinery fault diagnosis with dynamic validation and self-supervision. Knowledge-Based Systems, 213:106679, 2021

  42. [50]

    K. Zhao, J. Hu, H. Shao, and J. Hu. Federated multi-source domain ad- versarial adaptation framework for machinery fault diagnosis with data privacy.Reliability Engineering&System Safety, 236:109246, 2023

  43. [51]

    L. Zhu, Z. Liu, and S. Han. Deep leakage from gradients.Advances in neural information processing systems, 32, 2019. A. Appendix: Artifact Description We briefly present in this section the reproducibility artifact of our proposed FL framework. A.1. Release The complete protot...

Pith tools

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