-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
468 lines (429 loc) · 21.5 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<!DOCTYPE html>
<html>
<head>
<title>Michelle Heeyeon Yoo</title>
<script src="tagcanvas.js" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function() {
try {
TagCanvas.Start('myCanvas','tags',{
textColour: null,
textFont: null,
weight: true,
outlineColour: null,
reverse: true,
depth: 0.5,
maxSpeed: 0.017
});
} catch(e) {
// something went wrong, hide the canvas container
document.getElementById('myCanvasContainer').style.display = 'none';
}
};
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91680103-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Lato", sans-serif}
.mySlides {display: none}
canvas { margin-bottom: 20px }
ul.weighted {
float: left;
display: block;
overflow: auto;
padding: 20px;
margin: 0 10px 20px 0;
background-color: #fff;
border: 4px solid #aaa;
border-radius: 20px;
-moz-border-radius: 20px;
}
ul.weighted li { display: inline }
ul.weighted li a { margin: 2px }
.centred p { width: 320px; float: left; margin-left: 20px }
.preright { float: left }
.huge { font-family: Impact,sans-serif; font-size: 56px }
.large { font-family: Impact,sans-serif; font-size: 40px }
.medium { font-family: Impact,sans-serif; font-size: 18px }
.small { font-family: Impact,sans-serif; font-size: 11px }
a.red { color: #ff0000 }
a.green { color: #008000 }
a.purple { color: #800080 }
a.darkbrown { color: #32292f }
a.brown { color: #705d56 }
a.darkteal { color: #70abaf }
a.teal { color: #99e1d9 }
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<ul class="w3-navbar w3-black w3-card-2 w3-left-align">
<li class="w3-hide-medium w3-hide-large w3-opennav w3-right">
<a class="w3-padding-large" href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
</li>
<li><a href="#" class="w3-hover-none w3-hover-text-grey w3-padding-large">HOME</a></li>
<li class="w3-hide-small"><a href="#about" class="w3-padding-large">ABOUT</a></li>
<li class="w3-hide-small"><a href="#experience" class="w3-padding-large">EXPERIENCE</a></li>
<li class="w3-hide-small"><a href="#project" class="w3-padding-large">PROJECTS</a></li>
<li class="w3-hide-small"><a href="#contact" class="w3-padding-large">CONTACT</a></li>
</ul>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<ul class="w3-navbar w3-left-align w3-black">
<li><a class="w3-padding-large" href="#about">ABOUT</a></li>
<li><a class="w3-padding-large" href="#experience">EXPERIENCE</a></li>
<li><a class="w3-padding-large" href="#project">PROJECTS</a></li>
<li><a class="w3-padding-large" href="#contact">CONTACT</a></li>
</ul>
</div>
<!-- Page content -->
<div class="w3-content" style="max-width:2000px;margin-top:46px">
<!-- Automatic Slideshow Images -->
<!-- Wordcloud -->
<div id="myCanvasContainer" class="mySlides w3-display-container w3-center">
<canvas width="750" height="750" id="myCanvas" class="w3-center">
</canvas>
</div>
}
<!-- list of tags -->
<div id="tags" class="centred">
<ul>
<li><a href="#" class="teal small">Mathematics</a></li>
<li><a href="#" class="darkbrown medium">Linear Algebra</a></li>
<li><a href="#" class="darkteal medium">Computer Science</a></li>
<li><a href="#" class="brown small">Algorithms</a></li>
<li><a href="#" class="teal medium">Statistics</a></li>
<li><a href="#" class="darkbrown small">Probability</a></li>
<li><a href="#" class="teal medium">Business</a></li>
<li><a href="#" class="large darkbrown ">Data Science</a></li>
<li><a href="#" class="teal small">Supervised Learning</a></li>
<li><a href="#" class="darkbrown medium">Data Analytics</a></li>
<li><a href="#" class="brown medium">Clustering</a></li>
<li><a href="#" class="teal small">Data Structures</a></li>
<li><a href="#" class="brown large">NLP</a></li>
<li><a href="#" class="darkbrown medium">Visualization</a></li>
<li><a href="#" class="teal medium">Artificial Intelligence</a></li>
<li><a href="#" class="darkteal huge">Machine Learning</a></li>
<li><a href="#" class="darkbrown small">Unsupervised Learning</a></li>
<li><a href="#" class="teal medium">Classification</a></li>
<li><a href="#" class="darkbrown small">R</a></li>
<li><a href="#" class="darkbrown medium">Neural Networks</a></li>
<li><a href="#" class="darkbrown small">Python</a></li>
<li><a href="#" class="darkteal medium">Hadoop</a></li>
<li><a href="#" class="darkbrown small">C++</a></li>
<li><a href="#" class="brown large">Text Analytics</a></li>
<li><a href="#" class="darkteal small">Java</a></li>
<li><a href="#" class="darkteal small">Regression</a></li>
<li><a href="#" class="darkteal medium">Data Engineering</a></li>
<li><a href="#" class="darkteal huge">Deep Learning</a></li>
<li><a href="#" class="darkteal small">Random Forest</a></li>
<li><a href="#" class="brown small">K Means</a></li>
<li><a href="#" class="darkbrown small">Support Vector Machine</a></li>
<li><a href="#" class="brown small">Distributed System</a></li>
</ul>
</div>
<!-- ABOUT Section -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:800px" id="about">
<h2 class="w3-wide"><i class="glyphicon glyphicon-user w3-margin-right w3-xlarge w3-text-teal"></i>ABOUT</h2>
<p class="w3-opacity"><i>Aspiring Data Scientist / Machine Learning Researcher</i></p>
<br>
<div class="w3-row-padding">
<div class="w3-twothird">
<p class="w3-justify">Hi, my name is Michelle. I am a third year University of Waterloo student studying Computer Science and Statistics with Business option.</p>
<p class="w3-justify">I am passionate in learning about the evolving field of data science and machine learning. I have enrolled in relevant courses both in school and through online resources to solidify my foundation. I also enjoy reading related books and research papers which helps me keep up with the latest technologies and researches.
<p class="w3-justify">I am in co-op program where I alternate study and work terms throughout my undergrad career. Most of my experiences are focused around working with data. I developed understanding in various data science and machine learning concepts such as Deep Learning, Speech Recognition, Natural Language Processing, Text Analytics, Social Data Analytics and Data Engineering through my internships. The details of my work experience can be found in the next section.</p>
</div>
<div class="w3-third">
<p class="w3-large"><b>Programming Proficiency</b></p>
<p>Python</p>
<div class="w3-progress-container w3-round-xlarge w3-small">
<div class="w3-progressbar w3-round-xlarge w3-teal" style="width:95%">
</div>
</div>
<br>
<p>C++</p>
<div class="w3-progress-container w3-round-xlarge w3-small">
<div class="w3-progressbar w3-round-xlarge w3-teal" style="width:95%">
</div>
</div>
<br>
<p>R</p>
<div class="w3-progress-container w3-round-xlarge w3-small">
<div class="w3-progressbar w3-round-xlarge w3-teal" style="width:85%">
</div>
</div>
<br>
<p>Java</p>
<div class="w3-progress-container w3-round-xlarge w3-small">
<div class="w3-progressbar w3-round-xlarge w3-teal" style="width:80%">
</div>
</div>
</div>
</div>
</div>
<!-- The Experience Section -->
<div class="w3-black" id="experience">
<div class="w3-container w3-content w3-padding-64" style="max-width:800px">
<h2 class="w3-wide w3-center"><i class="fa fa-suitcase fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>WORK EXPERIENCE</h2>
<p class="w3-opacity w3-center"><i>I am in co-op program where I alternate study and work terms throughout my undergrad career.</i></p><br>
<ul class="w3-ul w3-border w3-white w3-text-grey">
<div class="w3-container">
<br>
<div class="w3-col" style="width:70%">
<a href="http://www.scotiabank.com/ca/en/0,1091,5,00.html" target="_blank"><img src="scotia.jpg" alt="Image" class="w3-left w3-margin-right"" height="60" width="60"></a>
<h5 class="w3-normal"><b>Data Engineer</b></h5>
<h6 class="w3-normal">Scotiabank - Network Analytics & Machine Learning</h6>
</div>
<div class="w3-col" style="width:30%">
<br>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Jan 2017 - <span class="w3-tag w3-teal w3-round">Current</span></h6>
</div>
<div class="w3-content w3-container">
<br>
<p>• Applied graph theory and statistical analysis to provide actionable insights to internal clients</p>
<p>• Designed algorithms based on natural language processing and machine learning</p>
<p>• Gained working knowledge of the Hadoop ecosystem to tackle real world big data questions</p>
<p>• Built and optimized data flows to bridge other systems with the Hadoop platform</p>
</div>
<hr>
</div>
<div class="w3-container">
<div class="w3-col" style="width:70%">
<a href="http://mindslab.ai" target="_blank"><img src="mindslab.png" alt="Image" class="w3-left w3-margin-right"" height="60" width="60"></a>
<h5 class="w3-normal"><b>Data Scientist</b></h5>
<h6 class="w3-normal">MINDs Lab - Analytics Technology Division</h6>
</div>
<div class="w3-col" style="width:30%">
<br>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Aug 2015 - Apr 2016</h6>
</div>
<div class="w3-content w3-container">
<br>
<p>• Gained solid understanding in Data Science through joint projects with Samsung, ING and LG</p>
<p>• Researched and applied various algorithms for Text Classification: TF-IDF, K-Means and Deep Learning</p>
<p>• Developed working knowledge in Speech Recognition and NLP through transcription of customer calls </p>
<p>• Enhanced the Text Analytics application by implementing document summarization scripts in Python</p>
</div>
<hr>
</div>
<div class="w3-container">
<div class="w3-col" style="width:70%">
<a href="http://mindslab.ai" target="_blank"><img src="mindslab.png" alt="Image" class="w3-left w3-margin-right"" height="60" width="60"></a>
<h5 class="w3-normal"><b>Big Data Mangement Intern</b></h5>
<h6 class="w3-normal">MINDs Lab - Analytics Technology Division</h6>
</div>
<div class="w3-col" style="width:30%">
<br>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>May 2014 - Aug 2014</h6>
</div>
<div class="w3-content w3-container">
<br>
<p>• Built and distributed monthly analysis reports for Facebook pages of LG Electronics, Samsung Electronics</p>
<p>• Researched and analyzed market trends in various industries to develop Big Data platform engine</p>
<p>• Developed understanding about Big Data while completing Big Data Decision Science Certificate Course</p>
<p>• Acquired working knowledge with data analysis tools including MINDs Insight, Tableau, UberVU</p>
</div>
<hr>
</div>
<div class="w3-container">
<div class="w3-col" style="width:70%">
<a href="https://www.tdcanadatrust.com/" target="_blank"><img src="td.png" alt="Image" class="w3-left w3-margin-right"" height="60" width="60"></a>
<h5 class="w3-normal"><b>IT Business Analyst</b></h5>
<h6 class="w3-normal">TD Bank - Debit Payment Team</h6>
</div>
<div class="w3-col" style="width:30%">
<br>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Jan 2015 - Apr 2015</h6>
</div>
<div class="w3-content w3-container">
<br>
<p>• Assessed application, organization and document readiness for application deployment</p>
<p>• Closely worked with developers to plan initiative deployments and define the deployment requirements</p>
<p>• Created Implementation Notice for each change request and communicated to other departments</p>
<p>• Created Visio Work Flow model for job processes of Access Card and ATM applications</p>
</div>
</div>
<br>
</ul>
</div>
</div>
</div>
<!-- The Project Section -->
<div class="w3-black" id="project">
<div class="w3-container w3-content w3-padding-64" style="max-width:800px">
<h2 class="w3-wide w3-center"><i class="glyphicon glyphicon-file w3-margin-right w3-xlarge w3-text-teal"></i>PROJECTS</h2>
<p class="w3-opacity w3-center"><i>I have worked on a few projects in the past. See below to learn more about them!</i></p><br>
<div class="w3-row-padding w3-padding-32" style="margin:0 -16px">
<div class="w3-third w3-margin-bottom">
<img src="chessboard.png" alt="Chess" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<br>
<p><b>Chess Game (C++)</b></p>
<p class="w3-opacity">July 10 - July 24, 2016</p>
<p>Strategic traditional chess game with A.I. options</p>
<button class="w3-btn w3-margin-bottom" onclick="document.getElementById('chessproject').style.display='block'" class="w3-btn w3-hover-light-grey">View</button>
</div>
</div>
<div class="w3-third w3-margin-bottom">
<img src="datafest.png" alt="DataFest" style="width:100%; height:50%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<br>
<p><b>DataFest</b></p>
<p class="w3-opacity">May 5 - May 7, 2017</p>
<p>48-hour Data Hackathon<br><br></p>
<button class="w3-btn w3-margin-bottom" onclick="document.getElementById('datafest').style.display='block'" class="w3-btn w3-hover-light-grey">View</button>
</div>
</div>
<div class="w3-third w3-margin-bottom">
<img src="question.png" alt="Coming Soon" style="width:100%" class="w3-hover-opacity">
<div class="w3-container w3-white">
<br>
<p><b>Coming Soon</b></p>
<p class="w3-opacity"><br><br></p>
<p><br></p>
<button class="w3-btn w3-margin-bottom" class="w3-btn w3-hover-light-grey">View</button>
</div>
</div>
</div>
<a href='3BResume.pdf' download>
<button class="w3-btn w3-right w3-light-grey w3-padding-large w3-section w3-hover-grey">
<i class="fa fa-download"></i> Download Resume
</button>
</a>
</div>
</div>
<!-- Chess Modal -->
<div id="chessproject" class="w3-modal">
<div class="w3-modal-content w3-animate-zoom">
<div class="w3-container w3-black">
<span onclick="document.getElementById('chessproject').style.display='none'" class="w3-closebtn w3-xxlarge w3-hover-text-grey">x</span>
<h1>Chess Game (C++)</h1>
</div>
<div class="w3-container">
<a href="https://github.com/TimBaek/Chess" target="_blank">
<img src="chessboard.png" alt="Chess" style="width:100%" class="w3-hover-opacity">
</a>
<br>
<h5>• Developed Chess game with two partners as final project for academic coursework (attained 96%)</h5>
<h5>• Applied various design patterns, mostly focused on Model-View-Controller Pattern</h5>
<h5>• Implemented Computer(with up to AI level 3) and View(both Text and Graphic Displays) classes</h5>
<h5>• Co-operated with partners to implement Board(Model) class</h5>
<h5>• Designed UML diagram to to model the processes of the system</h5>
<br>
</div>
</div>
</div>
<!-- DataFest Modal -->
<div id="datafest" class="w3-modal">
<div class="w3-modal-content w3-animate-zoom">
<div class="w3-container w3-black">
<span onclick="document.getElementById('datafest').style.display='none'" class="w3-closebtn w3-xxlarge w3-hover-text-grey">x</span>
<h1>DataFest</h1>
</div>
<div class="w3-container">
<a href="https://github.com/michellehy95/DataFest" target="_blank">
<img src="datafest_full.png" alt="DataFest" style="width:100%" class="w3-hover-opacity">
</a>
<br><br>
<h5>• Received Honorable Mention in Data Hackathon sponsored by organizations such as Google, ASA and UWaterloo</h5>
<h5>• Analyzed Expedia data using Python to understand the various customer behavior patterns based on customer clicks and bookings</h5>
<br>
</div>
</div>
</div>
<!-- The Contact Section -->
<div class="w3-container w3-content w3-padding-64" style="max-width:800px" id="contact">
<h2 class="w3-wide w3-center"><i class="fa fa-phone fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>CONTACT</h2>
<p class="w3-opacity w3-center"><i>Let's get in touch!</i></p>
<div class="w3-row w3-padding-32">
<div class="w3-col m6 w3-large w3-margin-bottom">
<i class="fa fa-map-marker" style="width:30px"></i> Waterloo, Canada<br>
<i class="fa fa-phone" style="width:30px"></i> Phone: 1-416-569-5797<br>
<i class="fa fa-envelope" style="width:30px"> </i> Email: h23yoo at uwaterloo.ca<br>
</div>
<div class="w3-col m6">
<form action="form.asp" target="_blank">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Name" required name="Name">
</div>
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Email" required name="Email">
</div>
</div>
<input class="w3-input w3-border" type="text" placeholder="Message" required name="Message">
<button class="w3-btn w3-section w3-right" type="submit">SEND</button>
</form>
</div>
</div>
</div>
<!-- End Page Content -->
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-64 w3-center w3-opacity w3-light-grey w3-xlarge">
<a href="https://www.facebook.com/michelle.h.yoo/" title="Michelle's Facebook Profile" target="_blank"><i class="fa fa-facebook-official w3-hover-text-indigo"></i></a>
<a href="https://www.instagram.com/michellehy95/" title="Michelle's Instagram" target="_blank"><i class="fa fa-instagram w3-hover-text-purple"></i></a>
<a href="https://twitter.com/michellehy95" title="Michelle's Twitter" target="_blank"><i class="fa fa-twitter w3-hover-text-light-blue"></i></a>
<a href="https://ca.linkedin.com/in/michelle-yoo-70865a88" title="Michelle's Linkedin Profile" target="_blank"><i class="fa fa-linkedin w3-hover-text-indigo"></i></a>
<a href="https://github.com/michellehy95" title="Michelle's Github" target="_blank"><i class="fa fa-github w3-hover-text-indigo"></i></a>
</footer>
<script>
// Automatic Slideshow - change image every 10 seconds
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 20000);
}
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
function myFunction2(id) {
var x = document.getElementById(id);
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
// When the user clicks anywhere outside of the modal, close it
var modal = document.getElementById('menu');
var chessmodal = document.getElementById('chessproject');
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
if (event.target == chessmodal) {
chessmodal.style.display = "none";
}
}
</script>
</body>
</html>