-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (140 loc) · 4.26 KB
/
index.html
File metadata and controls
148 lines (140 loc) · 4.26 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
section {
margin-bottom: 40px;
}
h1, h2 {
color: #333;
}
#nav {
display: flex;
justify-content: flex-start;
margin-bottom: 40px;
padding: 20px 0;
border-bottom: 1px solid #eee;
}
#nav a {
text-decoration: none;
color: #333;
font-weight: 500;
font-size: 1.1em;
margin-right: 20px;
padding: 5px 10px;
border-radius: 4px;
transition: background-color 0.2s;
}
#nav a:hover {
background-color: #f5f5f5;
}
#nav a.active {
color: #000;
font-weight: 600;
}
/* simple styling for social buttons */
#socials {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 40px;
}
.social-button {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
}
.social-button img {
width: 24px;
height: 24px;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T5TRTHMCYV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-T5TRTHMCYV');
</script>
</head>
<body>
<nav id="nav">
<a href="index.html" id="home-link">Home</a>
<a href="blog.html" id="blog-link">Blog</a>
</nav>
<script>
// Add active state to current page
const currentPage = window.location.pathname.split('/').pop() || 'index.html';
document.querySelectorAll('#nav a').forEach(link => {
if (link.getAttribute('href') === currentPage) {
link.classList.add('active');
}
});
</script>
<h1>Hi, I'm Joe</h1>
<section id="about">
<p>I am a software engineer and ML researcher. I previously started a company called Womp Labs working on dataset selection, data attribution and explainable AI. Before that, I was working on detecting anomalous network traffic. I also spent some time training geolocation models.</p>
<p>Mostly I like staring at log-log plots in wandb :)</p>
</section>
<section id="current">
<h3>Some things I'm doing now:</h3>
<ul>
<li>Efficient data attribution with friends at UIUC and CMU: <a href="https://www.arxiv.org/abs/2505.23223">first paper out</a>!</li>
<li>Independent projects around scalable dataset selection.</li>
<li>Training ever better geolocation models that power <a href="https://geospy.ai/">geospy.ai</a>.</li>
</ul>
</section>
<section id="projects">
<h3>Some things I have done in the past:</h3>
<ul>
<li><a href="https://x.com/GeospyAI/status/1919445068294799700">Trained really good geolocation models.</a></li>
<li><a href="https://www.womplabs.ai/a-new-sota-in-data-attribution#more-to-come">Made some progress on data attribution.</a></li>
<li><a href="https://www.linkedin.com/posts/joseph-melkonian-_classof2023-washu-computerscience-activity-7067483733393620992-VWUJ?utm_source=share&utm_medium=member_desktop&rcm=ACoAADHMpGMBqrTEs8kyhzx70msHMh-RF3IAxTk">Spoke nervously in front of a lot of people.</a></li>
</ul>
</section>
<section id="Hobbies">
<h3>Some things I like to do:</h3>
<ul>
<li>Play basketball, golf, soccer, football, chess, poker and pretty much anything else where there is a winner.</li>
<li>Ski</li>
<li>Hike</li>
<li>Play piano, want to re-learn guitar</li>
</ul>
</section>
<footer>
<div id="socials">
<a
class="social-button"
href="https://x.com/joemelko"
target="_blank"
rel="noopener noreferrer"
>
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/x.svg" alt="X logo" />
</a>
<a
class="social-button"
href="https://www.linkedin.com/in/joseph-melkonian-"
target="_blank"
rel="noopener noreferrer"
>
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/linkedin.svg" alt="LinkedIn logo" />
</a>
</div>
</footer>
</body>
</html>