Next Article in Journal
Impact of a Community-Based Health Intervention on Health Knowledge, Lifestyle Goals, Dietary Practices, and Physical Activity in Older Adults: A Multisite Cohort Study
Next Article in Special Issue
Adoption of Artificial Intelligence in Rehabilitation: Perceptions, Knowledge, and Challenges Among Healthcare Providers
Previous Article in Journal
The Efficacy of Transversus Abdominis Plane (TAP) Blocks When Completed by Anesthesiologists Versus by Surgeons: A Systematic Review and Meta-Analysis
Previous Article in Special Issue
Assessment Study of ChatGPT-3.5’s Performance on the Final Polish Medical Examination: Accuracy in Answering 980 Questions
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Review

Federated Learning in Smart Healthcare: A Comprehensive Review on Privacy, Security, and Predictive Analytics with IoT Integration

1
Department of Bioscience, COMSATS University, Islamabad 45550, Pakistan
2
Department of Precision Medicine, Sungkyunkwan University School of Medicine, Suwon 16419, Republic of Korea
3
Department of Artificial Intelligence, Sungkyunkwan University, Suwon 16419, Republic of Korea
4
Department of Metabiohealth, Sungkyunkwan University, Suwon 16419, Republic of Korea
5
Personalized Cancer Immunotherapy Research Center, Sungkyunkwan University School of Medicine, Suwon 16419, Republic of Korea
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Healthcare 2024, 12(24), 2587; https://doi.org/10.3390/healthcare12242587
Submission received: 25 November 2024 / Revised: 19 December 2024 / Accepted: 20 December 2024 / Published: 22 December 2024
(This article belongs to the Special Issue Artificial Intelligence in Healthcare: Opportunities and Challenges)

Abstract

:
Federated learning (FL) is revolutionizing healthcare by enabling collaborative machine learning across institutions while preserving patient privacy and meeting regulatory standards. This review delves into FL’s applications within smart health systems, particularly its integration with IoT devices, wearables, and remote monitoring, which empower real-time, decentralized data processing for predictive analytics and personalized care. It addresses key challenges, including security risks like adversarial attacks, data poisoning, and model inversion. Additionally, it covers issues related to data heterogeneity, scalability, and system interoperability. Alongside these, the review highlights emerging privacy-preserving solutions, such as differential privacy and secure multiparty computation, as critical to overcoming FL’s limitations. Successfully addressing these hurdles is essential for enhancing FL’s efficiency, accuracy, and broader adoption in healthcare. Ultimately, FL offers transformative potential for secure, data-driven healthcare systems, promising improved patient outcomes, operational efficiency, and data sovereignty across the healthcare ecosystem.

1. Introduction

1.1. Background and Motivation

The healthcare sector has seen extraordinary advancements in data-driven approaches, prompted largely by machine learning (ML) and deep learning (DL) applications that include personalized treatment plans, predictive analytics, and intelligent diagnostics [1]. However, healthcare data, because of its sensitive and private nature, offers unique challenges around privacy, security, and ethical data utilization. Traditional centralized ML methods need data to be compiled at a central location, which can increase privacy risks and conflict with healthcare protocols like the Health Insurance Portability and Accountability Act (HIPAA) and General Data Protection Regulation (GDPR). In reaction to these challenges, federated learning (FL) has become evident as a promising solution for maintaining data security without sacrificing the capability of ML and DL models.
FL facilitates decentralized model training precisely at the database, which can involve mobile devices, hospitals, or any IoT-enabled health devices. This distributed strategy permits healthcare institutions to collectively take advantage of large-scale ML without sharing raw patient data, thus preserving privacy and agreements with data protection protocols [2]. By maintaining data within organizational limits and aggregating only model updates, FL reduces the risks related to data exposure and mishandling, making it a beneficial technique for modern smart health systems. Figure 1 shows the growing challenges in healthcare data security, emphasizing the role of hacking, unauthorized access, and other causes as leading factors in data breaches [3].
Early cancer diagnosis accuracy has been shown to significantly improve with FL. For example, using sophisticated privacy-preserving techniques like differential privacy, a memory-aware curriculum FL strategy increased the precision of local models in breast tumor prediction by up to 20% while protecting patient information confidentiality [4]. Similarly, by combining decentralized local model weights from several medical facilities, an FL framework was able to classify lung and colon cancer with as much as 99.7% accuracy, demonstrating how it can improve the performance while adhering to data privacy laws [5].
The manuscript reviews the revolutionary potential of FL in healthcare. Section 1 introduces the concept of FL and its importance by addressing the challenges and privacy concerns, along with the contributions. Section 2 delves into the methodology, describing the inclusion and exclusion criteria. Section 3 gives an overview of FL and delves into the key healthcare applications of FL supported by case studies, highlighting its benefits over centralized approaches. Section 4 identifies major security risks in FL along with mitigation techniques. The advancements in smart healthcare systems exploring FL’s role in remote monitoring and IoT are explained in Section 5. The scalability and challenges are discussed in Section 6 followed by Section 7, which outlines the future directions and recommendations, and finally, Section 8 concludes the work.

1.2. Federated Learning

FL is a decentralized method in ML where multiple clients collaboratively train a shared model without directly sharing data. This method is specifically beneficial for possibilities where data privacy is paramount, or where centralized data storage is not practical due to constraints such as bandwidth or data ownership regulations [6]. In traditional ML, data are collected in a central location, and a model is trained on these data. However, in FL, the data remain on the client devices, and only the model updates such as gradients or weights are exchanged with a central server. This assures that sensitive data never leave the device or institution, preserving privacy and reducing the risks associated with data breaks [7].
Different designs of FL are made to handle different situations in which data are distributed among participating clients. These designs maintain data confidentiality and privacy while facilitating interactive learning. The three primary FL architectures include horizontal FL, vertical FL, and federated transfer learning. When clients have the same feature spaces but distinct samples, horizontal FL is defined by splitting data among various entities with comparable characteristics. For example, customer data from several firms may have the same columns but distinct specifics. When two clients have distinct feature spaces but a common sample ID space, vertical FL is applicable. This design allows for thorough data analysis while avoiding the complete exchange of data by having clients work together on a shared pool of samples while adding distinctive features. Federated transfer learning is used when clients have different sample and feature spaces. This method facilitates learning through a variety of datasets with little information exchange by allowing information transfer among clients with variable distributions.
The FL process generally follows a set of steps, as shown in Figure 2, that allow a global model to be trained together. Initially, a global model is created and distributed by the central server to all participating clients. Each client then trains this model locally using its own data. The local training typically involves running a few iterations of the model using the client’s local dataset. After training, the client sends the model updates, such as the changes in weights or gradients, back to the central server, instead of sharing the raw data themselves. The central server then aggregates these updates from multiple clients, often using a method called Federated Averaging (FedAvg). This method averages the model updates based on the number of data points each client has, ensuring that clients with more data contribute relatively more to the model update. The aggregated global model is then sent back to the clients, where they continue training in the following rounds [8].
One of the key algorithms used in FL is Federated Averaging (FedAvg). This method helps combine the updates from different clients into a single global model. FedAvg works by computing the weighted average of the model parameters, with the weight assigned to each client’s model update based on the number of data points. This assures that the updates from clients with more data are given more importance in the aggregation process [9]. For instance, if Client A has a dataset of 1000 examples and Client B has 500, the model update from Client A will be weighted more heavily in the aggregation. This repetitive process of local training and model aggregation continues until the global model converges to an optimal solution. A number of sophisticated optimization methods, such as FedProx [10], SCAFFOLD [11], and FedNova [12], have been produced in addition to the fundamental FedAvg algorithm. FedProx helps to stabilize training among a variety of clients by addressing network diversity by including a proximal factor in the local optimization target. In non-IID (not independent and identically distributed) data settings, SCAFFOLD minimizes client drift by correcting for local update drift through the use of parameter shifts. FedNova improves convergence by normalizing and scaling local updates and is especially helpful in situations when clients have different data volumes.
FL addresses many challenges associated with traditional ML, including data privacy, bandwidth limitations, and scalability. Since raw data are never transferred to the central server, users maintain control over their personal or organizational data, which is crucial in fields like healthcare, finance, or any other domain where privacy is critical. Furthermore, FL allows training models on vast and diverse datasets that are distributed across multiple devices or organizations, which can lead to more robust and generalizable models. The approach is also bandwidth-efficient, as only model updates need to be communicated, reducing the need for large data transfers [13].
However, FL also presents its own set of challenges. For one, clients often have non-IID (non-independent and identically distributed) data, meaning that the data on different clients may not be evenly distributed or may have different distributions. This can make the model training more difficult, as the global model must generalize across highly diverse datasets. Additionally, FL requires robust mechanisms for ensuring secure model updates and preventing malicious actors from corrupting the global model, such as through Federated Secure Aggregation techniques or differential privacy to guarantee that updates cannot be reverse-engineered to reveal individual client data. There are also issues with communication efficiency and system heterogeneity, as clients may have different computational resources or network connectivity, requiring the careful design of the learning process [14].

1.3. Federated Learning in Healthcare

Smart healthcare systems combine IoT devices, wearables, and electronic health records (EHRs) to develop an interconnected system for continuous patient monitoring. With the growth of IoT in health maintenance, large-scale data are developed, encompassing biological parameters, psychological patterns, and ecological data; all of these possess significant value for ML models in patient-centered care [15]. FL supports this framework by allowing ML models to train on mixed data sources without requiring a centralized database. This is imperative in public health settings where data vicinity is significant, particularly in hospitals and organizations collaborating in different legal systems with distinct data governance laws.
Considering these intricacies, the application of FL in healthcare like remote monitoring, personalized medicine, clinical decision support systems, medical imaging analysis, patient risk prediction, and electronic health records optimization requires enhanced security solutions to certify that model upgrades are free of impurity by deceptive input attacks, corrupted input exploitation, or training data recovery [16,17,18]. Consequently, FL is not only essential in healthcare IoT networks for securing sensitive information but also as a mechanism to create a sense of security in AI applications across healthcare providers and patients [19,20].
Figure 3 illustrates a detailed FL workflow applied to the healthcare environment. The central aggregator coordinates model updates from decentralized sources, including Hospital A (EHR Data), Hospital B (Clinical Data), IoT Devices (Vital Signs), and Wearable Devices (Patient Activity). Patients contribute data directly to IoT and wearable devices, which are then used for training without leaving the devices, ensuring data privacy. The model updates are securely aggregated at the central server, preserving patient privacy. Labels and arrows show the flow of data and model updates, emphasizing the decentralized nature of FL, secure aggregation, and privacy preservation.

1.4. Overview of Key Challenges and Opportunities

While FL offers transformative potential for smart health systems, its implementation suggests a variety of issues with both technology and compliance. One of the primary issues is sustaining data stability and credibility while working across the collaborative network where different types of devices, operating in diverse environments, are disposed to irregularity in data quality and breaks in communication. In addition, the decentralized nature of FL makes security measures difficult, with opposing and input manipulation attacks being particularly concerning due to the limited visibility of local model updates [21].
Another challenge is found in algorithmic growth potential and stability. FL systems in healthcare must manage varying computational resources across devices, such as cutting-edge servers in hospitals in comparison to low-power IoT devices used in remote monitoring, creating demand for transformable, lightweight algorithms [22]. Recent studies have underscored the significance of privacy protection and security for FL in the medical field [23,24]. Additionally, securing federated models against adversarial attacks and providing ethical data handling across multiple administrative divisions add layers of complexity [25,26].
Opportunities for FL in healthcare are still significant. FL enables multi-institutional research, supporting statistic-based discoveries across geographical barriers and promoting a collaborative research environment that may accelerate advancements in personalized medicine, disease prediction, and treatment efficacy [27]. Furthermore, the collection of FL with blockchain and privacy-preserving techniques such as privacy-enhancing technology further strengthens data protection capabilities, which can be instrumental for the utilization of ML in highly regulated healthcare sectors [28]. Table 1 summarizes the challenges and opportunities in FL.

1.5. Scope and Purpose of This Review

This systematic review paper aims to integrate recent advancements in FL within the perspective of smart healthcare systems, emphasizing the following features:
  • Privacy and Security Enhancements: Analyzing methods to protect FL models, consisting of encryption techniques, multi-party computation, and differential privacy.
  • Applications in Smart Health: Evaluating FL applications over different healthcare domains, such as EHR analysis, predictive diagnostics, remote monitoring, and customized treatment planning.
  • Future Directions and Challenges: Finding technical, ethical, and regulatory challenges in implementing FL in healthcare and describing potential future directions to focus on these problems.
This review fills a number of important gaps in the literature on FL in smart healthcare. First of all, it offers an in-depth study of FL applications, particularly in IoT-integrated smart health systems along with privacy-preserving techniques, a field that has frequently been ignored in earlier evaluations. Secondly, it integrates the assessment of FL with blockchain integration in healthcare. It first examines the ways in which these technologies can work together to enhance data security and transparency. Next, it delves deeply into the difficulties with deploying FL in healthcare settings with limited resources, which is an important real-world deployment factor that has not received much attention in previous research.

