-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
359 lines (330 loc) · 17.2 KB
/
index.html
File metadata and controls
359 lines (330 loc) · 17.2 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
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GSoC 2025 / Google DeepMind</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Roboto', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
deepmind: {
DEFAULT: '#4285F4', // Google Blue
dark: '#1a73e8',
hover: '#E8F0FE', // Light blue background
}
}
}
}
}
</script>
<style>
body {
background-color: #ffffff;
color: #3C4043;
}
/* Layout */
.layout-container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Sidebar */
.sidebar {
background: white;
z-index: 40;
border-bottom: 0px solid #e5e7eb;
}
@media (min-width: 1024px) {
.layout-container {
display: grid;
grid-template-columns: 280px 1fr;
}
.sidebar {
position: fixed;
width: 280px;
height: 100vh;
overflow-y: auto;
border-right: 1px solid #e5e7eb;
border-bottom: none;
}
.main-content {
grid-column-start: 2;
max-width: 900px;
margin: 0 auto;
padding-top: 4rem;
width: 100%;
}
}
.nav-link {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-radius: 0 24px 24px 0;
color: #5f6368;
font-weight: 500;
font-size: 0.95rem;
transition: all 0.2s;
margin-right: 16px;
}
.nav-link:hover {
background-color: #E8F0FE;
color: #1a73e8;
}
.card {
display: block;
border: 1px solid #e5e7eb;
border-radius: 8px;
padding: 24px;
background: white;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
text-decoration: none;
}
.card:hover {
border-color: #4285F4;
box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1);
cursor: pointer;
}
.topic-tag {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #1967d2;
background: #e8f0fe;
padding: 4px 8px;
border-radius: 4px;
}
</style>
</head>
<body class="antialiased">
<div class="layout-container">
<!-- Sidebar -->
<aside class="sidebar p-6 flex flex-col justify-between">
<div>
<div class="mb-8 lg:mb-10 px-4">
<p class="text-xs font-medium text-deepmind uppercase tracking-widest mb-1">GSoC 2025</p>
<h1 class="text-xl font-bold text-gray-900 leading-tight">Google<br>DeepMind</h1>
</div>
<nav class="space-y-1">
<a href="#about" class="nav-link">About</a>
<a href="#timeline" class="nav-link">Timeline</a>
<a href="#experience" class="nav-link">Experience</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#documents" class="nav-link">Documents</a>
<a href="#resources" class="nav-link">Resources</a>
</nav>
</div>
<div class="px-4 mt-8 hidden lg:block">
<div class="pt-6 border-t border-gray-100 flex flex-col gap-3">
<a href="https://github.com/heilcheng/DeepMind" target="_blank"
class="text-sm text-gray-500 hover:text-deepmind transition-colors flex items-center gap-2">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
Source Code
</a>
</div>
</div>
</aside>
<!-- Main Content -->
<main class="main-content px-6 py-12 lg:py-0 pb-24">
<!-- About/Intro -->
<section id="about" class="mb-20 pt-8 lg:pt-20">
<h1 class="text-4xl lg:text-5xl font-bold tracking-tight text-gray-900 mb-6">
My Journey with <span class="text-deepmind">Google DeepMind</span>
</h1>
<p class="text-xl text-gray-600 max-w-2xl leading-relaxed">
I spent my summer building open-source evaluation tools for the Gemma project. My work focused on creating
systematic benchmarking frameworks and domain-specific assessments to improve how we understand Large Language
Models.
</p>
</section>
<!-- Timeline -->
<section id="timeline" class="mb-20">
<h2 class="text-xs font-bold text-gray-500 uppercase tracking-widest mb-6 border-b border-gray-200 pb-2">
Timeline</h2>
<div class="space-y-4">
<div class="flex flex-col sm:flex-row gap-4 p-5 bg-blue-50/50 rounded-lg border border-blue-100">
<div class="w-24 shrink-0 font-mono text-deepmind font-medium">May 7</div>
<div>
<p class="font-semibold text-gray-900">Selected for Google Summer of Code</p>
<p class="text-gray-600 text-sm mt-1">Thrilled to be accepted by Google DeepMind to work on Gemma.</p>
</div>
</div>
<div class="flex flex-col sm:flex-row gap-4 p-5 rounded-lg border border-dashed border-gray-200">
<div class="w-24 shrink-0 font-mono text-gray-400">May 8</div>
<div>
<p class="text-gray-500 text-sm">Reflecting on the journey: Rejections from other organizations ultimately
led me to the right place.</p>
</div>
</div>
</div>
</section>
<!-- Experience (Blog) -->
<section id="experience" class="mb-20">
<h2 class="text-xs font-bold text-gray-500 uppercase tracking-widest mb-6 border-b border-gray-200 pb-2">
Experience</h2>
<a href="https://medium.com/@heilcheng2-c/how-i-landed-a-google-deepmind-project-in-google-summer-of-code-2025-a-step-by-step-guide-ccb2dee66769"
target="_blank" class="card group">
<div class="flex flex-col gap-2">
<h3 class="text-lg font-bold text-gray-900 group-hover:text-deepmind transition-colors">How I Landed a
DeepMind Project</h3>
<p class="text-gray-600 mb-4 text-sm leading-relaxed">I wrote a comprehensive guide sharing my application
process, including how I crafted my proposal and navigated the selection phase, to help future applicants.
</p>
<div class="flex items-center text-sm font-medium text-deepmind">
Read on Medium
<svg class="w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3" />
</svg>
</div>
</div>
</a>
</section>
<!-- Projects -->
<section id="projects" class="mb-20">
<h2 class="text-xs font-bold text-gray-500 uppercase tracking-widest mb-6 border-b border-gray-200 pb-2">
Projects</h2>
<div class="grid gap-6">
<!-- OpenEvals -->
<a href="https://github.com/heilcheng/openevals" target="_blank" class="card group">
<div class="flex justify-between items-start mb-4">
<h3 class="text-lg font-bold text-gray-900 group-hover:text-deepmind transition-colors">OpenEvals</h3>
<span class="topic-tag">Analysis</span>
</div>
<p class="text-gray-600 mb-6 text-sm leading-relaxed">
A standardized framework for evaluating LLMs. It benchmarks models on MMLU, GSM8K, MATH, and HumanEval,
allowing for fair comparisons across Gemma, Llama, and Mistral families.
</p>
<div
class="text-sm font-medium text-gray-500 group-hover:text-deepmind transition-colors flex items-center gap-2">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
View Repository
</div>
</a>
<!-- MedExplain Evals -->
<a href="https://github.com/heilcheng/medexplain-evals" target="_blank" class="card group">
<div class="flex justify-between items-start mb-4">
<h3 class="text-lg font-bold text-gray-900 group-hover:text-deepmind transition-colors">MedExplain Evals
</h3>
<span class="topic-tag">Healthcare</span>
</div>
<p class="text-gray-600 mb-6 text-sm leading-relaxed">
A domain-specific evaluation tool to assess how accurately and clearly AI explains medical concepts.
Includes interactive benchmarks designed for patient-facing applications.
</p>
<div
class="text-sm font-medium text-gray-500 group-hover:text-deepmind transition-colors flex items-center gap-2">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
View Repository
</div>
</a>
</div>
</section>
<!-- Documents -->
<section id="documents" class="mb-20">
<h2 class="text-xs font-bold text-gray-500 uppercase tracking-widest mb-6 border-b border-gray-200 pb-2">
Documents</h2>
<div class="grid sm:grid-cols-2 gap-6">
<a href="./Comprehensive%20Benchmark%20Suite%20for%20Evaluating%20Gemma%20Models.pdf" target="_blank"
class="card group hover:border-deepmind">
<div class="flex items-center gap-3 mb-2">
<svg class="w-5 h-5 text-gray-400 group-hover:text-deepmind" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
<span class="font-semibold text-gray-900 group-hover:text-deepmind transition-colors">GSoC Proposal</span>
</div>
<p class="text-xs text-gray-500">View PDF Document</p>
</a>
<a href="https://github.com/google-deepmind/gemma/issues/244" target="_blank"
class="card group hover:border-deepmind">
<div class="flex items-center gap-3 mb-2">
<svg class="w-5 h-5 text-gray-400 group-hover:text-deepmind" fill="currentColor" viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
<span class="font-semibold text-gray-900 group-hover:text-deepmind transition-colors">Demo on Gemma</span>
</div>
<p class="text-xs text-gray-500">View GitHub Issue</p>
</a>
</div>
</section>
<!-- Resources -->
<section id="resources" class="mb-20">
<h2 class="text-xs font-bold text-gray-500 uppercase tracking-widest mb-6 border-b border-gray-200 pb-2">GSoC
Resources</h2>
<div class="space-y-3">
<a href="https://gsocguide.vercel.app" target="_blank"
class="flex items-center justify-between p-4 bg-white border border-gray-200 rounded-lg hover:border-deepmind hover:bg-deepmind-hover/20 transition-all group">
<div>
<span class="font-medium text-gray-900 group-hover:text-deepmind transition-colors">GSoC Guide</span>
<span class="text-gray-500 text-sm ml-2">— Tips & Resources</span>
</div>
<svg class="w-4 h-4 text-gray-400 group-hover:text-deepmind" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
</svg>
</a>
<a href="https://github.com/SammanSarkar/GSoC_archive_2025" target="_blank"
class="flex items-center justify-between p-4 bg-white border border-gray-200 rounded-lg hover:border-deepmind hover:bg-deepmind-hover/20 transition-all group">
<div>
<span class="font-medium text-gray-900 group-hover:text-deepmind transition-colors">Proposals
Archive</span>
<span class="text-gray-500 text-sm ml-2">— Accepted Proposals</span>
</div>
<svg class="w-4 h-4 text-gray-400 group-hover:text-deepmind" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
</svg>
</a>
<a href="https://www.gsocorganizations.dev" target="_blank"
class="flex items-center justify-between p-4 bg-white border border-gray-200 rounded-lg hover:border-deepmind hover:bg-deepmind-hover/20 transition-all group">
<div>
<span class="font-medium text-gray-900 group-hover:text-deepmind transition-colors">Organizations
DB</span>
<span class="text-gray-500 text-sm ml-2">— Search participating orgs</span>
</div>
<svg class="w-4 h-4 text-gray-400 group-hover:text-deepmind" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
</svg>
</a>
</div>
</section>
<footer class="text-center text-sm text-gray-400 py-8 border-t border-gray-100">
<p>Made public for GSoC 2026 applicants.</p>
<div class="mt-2 text-xs">
<a href="https://haileycheng.com" class="hover:text-deepmind transition-colors">Hailey Cheng</a> •
<a href="https://github.com/heilcheng/DeepMind" class="hover:text-deepmind transition-colors">View Source</a>
</div>
</footer>
</main>
</div>
</body>
</html>