-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconcussion-project.html
More file actions
81 lines (74 loc) · 4.62 KB
/
concussion-project.html
File metadata and controls
81 lines (74 loc) · 4.62 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
<!DOCTYPE HTML>
<!--
Phantom by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Generic - Phantom by HTML5 UP</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="./assets/css/main.css" />
<noscript><link rel="stylesheet" href="./assets/css/noscript.css" /></noscript>
</head>
<body class="is-project">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo
<a href="index.html" class="logo">
<span class="symbol"><img src="images/logo.svg" alt="" /></span><span class="title">Phantom</span>
</a>
-->
</div>
</header>
<!-- Menu -->
<nav id="menu">
<h2>Menu</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="generic.html">Ipsum veroeros</a></li>
<li><a href="generic.html">Tempus etiam</a></li>
<li><a href="generic.html">Consequat dolor</a></li>
<li><a href="elements.html">Elements</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<div class="inner">
<h1>Concussion classification</h1>
<p>The aim of this study is to use a <b>Transfer Learning</b> framework to classify complete versus incomplete concussion recovery. </p>
<p>A concussion is a form of mild Traumatic Brain Injury (mTBI) that leads to temporary alterations of brain functions and incapacitates behavior.
Although in most of the cases the symptoms resolve within a few days to a couple of weeks, sometimes they can last for months or even for years, a condition identified as incomplete recovery.
Early identification of incomplete recoveries would allow for early and better optimized treatment. </p>
<p>Diffusion Magnetic Resonance Imaging (MRI) is a powerful <b>neuroimaging</b> technique to study the microstructural properties of the brain in vivo.
Recent multi-center data collection and sharing within the community of large MRI datasets have allowed researchers to study microstructural changes after a concussion on an unprecedented scale.
At the same time, the use of Transfer Learning has become popular in particular in fields for which there is a <b>lack of annotated data</b>.
In neuroimaging and in general in clinical studies, having many annotated samples is generally difficult due for example to long acquisition times, high costs, and difficulties related to data acquisition for specific populations (i.e. children, elderly population, or individuals with pathologies).
With the use of Transfer Learning we can address this issue by first, training a model to solve a specific task for which a big dataset is available, and then fine-tuning the model to address the original, similar, task.</p>
<span class="image main"><img src="images/transfer-learning-framework.png" alt="" /></span>
<p>We used Fractional Anisotropy (FA) 3D images as input for our models for concussion classification, and deep neural networks, specifically 3D <b>Convolutional Neural Networks (CNNs)</b>, as models for our experiments.
CNNs are considered state-of-the-art models to solve <b>computer vision</b> tasks such as image classification and segmentation, and have been already used in several other medical applications, like e.g. Alzheimer's detection and lung segmentation.</p>
<p>First, we trained CNNs from scratch to have baseline scores to compare the following models with. A ResNet with 18 layers was used as the model architecture (ResNet18).
Then, we tested the following <b>pretrained models</b>: <br>
- CNN using a ResNet18 pretrained on kinetics data <br>
- CNN using a ResNet50 pretrained on 3D medical imaging data <br>
- CNN using a InceptionResNet pretrained on 3D brain imaging data <br>
In all the three cases, we applied Transfer Learning in two ways: <br>
- retraining only the classification layers, i.e. only the fully connected layers <br>
- retraining the whole network </p>
<p>This is an ongoing study.</p>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>