1.6. Contributions to the Literature

This review makes a special contribution by focusing exclusively on studies published recently (2023–2024), showing it highlights the most recent developments in FL within healthcare. As opposed to previous reviews, which often rely on older research or broader industry-wide findings, this paper emphasizes the latest innovations and trends specifically in the healthcare area.
It presents an in-depth view addressing the evolving challenges and opportunities of FL in healthcare. It analyzes recent applications of FL in personalized medicine, predictive diagnostics, remote monitoring, and clinical decision support systems and how these have been enhanced through newer privacy and security techniques, such as differential privacy and secure multiparty computation.
Moreover, this paper highlights recent advancements in privacy-preserving technologies, data protection, and interoperability solutions, which have obtained increasing attention in recent studies. This review provides a timely and comprehensive understanding of FL’s role in healthcare, offering valuable insights for researchers and policymakers working to implement FL in healthcare systems while addressing complicated ethical, scientific, and safety concerns. This study expands on prior research by addressing topics that were not included in prior reviews, such as blockchain-enabled FL in healthcare and recent developments (2023–2024) in hybrid privacy-preserving approaches. Additionally, it thoroughly assesses FL’s adaptability in IoT-based healthcare systems as well as its boundaries in contexts with limited resources.
A thorough comparison of this study with other recent reviews is given in Table 2. This comparison illustrates the distinct target areas, privacy and security concerns, challenges and limitations, real-world implementations, and unique contributions of each study, showcasing the unique viewpoints and thorough coverage provided by our review.

2. Methodology

This review employs an established transparent approach intended to thoroughly examine the state of FL in intelligent healthcare systems today. The methodology is set up to guarantee the methodical finding, gathering, and integration of pertinent material while answering important research questions in an open and reliable manner. This review attempts to give a thorough and objective assessment of FL uses, difficulties, and possibilities in healthcare by using a systematic search method, clear inclusion/exclusion criteria, and an extensive data extraction infrastructure.

2.1. Research Questions

The principal aim of this systematic review is to conduct a thorough analysis of the state of FL in intelligent healthcare systems. To achieve this, the systematic review is structured to address the following fundamental research questions:
  • What are the leading applications of FL in healthcare, primarily within smart health systems?
  • What security and privacy-preserving methods are utilized to increase FL in health data management?
  • What are the primary limitations and challenges of FL in healthcare, and how can they be resolved?
  • What are the prospects for FL in improving smart health applications?
These research questions serve as a roadmap for our systematic evaluation and offer a thorough grasp of the potential, difficulties, and future prospects of FL in intelligent healthcare systems.

2.2. Search Strategy

To secure a detailed and up-to-date analysis, an organized search was performed over major scientific databases known for AI, healthcare, and security publications. The databases selected were SpringerLink, PubMed, ScienceDirect, ACM Digital Library, and IEEE Xplore. The search covered articles published from 2023 to 2024 to record the most recent advancements in FL for healthcare, given the fast evolution of this field.
The following keyword search terms and combinations were used:
  • “Healthcare”AND“Federated Learning”
  • “Federated Learning”AND“Smart Health”AND“Security”
  • “IoT”AND“Healthcare”AND“Deep Learning”
  • “Privacy-preserving Machine Learning”AND“Healthcare”AND“Federated Learning”
The addition of these search terms aimed to capture an extensive range of literature spanning technical, security, and application-oriented viewpoints on FL in smart healthcare systems.

2.3. Study Selection

Inclusion and exclusion criteria were set up to refine the search results. Only the studies meeting the following criteria were included in the review:

2.3.1. Inclusion Criteria

  • Peer-reviewed articles published in journals or conference proceedings.
  • Studies that focus on FL within smart health applications or healthcare.
  • Articles that discuss security and privacy techniques specific to FL in healthcare.
  • Publications from 2023 onward to confirm the inclusion of recent developments.
Figure 4 depicts the number of papers published on ML, DL, and FL in healthcare since 2018.

2.3.2. Exclusion Criteria

  • Studies that do not address healthcare applications specifically or are limited to non-healthcare FL applications.
  • Papers focused on traditional centralized ML methods without FL or privacy concerns.
  • Review articles that do not involve new findings on FL applications or security.
  • Non-English publications due to translation limitations.
The inclusion and exclusion criteria were applied along an initial screening process of titles and abstracts, followed by a full-text review for significance and alignment with the research questions.

2.4. Data Extraction

Following the refinement of our search study using the inclusion and exclusion criteria, we conducted a methodical data extraction procedure for the chosen studies. We created a standardized data extraction format to guarantee accuracy and thoroughness in gathering data. The purpose of this format is to gather important data that would answer our research inquiries about FL in intelligent healthcare systems. We retrieved the following crucial information from every article that satisfied our inclusion requirements:
  • Study Information Detail: Title, authors, publication year, and source.
  • Study Context: Federated learning application area (e.g., disease prediction, EHR analysis, patient monitoring).
  • Research Contributions: FL models, privacy-preserving techniques, and healthcare applications.
  • Challenges Discussed: Technical challenges, data quality issues, and execution limitations.
  • Proposed Solutions: Any methodologies introduced to approach the identified challenges.
  • Future Directions: The authors’ suggestions for future research and potential advancements in FL for healthcare.
This template ensured consistent and detailed data extraction, facilitating structured analysis of the research findings. Table 3 displays a sample data extraction template for FL studies.

2.5. Data Analysis

After data extraction, a subject-based synthesis was executed to organize the findings about the research questions. In order to present a comprehensive knowledge of FL in smart healthcare, our investigation included both qualitative and quantitative methodologies.
  • Qualitative Analysis: For each individual research question, a qualitative analysis of the extracted data was achieved. Themes and sub-themes were classified based on the classes of FL applications, the nature of security techniques, and the types of challenges discussed in the literature.
  • Quantitative Analysis: A subset of studies with quantitative analysis of FL models in healthcare methods was identified. Metrics such as privacy loss, model accuracy, and computational cost were recorded, and summary analysis was performed to identify trends and evaluation metrics.
We combined the qualitative and quantitative data to present a thorough summary of FL’s current status in smart healthcare, answering each research question with narrative analysis and, where appropriate, quantitative proof.

2.6. Quality Assessment

To confirm that only high-quality studies were included in the review, we thoroughly evaluated the quality of every chosen study. This procedure was essential to preserving the reliability and authenticity of the findings. Each study was examined using the following standards:
  • Connection to Research Questions: Each study’s connection to the research questions was examined based on its focus on FL, security, and healthcare.
  • Study Design Rigor: Only studies that employed intensive experimental or simulation-based methodologies were included.
  • Transparency and Consistency: Studies with well-documented methodologies, transparent results, and comprehensive conclusions were emphasized.
A comprehensive workflow for the systematic review approach is shown in Figure 5, which follows PRISMA guidelines, showing every stage from database identification to the ultimate inclusion of the research studies.

2.7. Limitations

The limitations of this review involve possible selection bias due to language restrictions (English-only) and the challenge of the quickly evolving research in FL, where more recent publications may not have been indexed. This guarantees methodological uniformity even though it reduces the global scope of the studies involved. Additionally, specific studies may not have uniform terminology, which could affect the comprehensiveness of the search results.
Future reviews should consider including non-English studies and exploring alternative search strategies to capture the latest research developments in FL and smart health systems. Working with multilingual collaboration, future evaluations could close this disparity and improve the generalizability of this work.

3. Overview of Federated Learning in Healthcare

FL is a decentralized method of ML that allows data to persist within the limits of its origin, such as healthcare institutions, and model parameters are shared rather than raw data. This framework directly addresses security, privacy, and regulatory issues by preventing data from being transferred to a main location, thus aligning with the strict privacy requirements of healthcare domains. This method addresses critical concerns around security, privacy, and regulatory compliance by eliminating the need to transfer data to a central location, making it particularly well suited to the stringent privacy requirements of healthcare domains. Additionally, FL enables cross-institutional research and collaboration without compromising data privacy, fostering advancements in fields where data sharing is restricted [39].
FL works on a series of local devices or local servers, cooperatively learning a global model by compiling updates from local training on multiple distributed sources [40]. In healthcare, this model is especially relevant as it enables institutions like hospitals, research labs, and clinics to build strong predictive and diagnostic models without compromising patient privacy.

3.1. Key Applications of Federated Learning in Healthcare

3.1.1. Disease Prediction and Early Detection

FL has seen notable applications in disease prediction and early diagnosis, particularly for situations requiring large, different datasets to train perfect models [41]. Diseases like cancer, diabetes, and cardiovascular conditions benefit from FL as it allows for diverse data integration while maintaining patient confidentiality. The study [42] demonstrated how FL models improve prediction accuracy in distributed clinical data, enabling cross-institutional collaboration for early detection without data centralization.
A model for initial breast cancer detection was trained over multiple healthcare centers, attaining robust performance by aggregating locally trained models. This distributed way allowed diverse patient demographics to be represented without compromising individual privacy [43].

3.1.2. Electronic Health Record (EHR) Analysis

Electronic Health Records (EHRs) hold sensitive patient datasets, and analyzing these data can show patterns that improve patient results and operational efficiency. FL is used to examine EHR data from hospitals and clinics without revealing sensitive data. Research by [44] utilized FL for EHR predictive analysis, facilitating improvements in clinical decision support systems while upholding patient data privacy.
Google has an alliance with healthcare distributors to apply FL for predictive analysis on EHRs, achieving high accuracy in patient output prediction while following privacy laws like HIPAA and GDPR [32].

3.1.3. Remote Monitoring and Wearable Device Integration

FL is progressively utilized in remote health monitoring, where wearable devices collect data such as glucose levels, heart rate, and physical activity. Using local data processing, these devices can support a shared model for real-time health monitoring without transmitting sensitive data to a central server [44]. This is particularly relevant in chronic disease management, where continuous monitoring is vital.
Fitbit uses FL to accumulate health insights over user data for predictive analytics while retaining user privacy. Fitbit employs FL to enhance health insights through predictive analytics while safeguarding user privacy. In traditional ML, data from individual devices are centralized for model training, raising privacy concerns. FL addresses this by keeping user data on personal devices. Instead of transferring raw data to a central server, devices locally train models and share only the aggregated updates. These updates are then combined to improve the global model without exposing individual data points. This approach allows Fitbit to refine its health analytics and predictive capabilities across its user base while ensuring personal data remain confidential [45].

3.2. Advantages of Federated Learning in Healthcare

The adoption of FL in healthcare is motivated by multiple advantages:
  • Data Privacy and Security: FL enables institutions to train models without sharing sensitive patient information, aligning with regulations like HIPAA and GDPR [46].
  • Improved Model Generalization: Aggregating model updates from diverse patient data across institutions improves generalizability, essential for predictive accuracy in diverse populations [47].
  • Regulatory Compliance: By keeping data on-site, FL supports compliance with privacy laws, facilitating broader collaboration across healthcare entities [48].
  • Lower Data Transfer Costs: FL reduces costs associated with transferring large datasets, especially for medical imaging or genomics data, by only transmitting model updates [32].
Figure 6 showcases the main benefits of FL in healthcare. Data Privacy and Security lead, as FL allows model training without data centralization, aligning with healthcare’s tough privacy standards. Improved Model Generalization follows, improving predictive accuracy by utilizing diverse patient data over institutions. Regulatory Compliance is a major benefit, as FL supports healthcare laws like HIPAA by keeping data local. Finally, Lower Data Transfer Costs are highlighted, showing how FL reduces expenses by only transmitting model updates, which is especially valuable for large datasets like medical imaging. This distribution underlines FL’s strategic role in addressing healthcare challenges [2,49].
Compared to the centralized ML models, FL provides substantial advantages. For example, in a multi-hospital managing diabetes research, FL decreased the risk of data breaches by 40% while also improving predicted outcomes by 15% in EHR analysis as compared to centralized ML [4,34]. In a similar vein, FL-enabled remote monitoring with wearable technology showed a precision of 90% in detecting chronic diseases, greatly enhancing clinical results without risking data privacy. FL has enabled multi-institutional partnerships in disease prediction that have improved model generalizability by 20% while adhering to stringent data-sharing laws such as GDPR [5]. Table 4 addresses the problem of limited critical evaluation and effectiveness of applications like disease prediction and remote monitoring, including a comparative discussion on how FL improves over centralized models for each application.

3.3. Challenges in Implementing Federated Learning in Healthcare

Although FL offers revolutionary possibilities for the healthcare industry, privacy, security, scalability, and practical implementation are among its major challenges. Below, we explore the main challenges, emphasizing how they affect FL’s effectiveness and acceptability in various healthcare environments.

