-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.15 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mitchell L. Gordon · MIT</title>
<link rel="stylesheet" href="style.css">
<script src="data.js"></script>
</head>
<body>
<div class="banner"></div>
<div class="page-container">
<!-- Header -->
<div class="header">
<h1>Mitchell L. Gordon</h1>
<h2 class="subtitle">Assistant Professor of Computer Science, MIT EECS/CSAIL</h2>
<h2 class="subtitle">Member of Technical Staff, OpenAI</h2>
</div>
<!-- Sidebar -->
<div class="sidebar">
<img src="images/face_3.png" alt="Mitchell Gordon professional headshot" class="profile-photo">
<p class="contact">mlgordon@mit.edu · 32-G718</p>
<p class="links">
<a href="assets/cv.pdf">CV</a> ·
<a href="https://scholar.google.com/citations?user=pMkqt6sAAAAJ&hl=en">Google Scholar</a> ·
<a href="https://x.com/mitchellgordon">Twitter</a>
</p>
<div class="sidebar-section">
<h4>PhD students</h4>
<div id="students-list">
<!-- Students loaded from data.js -->
</div>
</div>
</div>
<!-- Main Content -->
<div class="main-column">
<div class="bio">
<p>My research designs interactive systems, models, and evaluations for AI alignment and safety. My work has been recognized with best paper awards at CHI and CSCW, an oral at NeurIPS, and Stanford’s Arthur Samuel Award for Best PhD Dissertation in Computer Science. I hold a PhD in computer science from Stanford.</p>
</div>
<h3>Recent Highlights</h3>
<div id="publications-list">
<!-- Publications loaded from data.js -->
</div>
<!-- <h3>Teaching</h3>
<div id="teaching-list">
<!~~ Teaching loaded from data.js ~~>
</div> -->
</div>
</div>
</body>
</html>