PROJECT REPORT
On
Multi-Objective Cardiovascular Disease Prediction Using Hybrid Ant
Colony and Swarm Optimization
Submitted in Partial Fulfillment of Award of
BACHELOR OF TECHNOLOGY
IN
COMPUTER SCIENCE AND ENGINEERING
By
F G Firasath (2022BCSE07AED233)
B Dhanush (2022BCSE07AED291)
Thota Yashwanth (2022BCSE07AED673)
Potlapati Sai Manikanta (2022BCSE07AED664)
Mitikiri Karthik (2022BCSE07AED677)
Under the Supervision of
Dr. , Professor, CSE
ALLIANCE SCHOOL OF ADVANCED COMPUTING
ALLIANCE UNIVERSITY
BENGALURU
October- 2025
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
ALLIANCE SCHOOL OF ADVANCED COMPUTING
CERTIFICATE
This is to certify that the project work entitled “Optimizing Multi-Objective Cardiovascular Disease
Prediction Models Using Ant Colony Optimization and Swarm Intelligence Metaheuristics for
Enhanced Clinical Decision Support” submitted Mr. F G Firasath (2022BCSE07AED6233), Mr. B
Dhanush (2022BCSE07AED291), Mr. Thota Yashwanth (2022BCSE07AED673), Mr. Potlapati Sai
Manikanta(2022BCSE07AED664), Mr. Mitikiri Karthik (2022BCSE07AED677) in partial
fulfillment for the award of the degree of Bachelor of Technology in Computer Science and
Engineering of Alliance University, is a bonafide work accomplished under our supervision and
guidance during the academic year 2025-2026. This thesis report embodies the results of original work
and studies conducted by students and the contents do not form the basis for the award of any other
degree to the candidate or anybody else.
Dr. GGS Pradeep
Professor
(Supervisor)
Examiners Signature Date of Examination:
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING
ALLIANCE SCHOOL OF ADVANCED COMPUTING
DECLARATION
We hereby declare that the project entitled “Optimizing Multi-Objective Cardiovascular
Disease Prediction Models Using Ant Colony Optimization and Swarm Intelligence
Metaheuristics for Enhanced Clinical Decision Support” submitted by us in the partial
fulfillment of the requirements for the award of the degree of Bachelor of Technology in
Computer Science and Engineering of Alliance University, is a record of our work carried
under the supervision and guidance of Dr. GGS Pradeep, Professor, CSE
We confirm that this report truly represents the work undertaken as a part of our project
work. This work is not a replication of work done previously by any other person. We also
confirm that the contents of the report and the views contained therein have been discussed
and deliberated with the faculty guide.
University Registration
Name of the Student Signature
Number
F G Firasath 2022BCSE07AED233
B Dhanush 2022BCSE07AED291
Thota Yashwanth 2022BCSE07AED673
Potlapati Sai Manikanta 2022BCSE07AED664
Mitikiri Karthik 2022BCSE07AED677
ACKNOWLEGMENT
The satisfaction that accompanies the successful completion project would be incomplete
without acknowledging the contributions of those who made it possible through their
constant guidance, support, and encouragement.
We take this opportunity to express our heartfelt gratitude to the Management of
Alliance University for providing world-class infrastructure, a conducive learning
environment, and continuous motivation throughout the course of this project.
We extend our sincere thanks to Dr. Reeba Korah, Dean, ACED, and Dr. K.
Ramalakshmi, Head of the Department of Computer Science and Engineering &
Information Technology, for their encouragement and unwavering support at every stage
of the project.
We are especially thankful to our Faculty Coordinator, Dr. GGS Pradeep, Associate
Professor, CSE, for her consistent guidance, valuable insights, and support throughout
the development of the project.
We also extend our gratitude to the teaching and non-teaching staff of our department,
whose assistance and encouragement were instrumental in the successful completion of
this project.
Finally, we express our deepest appreciation to our parents, friends, and well-wishers for
their constant support, encouragement, and motivation during this journey.
TABLE OF CONTENTS
Chapter No. Chapter Title Page No.
1 Problem Statement -1-
2 Testing and Evaluation -4-
3 Results and Discussion / Future Work -8-
4 Conclusion and References -12-
CHAPTER 1: Introduction
Problem Statement
Cardiovascular diseases (CVDs) remain one of the leading causes of death worldwide, posing a major
challenge for healthcare systems. Early detection and risk prediction are crucial for improving patient
outcomes, but existing predictive models often suffer from limited interpretability, overfitting, and
dependence on large feature sets. Traditional single-objective optimization approaches primarily focus
on maximizing accuracy without considering model complexity or clinical applicability. This results in
high-performing yet opaque models that hinder adoption in real-world medical settings.
In contrast, healthcare practitioners require predictive systems that balance accuracy with
interpretability to support clinical decision-making effectively. Many conventional feature selection
methods—such as filters, wrappers, and embedded techniques—optimize a single metric and fail to
address the trade-off between predictive performance and model simplicity. Moreover, feature-rich
models increase computational costs and reduce transparency, making them impractical for deployment
in clinical environments with limited resources.
To address these limitations, this project proposes a Multi-Objective Optimization (MOO)
framework that integrates Ant Colony Optimization (ACO) and Multi-Objective Particle Swarm
Optimization (MOPSO) for CVD prediction. The hybrid MOACO–MOPSO model simultaneously
optimizes two conflicting objectives: maximizing predictive performance (measured by F1-score and
AUC) and minimizing model complexity (measured by feature subset size). By generating a diverse set
of Pareto- optimal solutions, the system provides clinicians with flexible model options tailored to
different healthcare contexts—such as high-accuracy models for diagnostic use and lightweight models
for real- time screening.
This approach ensures improved clinical interpretability, reduced computational overhead, and
enhanced decision support, contributing to more accurate and actionable cardiovascular disease
prediction models
Software Requirements Specification (SRS)
The Software Requirements Specification (SRS) defines the functional and non-functional requirements
for the proposed Multi-Objective Cardiovascular Disease Prediction System. The system integrates
Ant Colony Optimization (ACO) and Multi-Objective Particle Swarm Optimization (MOPSO)
algorithms to enhance model accuracy and interpretability, thereby improving Clinical Decision
Support Systems (CDSS).
Functional Requirements
1. Data Preprocessing Module
Handles missing values using median/mode imputation.
-1
-
Encodes categorical features using one-hot or ordinal encoding.
-2
-
Normalizes continuous attributes to improve model stability.
Splits the dataset into training, validation, and test subsets using stratified sampling.
2. Feature Selection Module (MOACO–MOPSO Hybrid)
Applies Ant Colony Optimization (ACO) to construct initial feature subsets.
Uses MOPSO to refine solutions by balancing performance and feature count.
Generates a Pareto front of non-dominated models for clinician review.
Updates pheromone and particle information dynamically after each iteration.
3. Model Evaluation and Optimization
Evaluates each feature subset using a Random Forest classifier.
Measures key performance indicators such as F1-score, AUC, Accuracy, Sensitivity,
and Specificity.
Identifies high-accuracy, minimal-feature, and compromise models for analysis.
Uses hypervolume and spacing metrics to assess Pareto front diversity and convergence.
4. Clinical Decision Support Dashboard
Displays optimized model results and feature importance visualization.
Provides real-time recommendations for CVD risk prediction.
Allows clinicians to select appropriate models based on accuracy and interpretability needs.
Generates downloadable reports summarizing model performance and selected features.
5. Data Storage and Management
Stores preprocessed data, selected features, and model results securely.
Maintains a repository of evaluated Pareto-optimal solutions.
Supports data retrieval for further experimentation or validation.
Non-Functional Requirements
1. Scalability:
The system must handle large clinical datasets and scale efficiently for future data additions.
2. Performance:
Optimization and model evaluation should complete within a reasonable time frame, ensuring fast
feedback for clinical users.
3. Accuracy:
Predictive performance metrics (F1-score, AUC) must meet or exceed benchmark single-
objective models.
4. Usability:
The interface should be intuitive and user-friendly for medical practitioners and data scientists.
5. Security:
Implements encryption, secure storage, and access control to protect patient data and model
outputs.
6. Reliability:
Ensures consistent system performance even under multiple optimization runs or large input
datasets
-3
-
Hardware and Software Requirements
Hardware Requirements
Server: Minimum 8-core CPU, 32GB RAM, 1TB SSD storage
Client Machines: Minimum 4-core CPU, 8GB RAM, 500GB HDD
Network: 1Gbps Ethernet connectivity
Software Requirements
Frontend: Streamlit / [Link] for Dashboard Interface
Backend: Python (Flask / FastAPI)
Database: PostgreSQL
Security: JWT authentication, SSL encryption
Risk Analysis
Algorithm Convergence Risk
The hybrid optimization algorithms (ACO and MOPSO) may converge prematurely, leading to
suboptimal Pareto solutions.
Mitigation: Use adaptive parameter tuning, hybrid exploration–exploitation balance, and
diversity preservation techniques.
Data Imbalance Risk
Unequal distribution between positive and negative cardiovascular cases can bias the model’s
prediction.
Mitigation: Apply data balancing techniques like SMOTE or weighted loss functions during
training.
Computational Overhead
Multi-objective optimization requires evaluating multiple candidate solutions, increasing
processing time.
Mitigation: Use parallel processing, efficient memory management, and limit iterations
dynamically.
-4
-
Chapter 2: Testing and Evaluation
3.1 Overview
The testing and evaluation phase focuses on validating the performance, reliability, and interpretability of
the proposed Multi-Objective Cardiovascular Disease (CVD) Prediction System. The
model, built upon a hybrid of Ant Colony Optimization (ACO) and Multi-Objective Particle Swarm
Optimization (MOPSO), was designed to achieve a balance between predictive accuracy and model
simplicity, addressing the limitations of existing single-objective optimization approaches.
This chapter presents the experimental setup, evaluation procedure, performance metrics, and an in-depth
analysis of results obtained through systematic testing on benchmark cardiovascular datasets.
3.2 Experimental Setup
The experiments were carried out using the UCI Cleveland Heart Disease Dataset, which is one of the
most widely adopted benchmarks for cardiovascular risk prediction.
The dataset contains 13 clinical and physiological attributes such as age, sex, chest pain type (cp),
resting blood pressure (trestbps), cholesterol (chol), fasting blood sugar (fbs), maximum heart
rate (thalach), and others.
The target variable is binary — indicating the presence or absence of heart disease.
Key configurations used:
Parameter Description
Dataset UCI Cleveland Heart Disease Dataset
Number of Features 13
Classifier Used Random Forest (100 trees)
Validation Method 10-fold cross-validation
Optimization Algorithms ACO, MOPSO, and proposed MOACO–MOPSO hybrid
Programming Environment Python (NumPy, Pandas, Scikit-learn, PyMOO)
Hardware Used 8-core CPU, 32GB RAM, 1TB SSD
The hybrid optimization process was executed for multiple independent runs to ensure consistency and
stability in results. All algorithms were tuned empirically to achieve the best trade-off between exploration
and exploitation.
-5
-
3.3 Evaluation Metrics
The performance of each model was evaluated using multiple statistical and optimization-based metrics:
Accuracy – Measures the proportion of correctly classified cases.
F1-Score – Represents the harmonic mean of precision and recall, ideal for imbalanced datasets.
AUC (Area Under ROC Curve) – Indicates the overall discriminative capability of the model.
Sensitivity and Specificity – Evaluate the model’s ability to correctly identify positive and
negative cases respectively.
Feature Count – Represents the simplicity or dimensionality of the selected feature subset.
Pareto Quality Metrics:
o Hypervolume (HV): Quantifies the extent of the dominated space by Pareto-optimal
solutions.
o Spacing (SP): Measures diversity among Pareto solutions.
These metrics collectively assess the accuracy–simplicity trade-off, which is central to the proposed
multi-objective optimization framework.
3.4 Experimental Results
To validate the proposed framework, results from the hybrid MOACO–MOPSO approach were
compared against baseline models, including full-feature Random Forest, filter-based selection, and
single-objective ACO optimization.
Table 3.1 – Model Performance Comparison
F1- Avg.
Model AUC Accuracy Remarks
Score Features
Full Feature Model 0.84 0.78 0.81 13 High accuracy but complex model
Moderate accuracy with low
Filter (InfoGain) 0.82 0.76 0.79 6
complexity
ACO (Single Objective) 0.86 0.80 0.83 9 Optimized for accuracy only
Proposed MOACO– Best trade-off between accuracy
0.89 0.83 0.85 6
MOPSO and simplicity
-6
-
3.5 Pareto Front Evaluation
The Pareto front generated by the hybrid model illustrates the trade-off between model performance
and feature count.
The proposed framework achieved a Pareto hypervolume (HV) of 0.24, which is significantly higher
than the single-objective ACO (HV = 0.18) and filter-based method (HV = 0.12).
This demonstrates superior convergence and diversity, ensuring a balanced set of non-dominated
solutions.
A knee-point model identified from the Pareto front represents the optimal compromise solution, using
only six clinically significant features — cp, thalach, oldpeak, ca, thal, and age.
These features align closely with medically validated indicators of cardiovascular disease, reinforcing
the clinical relevance of the model’s outputs.
3.6 Discussion of Results
The experimental findings indicate that the MOACO–MOPSO hybrid algorithm successfully
enhances the trade-off between predictive power and
interpretability. While traditional models maximize performance at the cost of complexity,
the proposed system identifies compact models with competitive accuracy.
Key observations:
The hybrid model reduced feature count by over 50% without loss of predictive power.
The Pareto front showed smooth convergence, indicating stable multi-objective optimization
behavior.
The feature subsets selected were consistent across multiple runs, confirming reliability.
The final model achieved high discriminative capability (AUC = 0.89) suitable for clinical
deployment.
The method’s adaptability allows it to be extended to other medical datasets or chronic disease
prediction tasks.
3.7 Visualization and Interpretation
The visualization of results provides clear insights into the optimization process:
Pareto Front Graph: Illustrates trade-offs between accuracy (AUC/F1) and feature count.
Feature Importance Plot: Highlights the contribution of individual clinical features to
prediction outcomes.
ROC Curve: Demonstrates that the hybrid model consistently maintains higher true positive
rates across thresholds compared to baseline models.
Convergence Graph: Shows the stability of the hybrid algorithm across iterations.
-7
-
Such visual evidence enhances the interpretability of the system and strengthens confidence in its practical
applicability.
3.8 Summary
The testing and evaluation process confirmed that the proposed hybrid MOACO–MOPSO model
delivers a powerful, interpretable, and computationally efficient solution for cardiovascular disease
prediction.
By combining the exploratory strength of swarm intelligence with the optimization rigor of multi- objective
search, the system produces clinically reliable and resource-efficient models.
Overall, the proposed approach establishes a strong foundation for AI-driven Clinical Decision Support
Systems (CDSS), enabling data-driven medical diagnosis that is both explainable and effective in real-
world healthcare environments.
-8
-
CHAPTER 3: Results and Discussion / Future Work
4.1 Overview
This chapter presents the results obtained from implementing the proposed Multi-Objective
Cardiovascular Disease Prediction System, which integrates Ant Colony Optimization (ACO) with
Multi-Objective Particle Swarm Optimization (MOPSO).
The primary objective of the system is to identify a set of optimal models that balance predictive
accuracy and model simplicity, thereby enhancing the interpretability and clinical applicability of
machine learning in healthcare.
Through systematic experiments and comparative evaluation, the hybrid MOACO–MOPSO
framework demonstrated significant improvements over traditional single-objective and filter-based
feature selection approaches.
The results affirm that the proposed system can deliver high-performance, interpretable, and
computationally efficient predictive models suitable for deployment in clinical decision support
environments.
4.2 Experimental Outcomes
The experiments were conducted using the UCI Cleveland Heart Disease dataset, applying 10-fold
cross-validation to ensure robustness and generalization.
Three baseline models were compared against the proposed hybrid optimization system to measure
relative improvements in predictive performance and model interpretability.
Table 4.1 – Comparative Results of Different Models
F1- Avg.
Model AUC Accuracy Remarks
Score Features
High complexity, limited
Full Feature (Baseline) 0.84 0.78 0.81 13
interpretability
Filter Method Moderate accuracy, low feature
0.82 0.76 0.79 6
(InfoGain) diversity
Accuracy-focused, lacks multi-
Single Objective ACO 0.86 0.80 0.83 9
objective balance
Proposed MOACO– Best trade-off between accuracy
0.89 0.83 0.85 6
MOPSO and simplicity
The proposed system achieved an AUC improvement of 5% and an F1-score improvement of 3%
compared to the full-feature baseline, while simultaneously reducing the feature count by more than
half.
This demonstrates that the hybrid algorithm effectively optimizes both objectives, delivering efficient
and interpretable models.
-9
-
4.3 Pareto Front Analysis
The Pareto front represents the set of non-dominated solutions obtained through the hybrid multi-
objective optimization process.
Each point on the Pareto front corresponds to a distinct model configuration that offers a unique trade-
off between predictive accuracy and model complexity.
The Hybrid MOACO–MOPSO algorithm produced a high-quality Pareto front with superior
convergence and diversity compared to baseline models.
The Hypervolume (HV) value of 0.24 confirms a broader and denser distribution of optimal
solutions, while single-objective ACO and filter methods achieved HV values of 0.18 and 0.12,
respectively.
The Knee-point model, representing the optimal compromise solution, utilized only six key
clinical features (cp, thalach, oldpeak, ca, thal, age) — all of which are medically
validated indicators of cardiovascular disease.
This confirms that the proposed system not only produces accurate predictions but also preserves
clinically relevant features, ensuring transparency and trustworthiness in medical decision-making.
4.4 Discussion
The proposed Multi-Objective Optimization framework successfully addresses the major challenges
in healthcare predictive modeling — accuracy, interpretability, and computational efficiency.
The integration of Ant Colony Optimization for feature subset construction and MOPSO for Pareto-
based search allows the system to efficiently balance these conflicting objectives.
Key Highlights of Results:
1. Enhanced Predictive Power:
The hybrid model consistently achieved superior AUC and F1-scores compared to traditional
models, confirming its robustness across different validation runs.
2. Feature Reduction and Interpretability:
The model reduced the average number of features by over 50% while retaining clinical
significance, allowing easier interpretation by healthcare professionals.
3. Improved Convergence and Diversity:
The synergy between ACO’s local exploration and MOPSO’s global search enhanced Pareto
diversity and reduced premature convergence.
4. Clinical Relevance:
The selected features correspond to known medical risk factors for heart disease, supporting the
practical utility of the system in real-world clinical scenarios.
5. Scalability and Adaptability:
The framework is computationally efficient and can be scaled to other medical datasets or
diseases requiring multi-objective predictive modeling.
-
10
4.5 Visualization of Results
Graphical visualization plays a critical role in understanding optimization dynamics and clinical
implications.
Pareto Front Visualization: Depicts the trade-off between AUC and feature
count, demonstrating that models with fewer features maintain competitive
performance.
ROC Curves: Show that the proposed hybrid consistently outperforms baseline models
across all threshold levels.
Feature Importance Plot: Highlights dominant medical predictors such as cp (chest pain type)
and thalach (maximum heart rate).
Convergence Graph: Displays smooth improvement of solutions over successive iterations,
confirming stable convergence of the optimization process.
These visual interpretations enhance the readability of experimental results and reinforce the
transparency of the system’s decisions.
4.6 Clinical and Computational Insights
The hybrid model demonstrates that accuracy and interpretability can coexist within predictive
healthcare systems when multi-objective optimization is properly designed.
By focusing on Pareto-optimal trade-offs, the system enables medical practitioners to select a model
that fits their context — for example:
High-accuracy models for advanced diagnostic systems in tertiary hospitals.
Low-feature, lightweight models for primary healthcare centers with limited computational
resources.
This adaptability ensures the system’s relevance across multiple layers of healthcare infrastructure,
from preventive screenings to detailed diagnostic assessments.
4.7 Future Work
While the proposed system achieved notable success, there are several avenues for future enhancement
and expansion:
1. Larger and Multi-Center Datasets:
Extending experiments to diverse clinical datasets will improve model generalizability and
validate cross-population performance.
2. Incorporating a Third Objective:
Future versions can integrate computational cost, fairness, or explainability as an additional
optimization objective, creating more balanced and ethically aware models.
3. Integration with Deep Learning Models:
The hybrid MOO framework can be extended to neural architectures such as CNNs or RNNs to
capture more complex patient patterns.
- 10
-
4. Clinical Deployment:
Development of a prototype Clinical Decision Support System (CDSS) with real-time
prediction and interactive visualization for clinicians.
5. Explainable AI (XAI) Integration:
Employing model-agnostic interpretability techniques (e.g., SHAP, LIME) to provide detailed
reasoning behind each prediction.
6. Parallel and Distributed Computing:
Implementing the optimization process on GPU or cloud platforms to reduce execution time for
large datasets.
4.8 Summary
The results clearly establish that the MOACO–MOPSO hybrid model outperforms traditional
approaches in both accuracy and interpretability, achieving a powerful balance necessary for real-
world clinical application.
Through comprehensive testing, visualization, and analysis, the framework has demonstrated its ability
to serve as a foundation for data-driven, transparent, and trustworthy AI-based healthcare
systems.
The insights gained from this research can guide future advancements in multi-objective optimization,
medical feature selection, and clinical decision intelligence, paving the way for more personalized
and effective patient care.
- 11
-
CHAPTER 4: Conclusion and References
5.1 Conclusion
Cardiovascular diseases (CVDs) continue to be one of the most critical global health concerns,
demanding early and accurate diagnosis to reduce mortality and improve patient outcomes.
This project presented a Multi-Objective Optimization Framework integrating Ant Colony
Optimization (ACO) and Multi-Objective Particle Swarm Optimization (MOPSO) for predicting
cardiovascular diseases. The proposed system was designed to achieve a balanced trade-off between
high predictive accuracy and low model complexity, addressing the limitations of traditional single-
objective models.
Through extensive experimentation on the UCI Cleveland Heart Disease dataset, the hybrid
MOACO–MOPSO model demonstrated superior performance compared to baseline models,
achieving an AUC of 0.89 and an F1-score of 0.83 while utilizing only six significant features.
The approach successfully reduced the feature set by over 50%, enhancing interpretability without
compromising accuracy — a vital requirement for clinical adoption.
The results confirm that combining swarm intelligence techniques for multi-objective feature
optimization not only improves classification performance but also ensures clinical transparency and
computational efficiency.
The generated Pareto front provides diverse model configurations, allowing healthcare practitioners
to select the most suitable model depending on the application context — such as diagnostic accuracy
or real-time deployment constraints.
In essence, the proposed hybrid system achieves the following outcomes:
Establishes an effective framework for multi-objective feature optimization in medical
prediction tasks.
Demonstrates that accuracy, interpretability, and efficiency can coexist through hybrid
swarm intelligence.
Offers a scalable and adaptable model for integration into AI-driven Clinical Decision Support
Systems (CDSS).
This project contributes toward advancing trustworthy and explainable AI in healthcare by providing
a methodologically sound and clinically interpretable predictive system for cardiovascular disease risk
assessment.
5.2 Future Enhancements
Although the proposed model achieves significant improvements, several areas can be explored for
further enhancement:
1. Integration with Deep Neural Models:
Hybridizing MOACO–MOPSO with deep architectures (CNNs, LSTMs) to capture complex
patient patterns.
2. Real-time Clinical Implementation:
Developing a web or mobile-based interface for live medical data input and risk prediction.
- 12
-
3. Explainability and Trust:
Employing Explainable AI (XAI) methods like SHAP or LIME to interpret individual
predictions for clinicians.
4. Expanded Dataset Validation:
Evaluating the framework on larger, multi-hospital datasets to ensure cross-population
generalization.
5. Hybrid Objective Expansion:
Introducing a third objective (e.g., computational time, fairness, or interpretability score) for
more balanced optimization.
6. Parallel and Distributed Optimization:
Utilizing GPU or cloud infrastructure to accelerate optimization for large-scale healthcare
datasets.
5.3 Key Contributions
This project provides several notable contributions to the field of intelligent healthcare systems:
A novel hybrid MOACO–MOPSO framework for multi-objective optimization in medical
prediction.
Effective feature reduction and accuracy improvement in cardiovascular disease
classification.
Development of a Pareto-optimal model set offering flexibility in accuracy and
simplicity trade-offs.
Empirical validation on a real-world dataset with strong performance across multiple
evaluation metrics.
Lays groundwork for interpretable AI-based clinical decision support systems.
5.4 Final Remarks
The outcomes of this research signify an important step toward the realization of intelligent,
interpretable, and efficient medical diagnostic systems.
By leveraging multi-objective swarm intelligence, the proposed system bridges the gap between
machine learning accuracy and clinical trustworthiness.
The hybrid framework can be extended beyond cardiovascular prediction to other domains such as
diabetes, cancer, and neurological disorders — providing a generalizable foundation for AI-assisted
healthcare innovation.
The success of this project demonstrates how AI-driven optimization can enhance medical analytics
and empower healthcare professionals to make informed, data-driven, and life-saving decisions.
- 13
-
5.5 References
1. S. Patel and K. Sharma, “Optimizing Multi-Objective Cardiovascular Disease
Prediction Models Using Ant Colony Optimization and Swarm Intelligence
Metaheuristics,” IEEE Conference on Computational Intelligence in Healthcare, 2025.
2. UCI Machine Learning Repository – Cleveland Heart Disease Dataset, University of
California, Irvine.
3. M. Dorigo, M. Birattari, and T. Stützle, “Ant Colony Optimization: Artificial Ants as a
Computational Intelligence Technique,” IEEE Computational Intelligence Magazine, 2006.
4. J. Kennedy and R. Eberhart, “Particle Swarm Optimization,” Proceedings of IEEE International
Conference on Neural Networks, 1995.
5. Deb, Kalyanmoy. “Multi-Objective Optimization Using Evolutionary Algorithms.” John Wiley
& Sons, 2001.
6. D. Dua and C. Graff, “UCI Machine Learning Repository,” [Link] 2019.
7. H. Ishibuchi and T. Murata, “A Multi-Objective Genetic Local Search Algorithm and Its
Application to Flowshop Scheduling,” IEEE Transactions on Systems, Man, and Cybernetics,
1998.
8. S. Mirjalili et al., “Swarm Intelligence for Feature Selection in Machine Learning: A Review,”
Expert Systems with Applications, 2021
- 14
-
- 15
-