3.3.1. Data Diversity and Quality Control

Healthcare data are well known and diverse, with differences in patient imaging protocols, demographics, and clinical practices across organizations. These differences generate data heterogeneity, which can delay FL model convergence and performance [56]. Furthermore, unreliable data quality can introduce biases and mistakes, complicating the learning process.
There is a need for robust aggregation methods to handle varied data in federated settings. Robust data pre-processing is important to manage data quality problems across distributed healthcare datasets [57].

3.3.2. Communication Burden and Resource Limitations

Communication cost is an essential challenge in FL, particularly when data sources are distributed across low-resource domains. A key challenge in these environments is the high communication cost connected to transmitting frequent updates between local models and a central server. Communication delays can be a significant constraint in remote hospitals or medical facilities with poor internet access. For example, one study discovered that, in contrast to metropolitan settings with reliable internet access, remote healthcare institutions with inadequate internet access had communication delays that prolonged training periods by more than 50%. These delays reduce the effectiveness of FL, as they slow down model convergence and prevent the timely acquisition of new data. Moreover, in some remote regions, internet access is so limited that models are only able to synchronize every few days, which significantly limits the overall learning process [29]. Effective communication protocols are required to manage the high volume of model updates while minimizing latency [46].
Compression techniques like Federated Averaging (FedAvg) have been suggested to minimize the size of updates, but further advancements are required to improve communication efficiency in resource-limited healthcare environments [58].
Figure 7 illustrates how communication optimization techniques, including model compression and Federated Averaging (FedAvg), can lower the amount of data that must be transferred. Training cycles are shown on the x-axis, and the total data transfer amount in megabytes (MB) is displayed on the y-axis. It shows that optimization strategies make FL more practical in healthcare settings with limited resources by drastically reducing communication overhead. As training rounds progress, the volume of data that need to be transmitted decreases more rapidly when FedAvg is utilized, compared to the way without optimization. This reduction is specifically important in a healthcare environment where communication overhead can be a limiting factor because of the distributed nature of the data sources, such as hospitals and clinics, which may have limited bandwidth resources [59]. The data underscore the effectiveness of FedAvg in lowering the costs and latency associated with training FL models, thereby increasing the feasibility of implementing these models in real-world healthcare scenarios.

3.3.3. Security Vulnerabilities: Thread from Adversarial Attacks and Data Poisoning

Despite FL’s privacy advantages, it is susceptible to security risks, including adversarial attacks and data poisoning. Harmful agents can introduce biased updates, influencing model behavior. Ref. [60] analyzes how such attacks can seriously compromise model integrity in sensitive models like healthcare.

3.3.4. Model Understanding and Trust

For healthcare distributors to adopt FL solutions, models are required to be understandable, providing transparent observation diagnostics and predictions. Furthermore, DL models, mostly used in FL, are basically complex, presenting challenges in interpretability [61].
Explainable AI strategies are being investigated to make FL models more transparent, helping clinicians trust and understand model results in medical applications [44]. Techniques, such as SHAP (SHapley Additive exPlanations) and Grad-CAM have been used in FL-based models, helping clinicians with visual insights to find the most significant features. It has been used in diabetic retinopathy detection systems by producing interpretable outputs, enhancing the clinician’s confidence [62].

3.4. Case Studies in Federated Learning for Healthcare

3.4.1. Collaboration for Disease Prediction Among Hospitals

A significant case study included the FL effort among European hospitals to predict COVID-19 development. Each hospital trained local models on patient data, and updates were collected to form a global model that accurately predicted critical cases without data sharing [63].
In oncology, FL allows cancer research centers to coordinate without organizing sensitive patient data. A case study including melanoma detection over institutions resulted in a robust model with higher predictive accuracy than individual models [33].
Using a variety of patient data from several institutions, FL has developed more broadly applicable models for predicting diseases like sepsis and acute kidney damage (AKI) in precision medicine. These models guarantee better results across a range of patient demographics, outperforming conventional methods that depend on information gathered by a single institution [64]. Moreover, FL has also been used in the management of chronic diseases, where it analyzes data from wearable technology to provide longitudinal health surveillance. This guarantees individualized treatment without sacrificing privacy by providing current knowledge of patients’ situations [65].
Figure 8 shows key applications of FL in healthcare. Disease Prediction and Early Detection leads by enabling collaborative, privacy-preserving diagnosis; EHR Analysis improves clinical support by analyzing patient data without centralization; Medical Imaging improves diagnostic models using distributed imaging data; and Remote Monitoring tolerates FL for real-time health insights from wearables, important for chronic care. This distribution shows FL’s role in advancing healthcare while protecting privacy [29].

3.4.2. Future Directions and Research Opportunities

Future research in FL for healthcare involves several promising directions:
  • Blockchain in Federated Learning: Blockchain techniques can further secure FL by recording model modifications on distributed records, avoiding tampering, and improving transparency [66].
  • Real-Time Data Processing: Integration of real-time data processing competencies for FL in wearable devices could provide timely health understanding, critical in emergencies [67].
  • Consistency and Regulatory Support: The progress of standardized frameworks for FL in healthcare will support wider adoption and compliance with international healthcare regulations [2].
Figure 9 presents the future directions of FL in healthcare. One key field is the integration of Blockchain Technology, which can improve security by logging FL model updates on a distributed ledger, protecting against alteration and ensuring transparency [50]. FL with blockchain accelerated drug discovery by 30% by using communal model training on private data instead of sharing them explicitly [68]. However, integrating blockchain into FL increases computational costs due to negotiation procedures and encryption operations, including increased processing periods and power consumption. Therefore, lightweight consensus techniques and other effective procedures are required to address these issues while preserving scalability and security. Furthermore, real-time data processing capabilities, particularly in wearable devices, offer timely insights that are crucial in emergency scenarios by allowing FL models to process data locally for immediate health feedback [44]. Another significant direction is Standardization and Regulatory Support for FL in healthcare, where developing standardized frameworks will facilitate broader adoption and secure compliance with international regulations [2]. These advancements aim to make FL more secure, efficient, and widely applicable in sensitive fields like healthcare.

4. Security Issues in Federated Learning for Smart Health Systems

FL has obtained progress as a solution for secure, privacy-preserving data analysis in healthcare. By allowing data to persist within the boundaries of its origin (e.g., hospitals or IoT-enabled smart health devices), FL supplies a decentralized model training method that aligns well with rigid healthcare privacy regulations such as the GDPR and HIPAA [69]. Furthermore, this decentralized arrangement introduces special security challenges that must be addressed for FL to be reliably implemented in healthcare. Key problems involve adversarial attacks, data poisoning, model inversion, and secure aggregation of model updates [2].

4.1. Adversarial Attacks

Adversarial attacks are one of the most widespread threats in FL, where malicious attackers introduce refined model updates to compromise model integrity or manipulations into the data. These attacks can misguide models into making incorrect predictions, which in healthcare could result in serious diagnostic errors or inaccurate health monitoring [70,71]. In FL, adversarial attackers can operate privately due to the decentralized nature of data, making detection more challenging.

4.1.1. Adversarial Disturbance and Evasion Attack Techniques

In adversarial disturbance attacks, small changes to input data result in greatly different model predictions. For example, changing a few pixels in medical images might result in a wrong diagnosis, threatening patient safety. Evasion techniques, on the other hand, manipulate input data in real time to avoid detection by FL models in a smart health environment. Both types of attacks can disrupt patient results, especially when used in time-sensitive applications like heart monitoring or emergency response [69].
Defense techniques such as adversarial training, where the model is pre-trained with adversarial samples, have displayed promise. Another promising technique is robust aggregation methods, where model updates are evaluated for anomalies before being integrated into the global model [72,73].

4.1.2. Mitigation Techniques

Numerous mitigation strategies are being used in practical healthcare systems to counteract adversarial threats in FL. For example, differential privacy (DP) is frequently employed during training to ensure the integrity of personal information between groups [65]. Trusted Execution Environments (TEEs), like GradSec, safely conceal critical parameter values during inference to prevent adversary interventions [74]. Furthermore, the resilience of FL models in domains like cancer diagnosis using MRI is greatly increased by federated adversarial training frameworks, which rebuild global models utilizing adversarial data produced locally. Together, these methods improve FL security in the healthcare industry and guarantee usefulness in adverse challenges [75].

4.2. Data Manipulation Attacks

Data manipulation attacks are crucial threats in FL, particularly in healthcare. In targeted poisoning attacks, malicious contributors corrupt the model to misidentify specific data, which could be utilized to target certain diseases or demographic groups. Untargeted poisoning, in contrast, aims to degrade model efficiency globally, risking patient results over the board [72,76].
A poisoning attack on a model utilized for initial-stage disease diagnosis could modify the prediction edge for certain conditions, which is key to false-negative or -positive inpatient diagnoses [77,78].

Mitigation Techniques for Data Poisoning

Minimizing data poisoning in FL needs advanced methods to detect and exclude malicious updates. Techniques such as Byzantine-resilient aggregation methods and clustering-based anomaly detection, which can filter out compromised updates, have presented promise. Another method, robust Federated Averaging (FedAvg), evaluates model updates to detect exceptions that diverge significantly from the majority [79].
Designed to prevent malicious model updates from impacting the global model, this technique uses statistical approaches to filter irregularities in model updates, maintaining robustness even with a certain degree of compromised participants [72].
Figure 10 shows a radar chart analysis of four FL security techniques, including differential privacy, homomorphic encryption, robust aggregate, and adversarial training across key metrics: privacy preservation, computational efficiency, accuracy impact, and implementation complexity. Differential privacy scores highly on privacy preservation but has moderate computational efficiency. Homomorphic encryption provides strong privacy and accuracy but has high complexity and low computational efficiency, making it resource-intensive. Robust aggregation offers balanced scores across all metrics, indicating good overall performance with moderate complexity. Adversarial training excels in computational efficiency and is less complex but scores lower on privacy preservation and accuracy impact, suggesting a practical yet less privacy-focused approach. This comparison helps identify the best-suited technique based on specific security needs in FL.

4.3. Model Inversion Attacks

Model inversion attacks aim to rebuild sensitive data by leveraging the model’s parameters. In FL, model updates can release private data, as gradients can accidentally encode sensitive information about the input data used for training. In healthcare, this could result in the rebuilding of individual patient records, breaking privacy regulations [32].
For example, in a healthcare scenario, the gradients of a model trained on medical records could, under certain conditions, contain enough information to reconstruct individual patient data. This means that attackers might infer details like health conditions or personal identifiers, effectively “reversing” the model to gain insights into specific patient records. Such an outcome would be a serious breach of privacy regulations, such as HIPAA, and undermine the confidentiality of medical information.
In a particular study, attackers could rebuild images of MRI scans from gradients shared in an FL configuration, highlighting the privacy risks presented by unprotected gradient sharing in healthcare systems [80].

Techniques to Minimize Model Inversion

Many methods have been created to mitigate model inversion threats, like differential privacy, which expends noise to gradients to hide sensitive information. Other strategies include homomorphic encryption and secure multi-party computation (SMPC), which allow computations on encrypted data, significantly minimizing the risk of inversion attacks [81].
This strategy expands controlled noise to model updates, ensuring that individual data points cannot be reconstructed from the unified model, thus protecting patient privacy [2].

4.4. Security in Model Aggregation

Model aggregation is the foundation of FL, but it is also sensitive to security risks. During aggregation, updates from all participants are joined to create a global model, a procedure that can introduce exposures. If even a small number of participants are exposed, they could influence the global model or extract sensitive information from other enhancements [82].
Under one circumstance, an aggregation algorithm was adjusted by adversarial participants to diverge model predictions in a federated health model, creating incorrect disease risk assessments [83].

Secure Aggregation Methods

To boost security during aggregation, secure aggregation protocols, such as cryptographic techniques, have been developed. Techniques like homomorphic encryption and SMPC allow a safe overview of updates without disclosing individual contributions. This confirms that the aggregation server cannot see individual updates, reducing the risk of data leakage [81]. This empowers computations on encrypted data, meaning model updates can be aggregated without decryption, protecting participant privacy even from the central server [32]. Table 5 provides sources for the described threats and their corresponding mitigation techniques. This ensures the traceability and credibility of the information.

4.5. Privacy Preservation in Federated Learning

4.5.1. Privacy Enhancement

Distinctive privacy is broadly adopted in FL to protect private contributions to model updates. Through adding noise to updates, differential privacy confirms that personal data cannot be derived from the final aggregated model, an important feature for handling sensitive health data in FL applications [87].

4.5.2. Federated Learning with Blockchain

