-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 2.92 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
<!DOCTYPE html>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://unpkg.com/nes.css/css/nes.css" rel="stylesheet" />
<style>
html, body, pre, code, kbd, samp {
font-family: "Press+Start+2P";
}
font-size: 13px;
}
.column {
float: left;
width: 50%;
background-color: MistyRose;
color: white;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #F00;
}
</style>
<html>
<body>
<ul>
<li><a class="active" href="https://github.com/rd16395p">Main Github Site</a></li>
<li><a class="active" href="https://github.com/rd16395p/EMOTIONET_Paper">EMOTIONET - My Published Paper </a></li>
<li><a href="https://github.com/rd16395p/tensormodeltoraspi">Tensorflow Project on a Raspberry Pi</a></li>
<li><a href="https://github.com/rd16395p/Detecting-Eye-LesionMircoaneursyms">Detecting Eye Lesions with Deep Neural Networks</a> </li>
<li><a href="https://github.com/HackTheSolarSystem/StormsOfJupiter">Deam Dreaming Storms of Jupiter for a Hackthon</a> </li>
</ul>
<div class="nes-container with-title is-centered">
<h1>Welcome to my online webpage.</h1>
<h2>Feel free to look at some of my projects on github by clicking any of the links above. </h2>
<h3>I am a Machine Learning Engineer/SME/SDE working at $company_name. My main focus is applications in
computer vision with deep neural networks. However, I have experience in other areas, such as data science, data mining, other machine learning
techniques, and much more. </h3>
</div>
</body>
<!--<div class="row">
<div class="column"><h2> Tensorflow on a raspberry pi </h2>
<p> Small project in relation to my thesis. Done using tensorflow, raspberry pi, and many other packages for python. To see the
code, please follow this <a href = "https://github.com/rd16395p/tensormodeltoraspi">link.</a></p></div>
<div class="column"><h2>Detecting Eye Lesions with Deep Neural Networks </h2>
<p> Using a Convolutional Neural Networks for Diabetic Retinopathy detection with Mircoaneursyms. To see the
code, please follow this<a href = "https://github.com/rd16395p/Detecting-Eye-LesionMircoaneursyms"> link. </a> </p></div>
</div> --->
<footer>
<center> <i class="nes-icon gmail"></i> [email protected] <i class="nes-icon github"></i> rd16395p <i class="nes-icon linkedin"></i> rebecca-dagostino </center>
<center> <a href = "https://nostalgic-css.github.io/NES.css/"> Style from here! </a> </center>
</footer>
</html>