-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (82 loc) · 3.46 KB
/
index.html
File metadata and controls
94 lines (82 loc) · 3.46 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
<!DOCTYPE html>
<!--
Helpful Links Used to Build Webpage:
1) https://www.youtube.com/watch?v=VegDvRLVlOI&t=170s&ab_channel=BrianDesign
2) https://medium.com/@ianjsikes/build-a-personal-website-with-html-and-css-part-1-3013fb5dacd4
3) https://www.youtube.com/watch?v=OltY8JIaP-4&ab_channel=KennyYipCoding
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width",
initial-scale="1.0">
<script src="https://kit.fontawesome.com/150dc3fd01.js" crossorigin="anonymous"></script>
<link rel="icon" href="fa-regular fa-star" />
<link rel="stylesheet" href="style.css">
<title>MAIN PAGE</title>
</head>
<body>
<nav>
<div class="logo-image">
<a href="./index.html">
<img src="weblogo.png" class="img-fluid" width="auto" height="50" >
<br></br>
</a>
</div>
<div class="nav-items">
<!--
<a href="./projects.html">Projects</a>
<a href="./blog.html">Blog</a>
<a href="./resume.html">CV/Resume</a>
-->
</div>
</nav>
<section class="hero">
<div class="hero-contrainer">
<div class="column-left">
<div>
<img class="profile-picture" src="ProfilePic.jpg" width="200">
</div>
<div>
<p> <br/></p>
<h3 align="center"> Machine Learning
<br />
Enginneer
<br />
</h3>
<p> <br/></p>
<p align="center"> <a href="https://www.linkedin.com/in/ivonneam/"> <i class="fa-brands fa-linkedin"></i>LinkedIn</a> </p>
<p align="center"> <a href="https://github.com/ivonnem3"> <i class="fa-brands fa-github"></i>Github</a> </p>
</div>
</div>
<div class="column-right">
<h2>About</h2>
<p size="+2">
Hello! My name is Ivonne and I am a Machine Learning & AI enthusiast.
I have a Bachelor's in Pure Mathematics and a Master's in Data Science,
my passion lies not only in the application of ML models but the
ethical implications that they impose. I have prior HCI research
experience at the <a href = "https://dtak.github.io/" >Harvard DtAK Lab</a>🦄
I am currently interested in NLP, Geometric Machine Learning, Generative AI, and Multimodal Deep Learning. </p>
<p size "+2"> Some of my personal interest are crocheing, cooking, & working out! </p>
<h2>Education</h2>
<p size="+2">May 2023 | Masters in Data Science at Harvard University</p>
<p size="+2">May 2021 | Bachelor in Matematics at the Univeristy of Texas at Austin</p>
<p size="+2">May 2021 | Computational Science & Engineering Certificate at the Univeristy of Texas at Austin</p>
<p size="+2">May 2021 | Elements of Computing Certificate Univeristy of Texas at Austin</p>
<p size="+2">May 2021 | Scientific Computation and Data Science Certificate Univeristy of Texas at Austin</p>
<h2>Teaching & Mentorship</h2>
<p> Teaching Fellow Positions at Harvard Universirty:</p>
<ul>
<li>Spring 2023 CS 181:Machine Learning</li>
<li>Spring 2023 APCOMP 221:Critical Thinking in Data Science</li>
</ul>
<p> Teaching Assistant Positions at UT Austin:</p>
<ul>
<li>Spring 2021 NSC 325:Cyber Security Practicum</li>
<li>Fall 2020 M 408C:Advance Calculus</li>
<li>Fall 2019 M 408C:Advance Calculus</li>
</ul>
</div>
</body>
</html>