Blockchain offers a creative layer of security by verifying immutability and transparency in FL systems. In healthcare FL systems, blockchain can verify participant identity, prevent tampering, and keep an immutable record of model updates [32]. This helps build trust in FL systems, particularly when utilized in environments with multiple healthcare departments or IoT devices.
A blockchain-based FL system for healthcare IoT devices offered transparent and tamper-proof systems for model updates, confirming data authenticity and security in a network of wearables and medical devices [88].
Figure 11 highlights blockchain’s three important roles in increasing the security of FL systems: data immutability, tamper prevention, and identity verification. Each aspect is crucial in ensuring the confidentiality, integrity, and authenticity of model updates exchanged in FL networks. Data immutability, representing the highest score, reflects blockchain’s ability to give a secure and unalterable ledger of all transactions or updates, ensuring that once a model update is recorded, it cannot be manipulated. Tamper prevention further emphasizes the robustness of blockchain systems in preventing unauthorized changes to shared data, thus safeguarding the FL process against adversarial attacks. Finally, identity verification ensures that all participants are authenticated, reducing the risk of Sybil attacks or malicious entities infiltrating the FL system. These roles collectively establish blockchain as a transformative technology for mitigating several FL vulnerabilities [71].
Blockchain’s integration into FL systems has been particularly beneficial in healthcare and IoT applications. For example, healthcare FL systems can leverage blockchain to maintain a tamper-proof record of model updates across multiple departments or IoT devices, ensuring data security and enhancing trust among participants. Additionally, the transparency and accountability provided by blockchain encourage broader collaboration while protecting sensitive data. Studies such as [88] have demonstrated how blockchain-based FL systems ensure the authenticity and privacy of wearable medical device data, showcasing the technology’s potential to revolutionize secure data sharing in distributed learning environments. This integration addresses critical challenges in FL, fostering secure and efficient collaboration in sensitive domains.

4.6. Challenges and Future Directions

FL in healthcare, although promising, faces several security hurdles that require further research. These include developing lighter, more efficient encryption algorithms for resource-constrained environments, enhancing defenses against complex adversarial and data poisoning attacks, and improving model interpretability for regulatory compliance. Dealing with these issues will be essential for the large-scale deployment of FL in healthcare.
Ongoing research aims to develop adaptive FL models that can detect security threats in real time. Additionally, collaborations with cybersecurity experts and regulatory agencies will be critical in creating standards that enable secure, large-scale FL implementation in healthcare [88,89].

5. Advancement in Smart Health Systems

Smart health systems leverage growing technologies, such as the Internet of Things (IoT), AI, ML, and FL, to authorize real-time monitoring, customized healthcare, and enhanced patient results [44]. The systems’ goal is to build a connected healthcare ecosystem where data are analyzed, gathered, and actioned in real-time, enhancing both the efficiency and effectiveness of healthcare delivery [90].
Advancement in smart health systems is transforming healthcare in various key domains, from wearable technologies that monitor patient vital signs to AI-based diagnostics and FL that addresses data privacy related to multi-institutional healthcare settings [91]. With the rising adoption of these technologies, healthcare providers can provide more proactive, data-driven, and patient-centered care.
Figure 12 shows the impact of FL on predictive accuracy across three healthcare institutions; Hospital A, Clinic B, and Research Center C. The chart compares diagnostic model accuracy before and after implementing FL, demonstrating significant improvements in each case. For instance, Hospital A’s accuracy increased from 50% to 70%, showcasing how FL enhances model performance by utilizing diverse datasets from multiple institutions without sharing sensitive patient data. This collaborative approach strengthens the robustness and generalization of predictive models while maintaining strict data privacy, aligning with regulatory frameworks like HIPAA and GDPR. The results underscore FL’s potential to revolutionize data-driven healthcare analytics by enabling secure and effective multi-institutional collaborations [2,69].

5.1. Internet of Things (IoT) in Healthcare

The Internet of Things is fundamental to smart health systems, facilitating smooth data collection from interconnected devices, i.e., medical sensors, wearables, and home monitoring devices. IoT applications in healthcare offer a continuous flow of patient data, helping clinicians to make informed decisions based on real-time data rather than cyclic check-ups [92,93].

5.1.1. Wearable and Remote Monitoring Devices

Wearable devices like ECG monitors, fitness trackers, and glucose sensors play an important role in managing chronic situations, monitoring patient recovery, and providing alerts in emergency conditions. These devices continuously collect health metrics like oxygen levels, heart rate, and physical activity, allowing the early detection of potential health risks [94].
Apple and Fitbit Watch have integrated health applications that enable users to track various health metrics. More advanced wearables are being developed specifically for clinical applications, such as continuous glucose monitors (CGMs) for diabetes management, which provide real-time glucose readings to patients and their healthcare vendors [95].

5.1.2. Smart Homes and Remote Patient Monitoring

Smart health systems extend further than wearable devices to involve smart home systems that facilitate remote patient monitoring, especially for elderly or chronically ill patients who may need daily observation. Sensors in smart homes can detect falls, monitor sleep patterns, and even track medication regularization, helping patients to keep independence while confirming timely interventions when required [96].
A smart home system with IoT-enabled sensors permits patients with dementia to be monitored online, reducing hospital visits and improving their quality of life. This model has shown promise for other chronic conditions as well [97].

5.2. Artificial Intelligence and Machine Learning in Smart Health Systems

AI and ML are crucial in the modification of smart health systems, ensuring advanced data analysis and predictive modeling. AI applications in healthcare involve diagnostic assistance, medical image analysis, and predictive analytics for patient results, therefore supporting healthcare providers in making data-driven decisions and reducing diagnostic mistakes [98,99].

5.2.1. Predictive Analytics and Customized Care

Predictive analysis helps clinicians anticipate patient health paths based on historical and real-time data, therefore facilitating initial interventions. AI-based algorithms can identify patients in danger and recommend personalized treatment strategies, which improves both outcomes and patient satisfaction [100].
In cancer care, AI algorithms analyze genetics, patient history, and lifestyle factors to forecast cancer reoccurrence, allowing personalized post-treatment plans for high-risk patients. This not only helps in targeted care but also minimizes healthcare costs by focusing resources on patients most in need [101].

5.2.2. Medical Imaging and Diagnostics

AI has remarkably advanced medical imaging, enabling early detection and diagnosis of diseases such as cancers, neurological conditions, and cardiovascular diseases. Through analyzing medical images from X-rays, CT scans, and MRIs, AI can quickly detect irregularities with high accuracy, assisting radiologists in diagnostics and reducing human mistakes [102].
A DL model developed by Stanford University revealed high accuracy in diagnosing pneumonia from chest X-rays, outperforming human radiologists in some scenarios [103]. These kinds of advancements underscore the potential for AI to augment diagnostic capabilities in smart health systems.

5.3. Federated Learning for Privacy-Preserving Health Data Analytics

FL has surfaced as a solution to privacy in healthcare, enabling multiple institutions to collaboratively train ML models without sharing raw patient data [99]. This decentralized method is especially valuable in healthcare, where data sensitivity is highlighted, and regulations like HIPAA and GDPR restrict data sharing [104].
Table 6 highlights how FL enables collaborative model development across institutions while preserving patient privacy. It ensures compliance with data protection regulations, improves predictive accuracy using diverse datasets, and enhances security with advanced privacy techniques.

5.3.1. Multi-Institutional Research Collaboration

FL aids in collaboration within healthcare departments, allowing them to create models with a wider, more diverse dataset without undermining patient privacy. This strategy increases model robustness and generalization, supervising more accurate predictions and diagnostics [32].
FL use among European hospitals allowed researchers to collaboratively develop a model for predicting COVID-19 complications without exposing patient data, which improved predictive performance due to the diversity of the data [106].

5.3.2. Enhanced Security and Compliance

FL models, assembled with encryption and differential privacy approaches, offer a secure framework for data analysis in smart health systems. These security enhancements minimize the risk of data violations and ensure compliance with regulations, thus promoting safer, privacy-preserving analysis in healthcare [107].

5.4. Future Directions in Smart Health Systems

The future of smart health systems will likely be defined by more integration of AI and FL with IoT-enabled healthcare devices, making an increasingly connected and intelligent healthcare ecosystem. Essential steps for development include improving data interoperability within health systems, enhancing real-time data processing capabilities, and increasing the accessibility of smart health technology in resource-limited systems [108].
  • Standardization: Standard protocols for data exchange and interoperability will be important to integrate smart health systems seamlessly over healthcare networks [109].
  • Scalability: With increasing devices becoming connected, efficient scalability solutions, like edge computing, will be necessary to process data closer to the source and reduce latency in healthcare applications [110].

6. Challenges and Limitations

6.1. Data Privacy and Security Concerns

One of the major challenges in executing smart health systems rests in ensuring data privacy and security. The decentralized nature of FL addresses some privacy concerns by maintaining data on local devices, but it is still sensitive to security risks such as data poisoning, model inversion, and adversarial attacks [37]. These risks are particularly concerning in healthcare, where data sensitivity is essential. The implementation of robust privacy-preserving methods, like differential privacy and secure multiparty computation, is important but often enhances computational overhead and complexity to the system [111].
Many privacy-preserving approaches, while effective, can degrade model accuracy and increase training time, challenging the balance between data security and system performance [112].

6.2. Scalability Issues in Federated Learning

Scalability is a significant limitation in FL for healthcare systems, particularly when models are trained over multiple departments or IoT devices with varying computational capacities. Scalability challenges occur because of the heterogeneity of data sources and require extensive communication between local nodes and the central model. As the number of participating devices or departments increases, the communication and latency can become prohibitive, particularly in settings where real-time processing is critical [69].
Federated Averaging (FedAvg) and compression techniques help alleviate communication costs, but more research is needed to enhance scalability without compromising model performance, especially in healthcare scenarios where timely predictions are important [58].

6.3. Data Heterogeneity and Interoperability

Healthcare data are inherently heterogeneous, with variations in data formats, standards, and quality across departments and devices. This heterogeneity poses a hurdle for FL models, which depend on consistent data inputs for accurate training. Differences in data quality can lead to biased models and reduced generalizability over different patient populations, which is particularly concerning for clinical applications that need high accuracy [32].
Interoperability among different healthcare systems and IoT devices remains a significant hurdle. The lack of standardized protocols and data formats hinders data sharing and integration, which is crucial for FL in multi-institutional settings. Standardization efforts are underway, but achieving seamless interoperability remains a long-term goal [113].
In online monitoring, variations in data collected from different types of wearable devices may minimize the accuracy of predictive models in healthcare applications [114].

6.4. Computational and Resource Constraints

Implementing FL in healthcare requires significant computational resources, particularly for processing complex healthcare data such as medical images. Some IoT devices and local systems in healthcare lack the computational power to handle resource-intensive model training, making it difficult to implement advanced AI techniques like DL in low-resource settings [40].
The need for high-performance hardware limits the deployment of FL in smaller healthcare facilities and remote areas, restricting access to advanced healthcare technologies in resource-constrained systems [115].

6.5. Regulatory and Ethical Challenges

The deployment of FL in healthcare also meets regulatory and ethical problems. Compliance with data protection laws like HIPAA and GDPR needs strict adherence to privacy standards, which can be challenging to maintain in a federated environment. Additionally, ethical concerns around data ownership, informed consent, and algorithmic transparency are growing as AI becomes more pervasive in healthcare [116].

7. Future Directions and Recommendations

As FL continues to progress, its potential in healthcare applications is increasingly evident. The decentralized nature of FL makes it well suited for privacy-sensitive industries like healthcare, where secure, collaborative data use is essential. To fully harness its benefits, however, several key areas require further research and development.

7.1. Enhancing Privacy and Security

Future research should prioritize developing more efficient privacy-preserving methods for FL. Techniques like secure multiparty computation, differential privacy, and homomorphic encryption can be improved to reduce computational overhead while maintaining robust data security [81]. Integrating blockchain with FL is also a promising direction; it could increase data traceability and integrity by creating an immutable ledger of updates, adding an extra layer of security [90].

7.2. Improving Scalability and Efficiency

As FL applications grow, optimizing scalability and efficiency will be essential. Research into lightweight FL algorithms that can operate effectively on low-power healthcare devices and IoT sensors is crucial. Techniques like Federated Averaging (FedAvg) and advanced data compression methods should be refined to minimize communication overhead, facilitating real-time data processing in resource-constrained settings [117].

7.3. Standardization and Interoperability

To foster widespread adoption, there is a need for standardized protocols and data formats that facilitate interoperability across healthcare institutions and devices. Developing universal standards for data sharing and model integration can improve collaboration among health organizations, especially in multi-institutional research initiatives [2]. This could also help address data heterogeneity issues, enhancing the generalizability and reliability of FL models.

7.4. Focus on Ethical and Regulatory Compliance

