-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·141 lines (113 loc) · 5.88 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Lasse Reedtz</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/landing-page.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Header -->
<a name="about"></a>
<div class="intro-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="intro-message">
<h1>Lasse Reedtz</h1>
<h3>Ai, Neural Nets, Machine Learning</h3>
<hr class="intro-divider">
<ul class="list-inline intro-social-buttons">
<li>
<a href="https://github.com/lre/" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-github fa-fw"></i> <span class="network-name">Github</span></a>
</li>
<li>
<a href="https://www.kaggle.com/lassereedtz" target="_blank" class="btn btn-default btn-lg"><img src="img/kaggleIcon.png" height="20" width="20"> <span class="network-name">Kaggle</span></a>
</li>
<li>
<a href="https://twitter.com/LasseSR" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-twitter fa-fw"></i> <span class="network-name">Twitter</span></a>
</li>
<li>
<a href="https://dk.linkedin.com/in/lassereedtz" target="_blank" class="btn btn-default btn-lg"><i class="fa fa-linkedin fa-fw"></i> <span class="network-name">Linkedin</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.intro-header -->
<!-- Page Content -->
<a name="thesis"></a>
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-5 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<a href="https://lre.github.io/MasterThesis.pdf" target="_blank">
<h2 class="section-heading">Master Thesis:<br>Fast convolutional deep learning for image segmentation</h2>
</a>
<p class="lead">My master thesis, written at DTU with Ole Winther and Anders Lindbo Larsen as supervisors, explored the implementation of a cutting edge method for image segmentation using DCNNs on an Nvidia GPU. This was accomplished using CUDArray and Deeppy and was applied to the <a href="http://brainiac2.mit.edu/isbi_challenge/" target="_blank">ISBI Challenge: Segmentation of neuronal structures in EM stacks.</a></p>
</div>
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
<a href="https://lre.github.io/MasterThesis.pdf" target="_blank">
<img class="img-responsive" src="img/MasterFront.png" alt="Master Thesis Fron Page: Fast convolutional deep learning for image segmentation ">
</a>
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-a -->
<div class="content-section-b">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
<hr class="section-heading-spacer">
<div class="clearfix"></div>
<h2 class="section-heading">Deeppy and Cudarray</h2>
<p class="lead">Deeppy and Cudarray are two parts of a python library for Deep neural networks, developed by Anders Lindbo Larsen and me. The library runs on both CPU and GPU and can be run on the GPU using cuDNN or without. The library’s can be found on github and are still under development.<br />
Links: <a href="https://github.com/andersbll/deeppy" target="_blank">Deeppy</a> And
<a href="https://github.com/andersbll/cudarray" target="_blank" >Cudarray</a> </p>
</div>
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
<img class="img-responsive" src="img/daftpunktocat.png" >
</div>
</div>
</div>
<!-- /.container -->
</div>
<!-- /.content-section-b -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="copyright text-muted small">Copyright CC</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>