Spaces:
Runtime error
Runtime error
<html> | |
<head> | |
<link rel="stylesheet" href="file/style.css" /> | |
<link rel="preconnect" href="https://fonts.googleapis.com" /> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | |
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet" /> | |
<title>Visual Question Answering (VQA) for Medical Imaging</title> | |
<style> | |
* { | |
box-sizing: border-box; | |
} | |
body { | |
font-family: 'Source Sans Pro', sans-serif; | |
font-size: 16px; | |
} | |
.container { | |
width: 100%; | |
margin: 0 auto; | |
} | |
.title { | |
font-size: 24px ; | |
font-weight: 600 ; | |
letter-spacing: 0em; | |
text-align: center; | |
color: #374159 ; | |
} | |
.subtitle { | |
font-size: 24px ; | |
font-style: italic; | |
font-weight: 400 ; | |
letter-spacing: 0em; | |
text-align: center; | |
color: #1d652a ; | |
padding-bottom: 0.5em; | |
} | |
.overview-heading { | |
font-size: 24px ; | |
font-weight: 600 ; | |
letter-spacing: 0em; | |
text-align: left; | |
} | |
.overview-content { | |
font-size: 14px ; | |
font-weight: 400 ; | |
line-height: 33px ; | |
letter-spacing: 0em; | |
text-align: left; | |
} | |
.content-image { | |
width: 100% ; | |
height: auto ; | |
} | |
.vl { | |
border-left: 5px solid #1d652a; | |
padding-left: 20px; | |
color: #1d652a ; | |
} | |
.grid-container { | |
display: grid; | |
grid-template-columns: 1fr 2fr; | |
gap: 20px; | |
align-items: flex-start; | |
margin-bottom: 1em; | |
} | |
@media screen and (max-width: 768px) { | |
.container { | |
width: 90%; | |
} | |
.grid-container { | |
display: block; | |
} | |
.overview-heading { | |
font-size: 18px ; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1 class="title">Visual Question Answering (VQA) for Medical Imaging</h1> | |
<h2 class="subtitle">Kalbe Digital Lab</h2> | |
<section class="overview"> | |
<div class="grid-container"> | |
<h3 class="overview-heading"><span class="vl">Overview</span></h3> | |
<div> | |
<p class="overview-content"> | |
The project addresses the challenge of accurate and efficient medical imaging analysis in healthcare, aiming to reduce human error and workload for radiologists. | |
The proposed solution involves developing advanced AI models for Visual Question Answering (VQA) to assist healthcare professionals in analyzing medical images quickly and accurately. | |
These models will be integrated into a user-friendly web application, providing a practical tool for real-world healthcare settings. | |
</p> | |
<p class="overview-content">References: <a href="https://www.sciencedirect.com/science/article/abs/pii/S0933365723001252" target="_blank">https://www.sciencedirect.com/science/article/abs/pii/S0933365723001252</a></p> | |
</div> | |
</div> | |
<div class="grid-container"> | |
<h3 class="overview-heading"><span class="vl">Dataset</span></h3> | |
<div> | |
<p class="overview-content"> | |
The model is trained with Colorectal Nuclear Segmentation and Phenotypes (CoNSeP) dataset | |
<a href="https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet" target="_blank">https://warwick.ac.uk/fac/cross_fac/tia/data/hovernet</a>. Images were extracted from 16 colorectal adenocarcinoma (CRA) WSIs. | |
</p> | |
<ul> | |
<li>Target: Nuclei</li> | |
<li>Task: Classification</li> | |
<li>Modality: Images (Histology and Label) </li> | |
</ul> | |
</div> | |
</div> | |
<div class="grid-container"> | |
<h3 class="overview-heading"><span class="vl">Model Architecture</span></h3> | |
<div> | |
<p class="overview-content">The model is trained using DenseNet121 over CoNSep dataset.</p> | |
<img class="content-image" src="img/Model-Architecture.png" alt="model-architecture" /> | |
</div> | |
</div> | |
</section> | |
<h3 class="overview-heading"><span class="vl">Demo</span></h3> | |
<p class="overview-content">Please select or upload a nuclei histology image and label image to see Nuclei Cells Classification capabilities of this model</p> | |
</div> | |
</body> | |
</html> |