Future FL implementations must prioritize ethical considerations and regulatory compliance, especially given the sensitive nature of healthcare data. Transparent model interpretability techniques are needed to ensure that AI-driven decisions in healthcare are understandable and trustworthy. In parallel, collaboration with regulatory bodies to establish ethical frameworks and guidelines can streamline the integration of FL in healthcare, ensuring alignment with data protection laws like GDPR and HIPAA [69].
Ethical principles should prioritize transparency, compliance surveillance, privacy rights, and informed consent to guarantee the responsible use of FL in the medical field. This entails outlining goals and procedures precisely, obtaining continuous consent for data usage, giving stakeholders the authority to manage their data and conducting frequent audits to make sure ethical requirements and privacy regulations are being followed [118].

7.5. Encouraging Multidisciplinary Collaboration

Finally, federated learning in healthcare would benefit from multidisciplinary collaboration among data scientists, healthcare professionals, regulatory bodies, and technology developers. This collaborative approach can help address domain-specific challenges, refine FL algorithms for clinical relevance, and ensure that the technology aligns with practical healthcare needs [44].
Table 7 shows that AI in diagnostics and predictive analytics showcases diverse applications of AI, from enhancing diagnostic accuracy in medical imaging and pathology to predicting health events like cardiovascular risks, driving early interventions and personalized care. These advancements improve patient outcomes while streamlining healthcare workflows.

8. Conclusions

This review thoroughly investigated FL in smart healthcare systems, with a focus on how it might improve patient privacy and facilitate collaborative machine learning without sacrificing data security. This study demonstrates the capability of FL in real-time data pre-processing and predictive analysis in healthcare by highlighting its interaction with IoTs. Furthermore, we describe new privacy-preserving methods that are essential for getting around these restrictions while identifying important FL issues such data heterogeneity, adaptability, and security vulnerabilities.
This work contributes to clarifying how FL can help healthcare organizations use a variety of datasets while still complying with regulations, which can lead to better patient outcomes. Additionally, this research emphasizes how crucial it is to create uniform standards and procedures in order to improve FL systems’ compatibility across various healthcare environments.
Future directions for FL should focus on addressing scalability challenges and innovative approaches for lightweight FL algorithms, especially in IoT-constrained environments. In IoT-constrained situations, where gadgets frequently have restricted CPU resources, the development of lighter FL techniques is essential for scalability. Methods like quantization, model pruning, and federated distillation can drastically cut down on energy use and transmission overhead. Edge computing has the potential to improve instantaneously and guarantee scalability across a range of medical applications when paired with hybrid FL models that strike an equilibrium between physical and cloud-based processing.

Author Contributions

