-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
103 lines (98 loc) · 5.46 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/resume.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<div class="header-container">
<h1><a href="index.html">Ethan Vertal</a></h1>
<nav>
<div class="menu-icon" onclick="toggleMenu()">
<i class="fas fa-bars"></i>
</div>
<ul id="nav-links" class="nav-links">
<li><a href="index.html#about-me">About Me</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#contact">Contact</a></li>
<li><a href="./assets/Ethan_Vertal_Resume_June24.pdf" download>Download My Resume (PDF)</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<section class="section" id="resume">
<h2>Resume</h2>
<div class="resume-content">
<p><a href="./assets/Ethan_Vertal_Resume_Oct24.pdf" download>Download My Resume (PDF)</a></p>
<h3>Education</h3>
<div>
<h4>B.S. in Statistics and Machine Learning</h4>
<p>Carnegie Mellon University, Pittsburgh, PA</p>
<p><strong>Aug 2020 - May 2024</strong></p>
<ul>
<li>Graduated with Honors</li>
<li>Relevant Coursework: Generative AI, Machine Learning with Large Datasets, Intermediate Deep Learning, Statistical Computing, Statistical Methods in Finance, AI Problem Representation & Problem Solving</li>
</ul>
</div>
<h3>Experience</h3>
<div>
<h4>Reviewer & Attempter</h4>
<p>Outlier, Remote</p>
<p><strong>Mar 2024 - Present</strong></p>
<ul>
<li>Reviewed and verified prompts or responses for math problems ranging from middle school to undergraduate discrete mathematics, ensuring complexity, Markdown/LaTeX formatting, and correctness.</li>
<li>Developed prompt engineering expertise, contributing to the training of foundation models by challenging AI agents with math problems.</li>
<li>Identified errors in collegiate-level math problems and communicated solutions in non-technical terms to peers for better understanding.</li>
<li>Gained valuable insights into LLM limitations as part of training for state-of-the-art reasoning models.</li>
</ul>
</div>
<div>
<h4>Research Apprentice</h4>
<p>Carnegie Mellon University, Pittsburgh, PA</p>
<p><strong>Jun 2023 - Aug 2023</strong></p>
<ul>
<li>Led team to design a feasibility report and scalable plan for parallelizing a simulation software on a customized AWS-backed cluster infrastructure.</li>
<li>Researched deploying NetLogo simulations on AWS using EC2, S3 Buckets, and Slurm.</li>
</ul>
</div>
<div>
<h4>Software Engineering & Machine Learning Intern</h4>
<p>CrafterCMS, Reston, VA</p>
<p><strong>Jun - Aug 2021 & Jun - Aug 2022</strong></p>
<ul>
<li>Delivered an Alexa API web app in Groovy, used by major enterprises such as Papa Johns, Marriott, and more to boost customer loyalty.</li>
<li>Designed and implemented a TensorFlow-based recommendation system web app.</li>
<li>Analyzed and cleaned data using NumPy, Pandas, and Matplotlib.</li>
</ul>
</div>
<h3>Awards & Extracurricular Activities</h3>
<div>
<ul>
<li><strong>Carnegie Mellon Men’s Soccer Team (2020-2023):</strong> Dedicated 20+ hours per week while balancing a full academic workload. Earned UAA All-Academic and UAA Offensive Player of the Week Awards.</li>
<li><strong>Student Athlete Academic Award (2022-2023):</strong> Achieved highest GPA in respective college as a rising fourth year in the Athletic Department.</li>
</ul>
</div>
<h3>Skills</h3>
<div>
<ul>
<li>Languages: Python, R, PostgreSQL, C, Java</li>
<li>Tools & Frameworks: PyTorch, PySpark, AWS, SKLearn, TensorFlow, NumPy, Matplotlib, Tidyverse, W&B, HuggingFace, TQDM</li>
</ul>
</div>
</div>
</section>
</div>
<footer>
<p>You can reach me at <a href="mailto:[email protected]">[email protected]</p>
</footer>
<script src="./js/script.js"></script>
</body>
</html>