-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeart_Failure_Prediction.html
More file actions
92 lines (84 loc) · 4.86 KB
/
Copy pathHeart_Failure_Prediction.html
File metadata and controls
92 lines (84 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Heart Failure Prediction</title>
<link href="assets/img/logo.png" rel="icon">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto" href="">Home</a></li>
<li><a class="nav-link scrollto" href="#footer">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</header>
<main id="project-main">
<div class="container">
<hr>
<div class="row justify-content-left">
<div class="col-12">
<div class="text-left">
<hr>
<h1><b>MSc Project Proposal: Heart Failure Prediction Using Machine Learning</b></h1>
<hr>
<h2>Project Summary</h2>
<h3>This project aims to develop a machine learning-based framework for predicting heart failure outcomes. By analysing patient health records, this study will use various machine learning models to determine the key factors contributing to heart failure and improve predictive accuracy.</h3>
<h2>Objectives</h2>
<h3>
1️. Preprocess and Explore the Dataset<br>
- Handle missing values and scale features appropriately.<br>
- Perform exploratory data analysis (EDA) to identify correlations.<br><br>
2️. Train and Evaluate Machine Learning Models<br>
- Implement multiple models (Logistic Regression, Random Forest, SVM, XGBoost, ANN).<br>
- Optimize models using hyperparameter tuning and cross-validation.<br><br>
3️. Feature Importance and Explainability<br>
- Use SHAP values and permutation importance to interpret key risk factors.<br>
- Compare the impact of different features on prediction accuracy.<br><br>
4️. Model Performance Comparison<br>
- Evaluate models using accuracy, F1-score, and ROC-AUC metrics.<br>
- Visualize results using confusion matrices and classification reports.<br><br>
5️. Develop an Interactive Prediction Tool<br>
- Build a user-friendly interface to input patient data and receive predictions.<br>
- Ensure explainability and reliability for clinical applications.<br>
</h3>
<h2>Expected Outcomes</h2>
<h3>
✅ A machine learning framework for predicting heart failure outcomes.<br>
✅ Identification of key clinical indicators affecting heart failure risk.<br>
✅ A comparison of various machine learning techniques.<br>
✅ A prototype tool for real-time heart failure risk prediction.<br>
</h3>
<h2>Skills & Tools Required</h2>
<h3>
🛠 Essential: Python, Scikit-Learn, TensorFlow/PyTorch<br>
📊 Essential: Data preprocessing, feature selection, model evaluation<br>
📈 Preferable: SHAP analysis, statistical modeling, medical data interpretation<br>
</h3>
<h2>Download Dataset</h2>
<h3>
📥 The dataset for this project can be downloaded from <a href="https://drive.google.com/file/d/1x7t9tZ-OtPCpknnnq9JB-mpHwTrvpsrs/view?usp=sharing" target="_blank">this link</a>.
</h3>
<h3>For more information, please contact <a href="https://www.uwl.ac.uk/staff/massoud-zolgharni" target="_blank" rel="noopener noreferrer">Professor Massoud Zolgharni</a> or <a href="https://www.uwl.ac.uk/staff/nasim-dadashi-serej" target="_blank" rel="noopener noreferrer">Dr Nasim Dadashi</a></h3>
</div>
</div>
</div>
</div>
</main>
</body>
</html>