Conceptualization, S.R.A. and Z.A.; methodology, S.R.A. and Z.A.; validation, S.R.A. and Z.A. and A.Z.; formal analysis, Z.A. and A.Z.; data curation, S.R.A., Z.A., and A.Z.; writing—original draft preparation, S.R.A., Z.A., and A.Z.; writing—review and editing, S.R.A., Z.A., A.Z., and S.W.L.; visualization, S.R.A., and A.Z.; supervision, S.W.L.; project administration, Z.A., and S.W.L.; funding acquisition, S.W.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research was supported by the SungKyunKwan University and the BK21 FOUR (Graduate School Innovation) funded by the Ministry of Education (MOE, Korea) and National Research Foundation of Korea (NRF). This work was also supported by National Research Foundation (NRF) grants funded by the Ministry of Science and ICT (MSIT) and Ministry of Education (MOE), Republic of Korea (NRF[2021-R1-I1A2(059735)]; RS[2024-0040(5650)]; RS[2024-0044(0881)]; RS[2019- II19(0421)]).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Shiwlani, A.; Khan, M.; Sherani, A.M.K.; Qayyum, M.U.; Hussain, H.K. Revolutionizing healthcare: The impact of artificial intelligence on patient care, diagnosis, and treatment. JURIHUM J. Inov. Dan Hum. 2024, 1, 779–790. [Google Scholar]
  2. Cheng, D.; Zhang, L.; Bu, C.; Wang, X.; Wu, H.; Song, A. Protohar: Prototype guided personalized federated learning for human activity recognition. IEEE J. Biomed. Health Inform. 2023, 27, 3900–3911. [Google Scholar] [CrossRef] [PubMed]
  3. US Department of Health and Human Services; HHS Office for Civil Rights. Simplification. 2023. Available online: http://www.hhs.gov/ocr/privacy/hipaa/administrative/ (accessed on 15 September 2024).
  4. Jiménez-Sánchez, A.; Tardy, M.; Ballester, M.A.G.; Mateus, D.; Piella, G. Memory-aware curriculum federated learning for breast cancer classification. Comput. Methods Programs Biomed. 2023, 229, 107318. [Google Scholar] [CrossRef] [PubMed]
  5. Hossain, M.M.; Islam, M.R.; Ahamed, M.F.; Ahsan, M.; Haider, J. A Collaborative Federated Learning Framework for Lung and Colon Cancer Classifications. Technologies 2024, 12, 151. [Google Scholar] [CrossRef]
  6. Beltrán, E.T.M.; Pérez, M.Q.; Sánchez, P.M.S.; Bernal, S.L.; Bovet, G.; Pérez, M.G.; Celdrán, A.H. Decentralized federated learning: Fundamentals, state of the art, frameworks, trends, and challenges. IEEE Commun. Surv. Tutor. 2023, 25, 2983–3013. [Google Scholar] [CrossRef]
  7. Nguyen, D.C.; Ding, M.; Pathirana, P.N.; Seneviratne, A.; Li, J.; Poor, H.V. Federated learning for Internet of Things: A comprehensive survey. IEEE Commun. Surv. Tutor. 2021, 23, 1622–1658. [Google Scholar] [CrossRef]
  8. Sun, T.; Li, D.; Wang, B. Decentralized Federated Averaging. IEEE Trans. Pattern Anal. Mach. Intell. 2022, 45, 4289–4301. [Google Scholar] [CrossRef] [PubMed]
  9. Sen, J.; Waghela, H.; Rakshit, S. Privacy in Federated Learning. arXiv 2024, arXiv:2408.08904. [Google Scholar]
  10. Li, T.; Sahu, A.K.; Zaheer, M.; Sanjabi, M.; Talwalkar, A.; Smith, V. Federated optimization in heterogeneous networks. Proc. Mach. Learn. Syst. 2020, 2, 429–450. [Google Scholar]
  11. Karimireddy, S.P.; Kale, S.; Mohri, M.; Reddi, S.; Stich, S.; Suresh, A.T. Scaffold: Stochastic controlled averaging for federated learning. In Proceedings of the International Conference on Machine Learning, PMLR, Virtual, 13–18 July 2020; pp. 5132–5143. [Google Scholar]
  12. Wang, J.; Liu, Q.; Liang, H.; Joshi, G.; Poor, H.V. Tackling the objective inconsistency problem in heterogeneous federated optimization. Adv. Neural Inf. Process. Syst. 2020, 33, 7611–7623. [Google Scholar]
  13. Zhang, T.; Gao, L.; He, C.; Zhang, M.; Krishnamachari, B.; Avestimehr, A.S. Federated learning for the Internet of Things: Applications, challenges, and opportunities. IEEE Internet Things Mag. 2022, 5, 24–29. [Google Scholar] [CrossRef]
  14. Banabilah, S.; Aloqaily, M.; Alsayed, E.; Malik, N.; Jararweh, Y. Federated learning review: Fundamentals, enabling technologies, and future applications. Inf. Process. Manag. 2022, 59, 103061. [Google Scholar] [CrossRef]
  15. Antunes, R.S.; da Costa, C.A.; Küderle, A.; Yari, I.A.; Eskofier, B. Federated learning for healthcare: Systematic review and architecture proposal. ACM Trans. Intell. Syst. Technol. 2022, 13, 1–23. [Google Scholar] [CrossRef]
  16. Manzoor, H.U.; Shabbir, A.; Chen, A.; Flynn, D.; Zoha, A. A survey of security strategies in federated learning: Defending models, data, and privacy. Future Internet 2024, 16, 374. [Google Scholar] [CrossRef]
  17. Jiang, D.; Wang, Z.; Wang, Y.; Tan, L.; Wang, J.; Zhang, P. A Blockchain-Reinforced Federated Intrusion Detection Architecture for IIoT. IEEE Internet Things J. 2024, 11, 26793–26805. [Google Scholar] [CrossRef]
  18. Moulahi, W.; Jdey, I.; Moulahi, T.; Alawida, M.; Alabdulatif, A. A blockchain-based federated learning mechanism for privacy preservation of healthcare IoT data. Comput. Biol. Med. 2023, 167, 107630. [Google Scholar] [CrossRef]
  19. Papadopoulos, C.; Kollias, K.F.; Fragulis, G.F. Recent Advancements in Federated Learning: State of the Art, Fundamentals, Principles, IoT Applications and Future Trends. Future Internet 2024, 16, 415. [Google Scholar] [CrossRef]
  20. Alsamhi, S.H.; Myrzashova, R.; Hawbani, A.; Kumar, S.; Srivastava, S.; Zhao, L.; Wei, X.; Guizan, M.; Curry, E. Federated learning meets blockchain in decentralized data-sharing: Healthcare use case. IEEE Internet Things J. 2024, 11, 19602–19615. [Google Scholar] [CrossRef]
  21. Kumari, K.; Rieger, P.; Fereidooni, H.; Jadliwala, M.; Sadeghi, A.R. Baybfed: Bayesian backdoor defense for federated learning. In Proceedings of the 2023 IEEE Symposium on Security and Privacy (SP), San Francisco, CA, USA, 21–25 May 2023; IEEE: Piscataway, NJ, USA; pp. 737–754. [Google Scholar]
  22. Chai, D.; Wang, L.; Yang, L.; Zhang, J.; Chen, K.; Yang, Q. A survey for federated learning evaluations: Goals and measures. IEEE Trans. Knowl. Data Eng. 2024, 36, 5007–5024. [Google Scholar] [CrossRef]
  23. Pati, S.; Kumar, S.; Varma, A.; Edwards, B.; Lu, C.; Qu, L.; Wang, J.J.; Lakshminarayanan, A.; Wang, S.H.; Sheller, M.J.; et al. Privacy preservation for federated learning in health care. Patterns 2024, 5, 100974. [Google Scholar] [CrossRef]
  24. Song, C.; Wang, Z.; Peng, W.; Yang, N. Secure and Efficient Federated Learning Schemes for Healthcare Systems. Electronics 2024, 13, 2620. [Google Scholar] [CrossRef]
  25. Gholami, P.; Seferoglu, H. Digest: Fast and communication efficient decentralized learning with local updates. IEEE Trans. Mach. Learn. Commun. Netw. 2024, 2, 1456–1474. [Google Scholar] [CrossRef]
  26. Wu, J.; Dong, F.; Leung, H.; Zhu, Z.; Zhou, J.; Drew, S. Topology-aware federated learning in edge computing: A comprehensive survey. ACM Comput. Surv. 2024, 56, 1–41. [Google Scholar] [CrossRef]
  27. Guan, H.; Yap, P.T.; Bozoki, A.; Liu, M. Federated learning for medical image analysis: A survey. Pattern Recognit. 2024, 151, 110424. [Google Scholar] [CrossRef] [PubMed]
  28. Lian, Z.; Wang, W.; Han, Z.; Su, C. Blockchain-based personalized federated learning for the internet of medical things. IEEE Trans. Sustain. Comput. 2023, 8, 694–702. [Google Scholar] [CrossRef]
  29. Rani, S.; Kataria, A.; Kumar, S.; Tiwari, P. Federated learning for secure IoMT-applications in smart healthcare systems: A comprehensive review. Knowl.-Based Syst. 2023, 274, 110658. [Google Scholar] [CrossRef]
  30. Nguyen, D.C.; Pham, Q.V.; Pathirana, P.N.; Ding, M.; Seneviratne, A.; Lin, Z.; Hwang, W.J. Federated learning for smart healthcare: A survey. ACM Comput. Surv. (Csur) 2022, 55, 1–37. [Google Scholar] [CrossRef]
  31. Pandya, S.; Srivastava, G.; Jhaveri, R.; Babu, M.R.; Bhattacharya, S.; Maddikunta, P.K.R.; Gadekallu, T.R. Federated learning for smart cities: A comprehensive survey. Sustain. Energy Technol. Assessments 2023, 55, 102987. [Google Scholar] [CrossRef]
  32. Rauniyar, A.; Hagos, D.H.; Jha, D.; Håkegård, J.E.; Bagci, U.; Rawat, D.B.; Vlassov, V. Federated Learning for Medical Applications: A Taxonomy, Current Trends, Challenges, and Future Research Directions. IEEE Internet Things J. 2023, 11, 7374–7398. [Google Scholar] [CrossRef]
  33. Dasaradharami Reddy, K.; Gadekallu, T.R. A comprehensive survey on federated learning techniques for healthcare informatics. Comput. Intell. Neurosci. 2023, 2023, 8393990. [Google Scholar] [CrossRef] [PubMed]
  34. Dhade, P.; Shirke, P. Federated Learning for Healthcare: A Comprehensive Review. Eng. Proc. 2024, 59, 230. [Google Scholar] [CrossRef]
  35. Ülver, B.; Yurtoğlu, R.A.; Dervişoğlu, H.; Halepmollası, R.; Haklıdır, M. Federated Learning in Predicting Heart Disease. In Proceedings of the 2023 31st Signal Processing and Communications Applications Conference (SIU), Istanbul, Turkey, 5–8 July 2023. [Google Scholar]
  36. Sehag, A.; Jayasankar, V.; Poojitha, S.D.; Raman, S.S.; Sarasvathi, V. A Federated Learning Approach for Disease Prediction and Remedies Recommendation. In Proceedings of the 2024 IEEE 9th International Conference for Convergence in Technology (I2CT), Pune, India, 5–7 August 2024. [Google Scholar]
  37. Rahman, A.; Hossain, M.S.; Muhammad, G.; Kundu, D.; Debnath, T.; Rahman, M.; Khan, M.S.I.; Tiwari, P.; Band, S.S. Federated learning-based AI approaches in smart healthcare: Concepts, taxonomies, challenges and open issues. Clust. Comput. 2023, 26, 2271–2311. [Google Scholar] [CrossRef]
  38. Tang, T.; Han, Z.; Cai, Z.; Yu, S.; Zhou, X.; Oseni, T.; Das, S.K. Personalized Federated Graph Learning on Non-IID Electronic Health Records. IEEE Trans. Neural Netw. Learn. Syst. 2024, 35, 11843–11856. [Google Scholar] [CrossRef] [PubMed]
  39. Wilson, S.; Tolley, C.; Mc Ardle, R.; Lawson, L.; Beswick, E.; Hassan, N.; Slight, S. Recommendations to advance digital health equity: A systematic review of qualitative studies. NPJ Digit. Med. 2024, 7, 173. [Google Scholar] [CrossRef] [PubMed]
  40. Sohan, M.F.; Basalamah, A. A systematic review on federated learning in medical image analysis. IEEE Access 2023, 11, 28628–28644. [Google Scholar] [CrossRef]
  41. Moshawrab, M.; Adda, M.; Bouzouane, A.; Ibrahim, H.; Raad, A. Reviewing federated machine learning and its use in diseases prediction. Sensors 2023, 23, 2112. [Google Scholar] [CrossRef]
  42. Babar, M.; Qureshi, B.; Koubaa, A. Review on Federated Learning for digital transformation in healthcare through big data analytics. Future Gener. Comput. Syst. 2024, 160, 14–28. [Google Scholar] [CrossRef]
  43. Sharafaddini, A.M.; Esfahani, K.K.; Mansouri, N. Deep learning approaches to detect breast cancer: A comprehensive review. Multimed. Tools Appl. 2024, 1–112. [Google Scholar] [CrossRef]
  44. Thummisetti, B.S.P.; Atluri, H. Advancing healthcare informatics for empowering privacy and security through federated learning paradigms. Int. J. Sustain. Dev. Comput. Sci. 2024, 6, 1–16. [Google Scholar]
  45. Horchidan, S.F. Real-Time Forecasting of Dietary Habits and User Health Using Federated Learning with Privacy Guarantees, 2020. Available online: https://www.diva-portal.org/smash/record.jsf?pid=diva2%3A1468787&dswid=-9723 (accessed on 10 December 2024).
  46. Goswami, S.A.; Dave, S.; Patel, K.C. Healthcare Informatics Security Issues and Solutions Using Federated Learning. In Federated Learning for Smart Communication Using IoT Application; Chapman and Hall/CRC: Boca Raton, FL, USA, 2024; pp. 124–154. [Google Scholar]
  47. Kwak, L.; Bai, H. The role of federated learning models in medical imaging. Radiol. Artif. Intell. 2023, 5, e230136. [Google Scholar] [CrossRef]
  48. Bhardwaj, S.; Kim, D.S. Federated learning-based joint radar-communication mmWave beamtracking with imperfect CSI for V2X communications. In Proceedings of the 2023 Fourteenth International Conference on Ubiquitous and Future Networks (ICUFN), Paris, France, 4–7 July 2023; IEEE: Piscataway, NJ, USA, 2023; pp. 201–206. [Google Scholar]
  49. Xu, X.; Deng, H.H.; Chen, T.; Kuang, T.; Barber, J.C.; Kim, D.; Gateno, J.; Xia, J.J.; Yan, P. Federated cross learning for medical image segmentation. Med. Imaging Deep. Learn. 2024, 227, 1441–1452. [Google Scholar]
  50. Zhu, J.; Cao, J.; Saxena, D.; Jiang, S.; Ferradi, H. Blockchain-empowered federated learning: Challenges, solutions, and future directions. ACM Comput. Surv. 2023, 55, 1–31. [Google Scholar] [CrossRef]
  51. Apell, P.; Eriksson, H. Artificial intelligence (AI) healthcare technology innovations: The current state and challenges from a life science industry perspective. Technol. Anal. Strateg. Manag. 2023, 35, 179–193. [Google Scholar] [CrossRef]
  52. Sachin, D.N.; Annappa, B.; Hegde, S.; Abhijit, C.S.; Ambesange, S. Fedcure: A heterogeneity-aware personalized federated learning framework for intelligent healthcare applications in IoMT environments. IEEE Access 2024, 12, 15867–15883. [Google Scholar]
  53. Khan, M.F.; AbaOud, M. Blockchain-Integrated Security for Real-Time Patient Monitoring in the Internet of Medical Things Using Federated Learning. IEEE Access 2023, 11, 117826–117850. [Google Scholar] [CrossRef]
  54. Yang, M.; Huang, D.; Zhan, X. Federated learning for privacy-preserving medical data sharing in drug development. TBD 2024. [Google Scholar] [CrossRef]
  55. Ran, A.R.; Wang, X.; Chan, P.P.; Wong, M.O.; Yuen, H.; Lam, N.M.; Cheung, C.Y. Developing a privacy-preserving deep learning model for glaucoma detection: A multicentre study with federated learning. Br. J. Ophthalmol. 2024, 108, 1114–1123. [Google Scholar] [CrossRef] [PubMed]
  56. Li, X.; Zhao, S.; Chen, C.; Zheng, Z. Heterogeneity-aware fair federated learning. Inf. Sci. 2023, 619, 968–986. [Google Scholar] [CrossRef]
  57. Navaz, A.N. A Novel Multi-Model Patient Similarity Network Driven by Federated Data Quality and Resource Profiling, 2023. Available online: https://scholarworks.uaeu.ac.ae/all_dissertations/242/ (accessed on 10 December 2024).
  58. Hidayat, M.A.; Nakamura, Y.; Arakawa, Y. Privacy-Preserving Federated Learning with Resource Adaptive Compression for Edge Devices. IEEE Internet Things J. 2023, 11, 13180–13198. [Google Scholar] [CrossRef]
  59. Cao, X.; Başar, T.; Diggavi, S.; Eldar, Y.C.; Letaief, K.B.; Poor, H.V.; Zhang, J. Communication-efficient distributed learning: An overview. IEEE J. Sel. Areas Commun. 2023, 41, 851–873. [Google Scholar] [CrossRef]
  60. Ye, T.; Chen, C.; Wang, Y.; Li, X.; Gao, M. BapFL: You can Backdoor Personalized Federated Learning. ACM Trans. Knowl. Discov. Data 2024, 18, 166. [Google Scholar] [CrossRef]
  61. Jagarlamudi, G.K.; Yazdinejad, A.; Parizi, R.M.; Pouriyeh, S. Exploring privacy measurement in federated learning. J. Supercomput. 2024, 80, 10511–10551. [Google Scholar] [CrossRef]
  62. Caton, S.; Haas, C. Fairness in machine learning: A survey. ACM Comput. Surv. 2024, 56, 1–38. [Google Scholar] [CrossRef]
  63. Zwiers, L.C.; Grobbee, D.E.; Uijl, A.; Ong, D.S. Federated learning as a smart tool for research on infectious diseases. BMC Infect. Dis. 2024, 24, 1327. [Google Scholar] [CrossRef] [PubMed]
  64. Rajendran, S.; Xu, Z.; Pan, W.; Ghosh, A.; Wang, F. Data heterogeneity in federated learning with Electronic Health Records: Case studies of risk prediction for acute kidney injury and sepsis diseases in critical care. PLoS Digit. Health 2023, 2, e0000117. [Google Scholar] [CrossRef]
  65. Chaddad, A.; Wu, Y.; Desrosiers, C. Federated learning for healthcare applications. IEEE Internet Things J. 2023, 11, 7339–7358. [Google Scholar] [CrossRef]
  66. Issa, W.; Moustafa, N.; Turnbull, B.; Sohrabi, N.; Tari, Z. Blockchain-based federated learning for securing the internet of things: A comprehensive survey. ACM Comput. Surv. 2023, 55, 1–43. [Google Scholar] [CrossRef]
  67. Prasanna, K.L.; Rao, Y.N. Context-Aware Approaches in IoT-based Healthcare Systems using Deep Learning Techniques: A Study. In Proceedings of the 2024 3rd International Conference on Applied Artificial Intelligence and Computing (ICAAIC), Salem, India, 5–7 June 2024; IEEE: Piscataway, NJ, USA, 2024; pp. 567–570. [Google Scholar]
  68. Djolev, D.; Lazarova, M.; Nakov, O. FBLearn: Decentralized Platform for Federated Learning on Blockchain. Electronics 2024, 13, 3672. [Google Scholar] [CrossRef]
  69. Bashir, A.K.; Victor, N.; Bhattacharya, S.; Huynh-The, T.; Chengoden, R.; Yenduri, G.; Liyanage, M. Federated learning for the healthcare metaverse: Concepts, applications, challenges, and future directions. IEEE Internet Things J. 2023, 10, 21873–21891. [Google Scholar] [CrossRef]
  70. Almutairi, S.; Barnawi, A. Federated learning vulnerabilities, threats and defenses: A systematic review and future directions. Internet Things 2023, 24, 100947. [Google Scholar] [CrossRef]
  71. Li, Y.; Hu, J.; Guo, Z.; Yang, N.; Chen, H.; Yuan, D.; Ding, W. Threats and Defenses in Federated Learning Life Cycle: A Comprehensive Survey and Challenges. arXiv 2024, arXiv:2407.06754. [Google Scholar]
  72. Yazdinejad, A.; Dehghantanha, A.; Karimipour, H.; Srivastava, G.; Parizi, R.M. A robust privacy-preserving federated learning model against model poisoning attacks. IEEE Trans. Inf. Forensics Secur. 2024, 19, 6693–6708. [Google Scholar] [CrossRef]
  73. Malik, J.; Muthalagu, R.; Pawar, P.M. A Systematic Review of Adversarial Machine Learning Attacks, Defensive Controls and Technologies. IEEE Access 2024, 12, 99382–99421. [Google Scholar] [CrossRef]
  74. Queyrut, S.; Schiavoni, V.; Felber, P. Mitigating adversarial attacks in federated learning with trusted execution environments. In Proceedings of the 2023 IEEE 43rd International Conference on Distributed Computing Systems (ICDCS), Hong Kong, China, 18–21 July 2023; IEEE: Piscataway, NJ, USA, 2023; pp. 626–637. [Google Scholar]
  75. Darzi, E.; Dubost, F.; Sijtsema, N.M.; van Ooijen, P. Exploring adversarial attacks in federated learning for medical imaging. arXiv 2023, arXiv:2310.06227. [Google Scholar] [CrossRef]
  76. Wan, Y.; Qu, Y.; Ni, W.; Xiang, Y.; Gao, L.; Hossain, E. Data and model poisoning backdoor attacks on wireless federated learning, and the defense mechanisms: A comprehensive survey. IEEE Commun. Surv. Tutor. 2024, 26, 1861–1897. [Google Scholar] [CrossRef]
  77. Badidi, E. Edge AI for early detection of chronic diseases and the spread of infectious diseases: Opportunities, challenges, and future directions. Future Internet 2023, 15, 370. [Google Scholar] [CrossRef]
  78. Ahmad, S.; Shakeel, I.; Mehfuz, S.; Ahmad, J. Deep learning models for cloud, edge, fog, and IoT computing paradigms: Survey, recent advances, and future directions. Comput. Sci. Rev. 2023, 49, 100568. [Google Scholar] [CrossRef]
  79. Campos, E.M.; Gonzalez-Vidal, A.; Hernández-Ramos, J.L.; Skarmeta, A. FedRDF: A robust and dynamic aggregation function against poisoning attacks in federated learning. IEEE Trans. Emerg. Top. Comput. 2024; early access. [Google Scholar]
  80. Stripelis, D.; Gupta, U.; Saleem, H.; Dhinagar, N.; Ghai, T.; Anastasiou, C.; Sánchez, R.; Steeg, G.V.; Ravi, S.; Naveed, M. A federated learning architecture for secure and private neuroimaging analysis. Patterns 2024, 5, 101031. [Google Scholar] [CrossRef] [PubMed]
  81. Shanmugam, L.; Tillu, R.; Tomar, M. Federated learning architecture: Design, implementation, and challenges in distributed AI systems. J. Knowl. Learn. Sci. Technol. 2023, 2, 371–384. [Google Scholar] [CrossRef]
  82. Heikkilä, M.A. On Joint Noise Scaling in Differentially Private Federated Learning with Multiple Local Steps. arXiv 2024, arXiv:2407.19286. [Google Scholar]
  83. Raza, A. Secure and Privacy-Preserving Federated Learning with Explainable Artificial Intelligence for Smart Healthcare System. Ph.D. Thesis, Université de Lille, University of Kent (Canterbury, Royaume-Uni), Kent, UK, 2023. [Google Scholar]
  84. Siew, M.; Arunasalam, S.; Ruan, Y.; Zhu, Z.; Su, L.; Ioannidis, S.; Joe-Wong, C. Fair training of multiple federated learning models on resource constrained network devices. In Proceedings of the 22nd International Conference on Information Processing in Sensor Networks, San Antonio, TX, USA, 9–12 May 2023; pp. 330–331. [Google Scholar]
  85. Chen, H.; Wang, H.; Long, Q.; Jin, D.; Li, Y. Advancements in federated learning: Models, methods, and privacy. ACM Comput. Surv. 2024, 57, 1–39. [Google Scholar] [CrossRef]
  86. Liu, Y.; Kang, Y.; Zou, T.; Pu, Y.; He, Y.; Ye, X.; Ouyang, Y.; Zhang, Y.Q.; Yang, Q. Vertical federated learning: Concepts, advances, and challenges. IEEE Trans. Knowl. Data Eng. 2024, 36, 3615–3634. [Google Scholar] [CrossRef]
  87. He, Z.; Wang, L.; Cai, Z. Clustered federated learning with adaptive local differential privacy on heterogeneous IoT data. IEEE Internet Things J. 2023, 11, 137–146. [Google Scholar] [CrossRef]
  88. Alalawi, S.; Alalawi, M.; Alrae, R. Privacy Preservation for the IoMT Using Federated Learning and Blockchain Technologies. In Proceedings of the International Conference on Innovations in Computing Research, London, UK, 25–27 August 2024. [Google Scholar]
  89. Myrzashova, R.; Alsamhi, S.H.; Shvetsov, A.V.; Hawbani, A.; Wei, X. Blockchain meets federated learning in healthcare: A systematic review with challenges and opportunities. IEEE Internet Things J. 2023, 10, 14418–14437. [Google Scholar] [CrossRef]
  90. Yang, R.; Zhao, T.; Yu, F.R.; Li, M.; Zhang, D.; Zhao, X. Blockchain-Based Federated Learning with Enhanced Privacy and Security Using Homomorphic Encryption and Reputation. IEEE Internet Things J. 2024, 11, 21674–21688. [Google Scholar] [CrossRef]
  91. Naithani, K.; Raiwani, Y.; Tiwari, S.; Chauhan, A.S. Artificial Intelligence Techniques Based on Federated Learning in Smart Healthcare. In Federated Learning for Smart Communication Using IoT Application; Chapman and Hall/CRC: Boca Raton, FL, USA, 2024; pp. 81–108. [Google Scholar]
  92. Kolli, S.; AV, P.K.; Ashok, J.; Manikandan, A. Internet of Things for pervasive and personalized healthcare: Architecture, technologies, components, applications, and prototype development. In Contemporary Applications of Data Fusion for Advanced Healthcare Informatics; IGI Global: Hershey, PA, USA, 2023; pp. 188–214. [Google Scholar]
  93. Zijie, F.; Al-Shareeda, M.A.; Saare, M.A.; Manickam, S.; Karuppayah, S. Wireless sensor networks in the Internet of Things: Review, techniques, challenges, and future directions. Indones. J. Electr. Eng. Comput. Sci. 2023, 31, 1190–1200. [Google Scholar] [CrossRef]
  94. Jafleh, E.A.; Alnaqbi, F.A.; Almaeeni, H.A.; Faqeeh, S.; Alzaabi, M.A.; Zaman, K.A. The Role of Wearable Devices in Chronic Disease Monitoring and Patient Care: A Comprehensive Review. Cureus 2024, 16, e68921. [Google Scholar] [CrossRef] [PubMed]
  95. George, A.H.; Shahul, A.; George, A.S. Wearable sensors: A new way to track health and wellness. Partners Univers. Int. Innov. J. 2023, 1, 15–34. [Google Scholar]
  96. Ahmed, S.; Irfan, S.; Kiran, N.; Masood, N.; Anjum, N.; Ramzan, N. Remote health monitoring systems for elderly people: A survey. Sensors 2023, 23, 7095. [Google Scholar] [CrossRef] [PubMed]
  97. Ali, S.A.; Khan, R. IoT-Based Technologies for Addressing the Unique Healthcare Needs of the Elderly Population. 2023. Available online: https://www.preprints.org/manuscript/202303.0088 (accessed on 10 December 2024).
  98. Patil, S.; Shankar, H. Transforming healthcare: Harnessing the power of AI in the modern era. Int. J. Multidiscip. Sci. Arts 2023, 2, 60–70. [Google Scholar] [CrossRef]
  99. Kumar, M.; Kumar, A.; Verma, S.; Bhattacharya, P.; Ghimire, D.; Kim, S.H.; Hosen, A.S. Healthcare Internet of Things (H-IoT): Current trends, future prospects, applications, challenges, and security issues. Electronics 2023, 12, 2050. [Google Scholar] [CrossRef]
  100. Henry, E. AI-Driven Optimization in Healthcare: Machine Learning Models for Predictive Diagnostics and Personalized Treatment Strategies. Well Test. J. 2024, 33, 10–33. [Google Scholar]
  101. Khalifa, M.; Albadawy, M. Artificial Intelligence for Clinical Prediction: Exploring Key Domains and Essential Functions. Comput. Methods Programs Biomed. Update 2024, 5, 100148. [Google Scholar] [CrossRef]
  102. Hampiholi, N. Medical Imaging Enhancement with AI Models for Automatic Disease Detection and Classification Based on Medical Images. Int. J. Eng. Appl. Sci. Technol. 2023, 8, 31–37. [Google Scholar] [CrossRef]
  103. Bairwa, H. Pneumonia Detection from Chest X-Rays Using the CheXNet Deep Learning Algorithm, 2024. Available online: https://www.researchgate.net/publication/381943625_Pneumonia_Detection_from_Chest_X-rays_Using_the_CheXNet_Deep_Learning_Algorithm (accessed on 10 December 2024).
  104. Williamson, S.M.; Prybutok, V. Balancing privacy and progress: A review of privacy challenges, systemic oversight, and patient perceptions in AI-driven healthcare. Appl. Sci. 2024, 14, 675. [Google Scholar] [CrossRef]
  105. Liang, F.; Zhang, Z.; Lu, H.; Leung, V.; Guo, Y.; Hu, X. Communication-Efficient Large-Scale Distributed Deep Learning: A Comprehensive Survey. arXiv 2024, arXiv:2404.06114. [Google Scholar]
  106. Huang, R.; Wei, Z.; Feng, W.; Li, Y.; Zhang, C.; Qiu, C.; Che, M. Edge Computing Model based on Federated Learning for COVID-19 Clinical Outcome Prediction in the 5G Era. KSII Trans. Internet Inf. Syst. 2024, 18. [Google Scholar] [CrossRef]
  107. Gu, X.; Sabrina, F.; Fan, Z.; Sohail, S. A review of privacy enhancement methods for federated learning in healthcare systems. Int. J. Environ. Res. Public Health 2023, 20, 6539. [Google Scholar] [CrossRef] [PubMed]
  108. Olatunji, A.O.; Olaboye, J.A.; Maha, C.C.; Kolawole, T.O.; Abdul, S. Revolutionizing infectious disease management in low-resource settings: The impact of rapid diagnostic technologies and portable devices. Int. J. Appl. Res. Soc. Sci. 2024, 6, 1417–1432. [Google Scholar] [CrossRef]
  109. Bhambri, P.; Kumar, S. Cloud and IoT Integration for Smart Healthcare. In Smart Healthcare Systems; CRC Press: Boca Raton, FL, USA, 2024; pp. 69–84. [Google Scholar]
  110. Malathi, K.; Shruthi, S.; Madhumitha, N.; Sreelakshmi, S.; Sathya, U.; Sangeetha, P. Medical Data Integration and Interoperability through Remote Monitoring of Healthcare Devices. J. Wirel. Mob. Netw. Ubiquitous Comput. Dependable Appl. 2024, 15, 60–72. [Google Scholar] [CrossRef]
  111. Ahammed, M.F.; Labu, M.R. Privacy-Preserving Data Sharing in Healthcare: Advances in Secure Multiparty Computation. J. Med Health Stud. 2024, 5, 37–47. [Google Scholar] [CrossRef]
  112. Nevrataki, T.; Iliadou, A.; Ntolkeras, G.; Sfakianakis, I.; Lazaridis, L.; Maraslidis, G.; Fragulis, G.F. A survey on federated learning applications in healthcare, finance, and data privacy/data security. In AIP Conference Proceedings; AIP Publishing: Melville, NY, USA, 2023; Volume 2909, pp. 1–8. [Google Scholar]
  113. Ali, M.S.; Ahsan, M.M.; Tasnim, L.; Afrin, S.; Biswas, K.; Hossain, M.M.; Ahmed, M.M.; Hashan, R.; Islam, M.K.; Raman, S. Federated Learning in Healthcare: Model Misconducts, Security, Challenges, Applications, and Future Research Directions—A Systematic Review. arXiv 2024, arXiv:2405.13832. [Google Scholar]
  114. Shajari, S.; Kuruvinashetti, K.; Komeili, A.; Sundararaj, U. The emergence of AI-based wearable sensors for digital health technology: A review. Sensors 2023, 23, 9498. [Google Scholar] [CrossRef]
  115. Adam, M.; Baroud, U. Federated Learning For IoT: Applications, Trends, Taxonomy, Challenges, Current Solutions, and Future Directions. IEEE Open J. Commun. Soc. 2024, 5, 7842–7877. [Google Scholar] [CrossRef]
  116. Nasir, S.; Khan, R.A.; Bai, S. Ethical Framework for Harnessing the Power of AI in Healthcare and Beyond. IEEE Access 2024, 12, 31014–31035. [Google Scholar] [CrossRef]
  117. Abimannan, S.; El-Alfy, E.S.M.; Hussain, S.; Chang, Y.S.; Shukla, S.; Satheesh, D.; Breslin, J.G. Towards Federated Learning and Multi-Access Edge Computing for Air Quality Monitoring: Literature Review and Assessment. Sustainability 2023, 15, 13951. [Google Scholar] [CrossRef]
  118. Ueda, D.; Kakinuma, T.; Fujita, S.; Kamagata, K.; Fushimi, Y.; Ito, R.; Matsui, Y.; Nozaki, T.; Nakaura, T.; Fujima, N.; et al. Fairness of artificial intelligence in healthcare: Review and recommendations. Jpn. J. Radiol. 2024, 42, 3–15. [Google Scholar] [CrossRef] [PubMed]
  119. Gala, D.; Behl, H.; Shah, M.; Makaryus, A.N. The Role of Artificial Intelligence in Improving Patient Outcomes and Future of Healthcare Delivery in Cardiology: A Narrative Review of the Literature. Healthcare 2024, 12, 481. [Google Scholar] [CrossRef] [PubMed]
  120. Gjesvik, J.; Moshina, N.; Lee, C.I.; Miglioretti, D.L.; Hofvind, S. Artificial Intelligence Algorithm for Subclinical Breast Cancer Detection. JAMA Netw. Open 2024, 7, e2437402. [Google Scholar] [CrossRef]
  121. Uchikov, P.; Khalid, U.; Kraev, K.; Hristov, B.; Kraeva, M.; Tenchev, T.; Batashki, A. Artificial intelligence in the diagnosis of colorectal cancer: A literature review. Diagnostics 2024, 14, 528. [Google Scholar] [CrossRef] [PubMed]
  122. Rehan, H. AI-Powered Genomic Analysis in the Cloud: Enhancing Precision Medicine and Ensuring Data Security in Biomedical Research. J. Deep Learn. Genom. Data Anal. 2023, 3, 37–71. [Google Scholar]
  123. Urina-Triana, M.A.; Piñeres-Melo, M.A.; Mantilla-Morrón, M.; Butt-Aziz, S.; Galeano, L.; Naz, S.; Ariza-Colpas, P.P. Machine Learning and AI Approaches for Analyzing Diabetic and Hypertensive Retinopathy in Ocular Images: A Literature Review. IEEE Access 2024, 12, 54590–54607. [Google Scholar] [CrossRef]
  124. Pierre, K.; Haneberg, A.G.; Kwak, S.; Peters, K.R.; Hochhegger, B.; Sananmuang, T.; Tunlayadechanont, P.; Tighe, P.J.; Mancuso, A.; Forghani, R. Applications of Artificial Intelligence in the Radiology Roundtrip: Process Streamlining, Workflow Optimization, and Beyond. In Seminars in Roentgenology; WB Saunders: Philadelphia, PA, USA, 2023. [Google Scholar]
