-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (130 loc) · 5.57 KB
/
index.html
File metadata and controls
145 lines (130 loc) · 5.57 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE HTML>
<html>
<head>
<title>Daniel Allen - Software Engineer</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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175003358-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-175003358-1');
</script>
</head>
<body class="is-preload">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header" class="alt">
<h1><a href="index.html">Daniel Allen - Portfolio</a></h1>
<!--
<nav>
<a href="#menu">Menu</a>
</nav>
-->
</header>
<!-- Menu -->
<!-- <nav id="menu">
<div class="inner">
<h2>Menu</h2>
<ul class="links">
<li><a href="index.html">Home</a></li>
</ul>
<a href="#" class="close">Close</a>
</div>
</nav> -->
<!-- Banner -->
<section id="banner">
<div class="inner">
<!-- <div class="logo"><span class="icon brands fa-github"></span><span class="icon brands fa-github"></span></div> -->
<!-- <ul class="icon"><li><a href="#" class="icon brands fa-github"><span class="label">Github</span></li></ul> -->
<a href="http://github.com/danielgallen/" class="icon brands fa-github"><span class="label">Github</span></a>
<h2>Daniel Allen</h2>
<p>Machine Learning & Software Engineer</p>
<a href="resume.pdf" class="button icon solid fa-download">Resume</a>
</div>
</section>
<!-- Wrapper -->
<section id="wrapper">
<!-- One -->
<section id="one" class="wrapper spotlight style1">
<div class="inner">
<a href="#" class="image"><img src="images/prediction.jpg" alt="" /></a>
<div class="content">
<h2 class="major">Lifestyle AI</h2>
<p>An app for diet and lifestyle management. Uses multivariate time series forcasting to generate weight predictions and recommendations for macronutrient consumption and corresponding food choices. Uses a Flask API hosted on GCP to serve predictions with Tensorflow. Private code.</p>
</div>
</div>
</section>
<!-- Two -->
<section id="two" class="wrapper alt spotlight style2">
<div class="inner">
<a href="#" class="image"><img src="images/1621RmicroSSaxial.png" alt="" /></a>
<div class="content">
<h2 class="major">Automated Segmentation of Temporal Bone Structures from Clinical Computed Tomography Images</h2>
<p>Masters thesis work focusing on the semantic segmentation of anatomical structures from the temporal bone for the use in a surgical mastoidectomy simulator. Outlines the usage of multi-atlas based approaches as well as convoultional neural networks.</p>
<!-- <a href="#" class="special">Learn more</a> -->
<a href="https://ir.lib.uwo.ca/etd/6605/" class="special">Thesis</a>
</div>
</div>
</section>
<!-- Three -->
<section id="three" class="wrapper spotlight style3">
<div class="inner">
<a href="#" class="image"><img src="images/luna3DViewPredictionCropped.png" alt="" /></a>
<div class="content">
<h2 class="major">Automatic Segmentation of Lungs using a Convolutional Neural Network</h2>
<p>Segmentation of computed tomography images of the lungs from the luna16 dataset using a U-net coded with Python and Tensorflow.</p>
<a href="https://github.com/danielgallen/luna16-unet" class="special">Github</a>
</div>
</div>
</section>
<!-- Four -->
<section id="four" class="wrapper alt style1">
<div class="inner">
<h2 class="major">Other Projects</h2>
<!-- <p>A list of other projects</p> -->
<section class="features">
<article>
<a href="#" class="image"><img src="images/Human_EEG_with_prominent_alpha-rhythm.png" alt="" /></a>
<h3 class="major">EEG Processing for Muse Headsets</h3>
<p>A small MATLAB project done for a psychology student for streamlined processing of signals from a Muse EEG headset using EEGLAB.</p>
<a href="https://github.com/danielgallen/eeglab-muse" class="special">Github</a>
</article>
<article>
<a href="#" class="image"><img src="images/archlinuxscreenshot.png" alt="" /></a>
<h3 class="major">Linux Configuration Dotfiles</h3>
<p>Configuration files for Linux environment.</p>
<a href="https://github.com/danielgallen/dotfiles" class="special">Github</a>
</article>
</section>
<!--
<ul class="actions">
<li><a href="#" class="button">Browse All</a></li>
</ul>
-->
</div>
</section>
</section>
<!-- Footer -->
<section id="footer">
<div class="inner">
<ul class="copyright">
<li>© Daniel Allen. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.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>