Skip to content

Commit 39b3256

Browse files
committed
Create Uncertainty.html
1 parent 9849e86 commit 39b3256

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

Uncertainty.html

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta content="width=device-width, initial-scale=1.0" name="viewport">
7+
<title>Uncertainty</title>
8+
<link href="assets/img/logo.png" rel="icon">
9+
<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">
10+
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
11+
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
12+
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
13+
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
14+
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
15+
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
16+
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
17+
<link href="assets/css/style.css" rel="stylesheet">
18+
</head>
19+
20+
<body>
21+
<header id="header" class="fixed-top">
22+
<div class="container d-flex align-items-center justify-content-between">
23+
<a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>
24+
<nav id="navbar" class="navbar">
25+
<ul>
26+
<li><a class="nav-link scrollto" href="">Home</a></li>
27+
<li><a class="nav-link scrollto" href="#projects">Projects</a></li>
28+
<li><a class="nav-link scrollto" href="#team">People</a></li>
29+
<li><a class="nav-link scrollto" href="#resources">Resources</a></li>
30+
<li><a class="nav-link scrollto" href="#funding">Funding</a></li>
31+
<li><a class="nav-link scrollto" href="#partners">Partners</a></li>
32+
<li><a class="nav-link scrollto" href="#workwithus">Vacancies</a></li>
33+
<li><a class="nav-link scrollto" href="#footer">Contact</a></li>
34+
</ul>
35+
<i class="bi bi-list mobile-nav-toggle"></i>
36+
</nav>
37+
</div>
38+
</header>
39+
40+
<main id="project-main">
41+
<div class="container">
42+
<hr>
43+
<div class="row justify-content-left">
44+
<div class="col-12">
45+
<div class="text-left">
46+
<h1><b>MSc Project: Understanding Model Failures in Echocardiographic Image Analysis</b></h1>
47+
<hr>
48+
<h2>Project Summary</h2>
49+
<h3>This project investigates why deep learning models fail in echocardiographic image classification by analyzing uncertainty, feature space representation, and dataset biases. The goal is to improve model reliability by identifying failure cases and implementing strategies to mitigate them.</h3>
50+
51+
<h2>Objectives</h2>
52+
<h3>
53+
- Analyze model confidence to detect overconfident misclassifications and low-confidence cases.
54+
<br>- Compare feature representations of correctly classified vs. difficult cases.
55+
<br>- Use heatmaps (e.g., Grad-CAM) to examine where the model is focusing during decision-making.
56+
<br>- Investigate differences in image characteristics (e.g., contrast, noise, brightness) between easy and hard cases.
57+
<br>- Propose and test solutions (e.g., improved preprocessing, data augmentation, fine-tuning) to reduce failure cases.
58+
</h3>
59+
60+
<h2>Methodology</h2>
61+
<h3>
62+
- Train a deep learning model on an echocardiographic dataset.
63+
<br>- Identify and log misclassified and low-confidence images.
64+
<br>- Apply dimensionality reduction (PCA, t-SNE) to visualize feature distributions.
65+
<br>- Use Grad-CAM to analyze attention patterns in correct vs. incorrect predictions.
66+
<br>- Assess the impact of image quality on model performance.
67+
<br>- Implement corrective strategies and evaluate performance improvements.
68+
</h3>
69+
70+
<h2>Expected Outcomes</h2>
71+
<h3>
72+
- Identification of common failure cases in echocardiographic image analysis.
73+
<br>- Insights into how feature representations affect model performance.
74+
<br>- A framework to diagnose and reduce errors in deep learning models.
75+
<br>- Improved model accuracy through targeted refinements.
76+
</h3>
77+
78+
<h2>Skills & Tools Required</h2>
79+
<h3>
80+
- Deep learning frameworks (PyTorch, TensorFlow)
81+
<br>- Data visualization (PCA, t-SNE, Grad-CAM)
82+
<br>- Medical imaging analysis (echocardiography)
83+
<br>- Python, OpenCV, scikit-learn
84+
</h3>
85+
86+
<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></h3>
87+
</div>
88+
</div>
89+
</div>
90+
</div>
91+
</main>
92+
93+
<footer id="footer">
94+
<div class="container d-md-flex py-4">
95+
<div class="me-md-auto text-center text-md-start">
96+
<div class="copyright">
97+
&copy; Copyright <strong><span>IntSaV</span></strong>. All Rights Reserved
98+
</div>
99+
</div>
100+
</div>
101+
</footer>
102+
</body>
103+
</html>

0 commit comments

Comments
 (0)