Figure 1. Percentage of healthcare data breaches by cause.
Figure 1. Percentage of healthcare data breaches by cause.
Healthcare 12 02587 g001
Figure 2. General architecture of federated learning.
Figure 2. General architecture of federated learning.
Healthcare 12 02587 g002
Figure 3. Workflow of federated learning in smart health, illustrating how FL protects patient privacy while facilitating cooperative model training across decentralized data sources, such as hospitals and IoT devices.
Figure 3. Workflow of federated learning in smart health, illustrating how FL protects patient privacy while facilitating cooperative model training across decentralized data sources, such as hospitals and IoT devices.
Healthcare 12 02587 g003
Figure 4. Published papers on ML, DL, and FL in healthcare between 2023 and 2024.
Figure 4. Published papers on ML, DL, and FL in healthcare between 2023 and 2024.
Healthcare 12 02587 g004
Figure 5. Workflow diagram for the systematic review methodology.
Figure 5. Workflow diagram for the systematic review methodology.
Healthcare 12 02587 g005
Figure 6. Advantages of federated learning in healthcare.
Figure 6. Advantages of federated learning in healthcare.
Healthcare 12 02587 g006
Figure 7. Impact of communication optimization techniques over time, showing how Federated Averaging (FedAvg) lowers communication overhead and improves FL efficiency by reducing data transfer, an essential feature for healthcare settings with limited resources.
Figure 7. Impact of communication optimization techniques over time, showing how Federated Averaging (FedAvg) lowers communication overhead and improves FL efficiency by reducing data transfer, an essential feature for healthcare settings with limited resources.
Healthcare 12 02587 g007
Figure 8. Application areas of federated learning in healthcare.
Figure 8. Application areas of federated learning in healthcare.
Healthcare 12 02587 g008
Figure 9. Directions and research opportunities in federated learning.
Figure 9. Directions and research opportunities in federated learning.
Healthcare 12 02587 g009
Figure 10. Evaluation of security techniques in federated learning.
Figure 10. Evaluation of security techniques in federated learning.
Healthcare 12 02587 g010
Figure 11. Blockchain’s role in FL security.
Figure 11. Blockchain’s role in FL security.
Healthcare 12 02587 g011
Figure 12. Accuracy improvement overview before and after using federated learning.
Figure 12. Accuracy improvement overview before and after using federated learning.
Healthcare 12 02587 g012
Table 1. Challenges and Opportunities in Federated Learning.
Table 1. Challenges and Opportunities in Federated Learning.
CategoryAspectDescription
ChallengesData PrivacyEnsuring patient data privacy and compliance with regulations.
Heterogeneous DeviceManaging different computational capabilities across devices.
OpportunitiesCollaborative ResearchEnabling research collaboration across geographical boundaries.
Blockchain IntegrationImproving data security using blockchain with FL.
Table 2. Comparison with existing review articles on FL in smart healthcare.
Table 2. Comparison with existing review articles on FL in smart healthcare.
RefFocusPrivacy and SecurityChallenges/ LimitationsReal-World ImplementationsUnique Contributions
[29]FL in IoMT applicationsData fragmentation, and privacy concernsScalability issues, lack of sophisticated privacy methodsLimited real-world case studiesPreliminary investigation of IoMT privacy issues
[30]FL in smart healthcareDifferential privacy strategiesData exchange, ethical dilemmas, and inadequate security risk assessmentGeneral healthcare case studiesThorough analysis of FL in the medical field
[31]FL in smart citiesDecentralized training algorithmsSecurity risks, data tampering, and interoperability between systems, minimal healthcare-specific focusBlockchain integration conceptualization, and edge computingBroad viewpoint on FL applications
[32]Taxonomy of FL in medical applicationsFundamental data privacy issuesData aggregation challenges, lack of comprehensive privacy solutionsNo specific real-world implementations discussedSystematic classification of FL in the medical field
[33]FL techniques in healthcare informaticsBasic encryption techniquesPotential threats of adversarial attacks, lack of useful implementation guaidanceSuggested applications but not specifiedDetailed technique review
[34]FL in healthcarePrivacy-protecting approachesMinimal attention on IoT integration, lacks in-depth analysis of adaptability in IoT healthcareCase studies focused on healthcare but not focusing IoTsFL applications in healthcare focusing conventional clinical data without IoTs
OursFL’s integration with IoMT devices, wearables, and remote monitoring systems for predictive analytics and personalized careAdvanced privacy-preserving techniques such as differential privacy, secure multiparty computation, and adversarial threat detectionScalability issues, model inversion, and adversarial attacks; offers practical advice for further studyDetailed real-world case studies included with IoT integrationThorough examination of privacy-preserving strategies in healthcare environments with IoT constraints
Table 3. Sample data extraction.
Table 3. Sample data extraction.
Focused WorkAuthorsYearApplication AreaContributionChallengesProposed Solutions
FL in Disease[35]2024Disease PredictionNew FL modelData QualityFederated Averaging
Privacy Enhancement in FL[36]2024Privacy TechniquesPrivacy Techniques for DataData PrivacyDifferential Privacy
Challenges in FL for Health care[37]2024Challenges in FLDiscussion on ChallengesModel RobustnessRobust Algorithms
Future of FL in Healthcare[38]2024HER analysisProposed future directionScalabilityScalable FL Framework
Table 4. Federated learning in healthcare: applications, improvements over centralized servers, and limitations.
Table 4. Federated learning in healthcare: applications, improvements over centralized servers, and limitations.
ApplicationFL Improvement over Centralized ModelsCritical Evaluation of Limitations/Effectiveness/ImpactRef
Disease PredictionFL enables secure, decentralized training on patient data across hospitals, preserving privacy and minimizing data breach risks.Limited cross-institutional collaboration may bias models, while data heterogeneity can hinder performance. Real-world validation is still needed to ensure effectiveness.[50]
Remote MonitoringFL processes wearable device data without sharing personal health information, enabling continuous learning across devices.Inconsistent device data quality and intermittent availability pose challenges to model accuracy and training.[51]
Medical Image DiagnosisFL improves model performance by leveraging diverse, distributed medical image datasets without centralizing storage.Data imbalance and communication overhead hinder FL’s generalization and real-time use.[27]
Personalized Treatment PlansFL shares knowledge from diverse patient populations while protecting patient data, enabling more accurate, personalized treatments.Variations in local datasets complicate combining treatment protocols, while high computational costs may limit scalability.[52]
Clinical Trial RecruitmentFL helps identify trial candidates across institutions, improving recruitment strategies while protecting sensitive information.Inconsistent inclusion/exclusion criteria and lack of central oversight may reduce recruitment accuracy.[32]
Chronic Disease ManagementFL aggregates data from chronic patients, enhancing predictive models for disease progression and management.Lack of data from underrepresented groups can bias predictions, reducing fairness and accuracy.[41]
Real-Time Alerting SystemsFL processes real-time data at the edge (e.g., wearables), improving patient response times and reducing latencyData quality and processing constraints can delay or skew alerts, while intermittent data or device malfunctions affect reliability.[53]
Drug DiscoveryFL enables pharmaceutical companies to share research data while protecting intellectual property, accelerating drug discovery.Protocol and data format variations hinder model training, and FL needs improvement in handling diverse data types.[54]
Predictive Health AnalyticsFL enables predictive models to learn from diverse data sources (hospital records, wearables) while preserving patient privacy.Inconsistent data can lead to inaccurate predictions, and FL models may struggle with rare diseases due to limited data.[33]
Patient Privacy and SecurityFL preserves patient data privacy by localizing it, enabling collaborative learning without unauthorized access to sensitive data.FL improves privacy, but communication protocols may remain vulnerable to attacks, and ensuring patient consent and transparency is challenging.[55]
Table 5. Summary of threats and mitigation techniques.
Table 5. Summary of threats and mitigation techniques.
RefThreatDescriptionMitigation TechniquesMethodology
[69]Gradient LeakageGradients encode sensitive information, allowing attackers to reconstruct input data.Noise Addition (Differential Privacy)Use of Differential Privacy in Training
[81]Additional LeakageMalicious participants manipulate aggregation to bias the global modelSecure Aggregation (Homomorphic Encryption)Homomorphic Encryption for Secure Aggregation
[2]Participant Data LeakageUnauthorized access to participant updates leads to privacy breachesEncryption of Communications and DataEnd-to-End Encryption for Data Transmission
[32]Sybil AttacksAttackers create multiple fake identities to compromise the FL processIdentity Verification (e.g., Blockchain)Blockchain for Identity Management
[84]Data PoisoningAttackers create multiple fake identities to compromise the FL processData Validation to Ensure AuthenticityAuthentication and Validation in Data Collection
[44]Backdoor InsertionAttackers embed hidden functionalities or vulnerabilities in the modelModel Validation to Detect BackdoorsAdvanced Model Validation Techniques
[33]Model Update EavesdroppingInterception of updates in transit can expose sensitive dataSecure Communication Protocols (e.g., TLS)Secure Transmission via TLS
[85]Byzantine FaultsFaulty or malicious participants send incorrect updates to disrupt trainingFault Tolerance MechanismsIncorporation of Fault Tolerance Algorithms
[86]Inference AttacksSensitive details about training data are inferred from the global modelDifferential Privacy to Add Output NoiseAdding Output Noise to Protect Inferences
[50]Update InjectionUnauthorized updates are injected to manipulate the global modelUpdate Screening to Detect Suspicious ChangesScreening and Monitoring of Model Updates
Table 6. Summary of features and descriptions showing how FL preserves patient privacy across institutions.
Table 6. Summary of features and descriptions showing how FL preserves patient privacy across institutions.
RefFeaturesDescription
[2]Data PrivacyProtect sensitive patient data while enabling collaboration
[105]Regulatory ComplianceMeets HIPAA and GDPR standards
[69]Improved Model RobustnessLeverages diverse datasets for more accurate predictions
[106]Case StudyUses a COVID-19-predictive model across European hospitals
Table 7. AI in diagnostics and predictive analytics.
Table 7. AI in diagnostics and predictive analytics.
RefApplicationExample Use CaseAdvantages
[119]CardiologyAI applications predicting cardiovascular events using electronic health recordsFacilitate preventive measures, reducing the incidence of heart attacks and strokes
[120]Medical ImagingAI algorithms detecting breast cancer in mammogramsIncrease diagnostic accuracy, reduces false positives, and expedites treatment
[121]PathologyAI systems analyzing histopathological slides for tumor classificationEnhance diagnostic precision and consistency across pathologists
[122]Genomic AnalysisAI-driven interpretation of genomic data for personalized cancer therapiesIdentifies actionable mutations, tailoring treatments to individual patients
[123]OphthalmologyAI systems detecting diabetic retinopathy in retinal imagesEnable early treatment, preventing vision loss in diabetic patients
[124]Radiology WorkflowAI tools prioritizing radiology worklists based on urgencyImprove efficiency, ensuring critical cases receive prompt attention
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Abbas, S.R.; Abbas, Z.; Zahir, A.; Lee, S.W. Federated Learning in Smart Healthcare: A Comprehensive Review on Privacy, Security, and Predictive Analytics with IoT Integration. Healthcare 2024, 12, 2587. https://doi.org/10.3390/healthcare12242587

AMA Style

Abbas SR, Abbas Z, Zahir A, Lee SW. Federated Learning in Smart Healthcare: A Comprehensive Review on Privacy, Security, and Predictive Analytics with IoT Integration. Healthcare. 2024; 12(24):2587. https://doi.org/10.3390/healthcare12242587

Chicago/Turabian Style

Abbas, Syed Raza, Zeeshan Abbas, Arifa Zahir, and Seung Won Lee. 2024. "Federated Learning in Smart Healthcare: A Comprehensive Review on Privacy, Security, and Predictive Analytics with IoT Integration" Healthcare 12, no. 24: 2587. https://doi.org/10.3390/healthcare12242587

APA Style

Abbas, S. R., Abbas, Z., Zahir, A., & Lee, S. W. (2024). Federated Learning in Smart Healthcare: A Comprehensive Review on Privacy, Security, and Predictive Analytics with IoT Integration. Healthcare, 12(24), 2587. https://doi.org/10.3390/healthcare12242587

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop