-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
535 lines (476 loc) · 17.5 KB
/
index.html
File metadata and controls
535 lines (476 loc) · 17.5 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
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Jinil Kim | Homepage</title>
<meta name="description" content="Jinil Kim — Computational Cognitive Psychology, Bayesian & RL-based modeling, EEG/fMRI/digital phenotype data." />
<style>
:root{
--bg:#f6f7fb; --text:#1f2937; --muted:#6b7280; --brand:#0b3a75; --brand-2:#0f5ea8; --card:#ffffff;
}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Apple SD Gothic Neo,Noto Sans KR,Helvetica,Arial,sans-serif; background:var(--bg); color:var(--text); margin:0}
a{color:var(--brand-2); text-decoration:none}
a:hover{text-decoration:underline}
html {
scroll-behavior: smooth;
}
.page-container {
display: grid;
grid-template-columns: 320px 1fr;
min-height: 100vh;
}
.sidebar {
position: sticky;
top: 0;
height: 100vh;
overflow-y: auto;
background: linear-gradient(135deg, #012446 0%, #0f5ea8 100%);
color: #fff;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.sidebar-header {
text-align: center;
}
img.profile-rect {
width: 200px;
max-width: 100%;
height: auto;
border-radius: 12px;
border: 3px solid rgba(255,255,255,.7);
box-shadow: 0 6px 18px rgba(0,0,0,.25);
margin-bottom: 1rem;
}
.sidebar h1 {
margin: 0.5rem 0 0.25rem 0;
font-size: 1.75rem;
letter-spacing: .2px;
color: #fff;
}
.sidebar .affiliation {
color: #e6eef7;
font-size: 0.95rem;
margin-bottom: 1rem;
}
.sidebar-contacts {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-bottom: 1rem;
}
.sidebar-contact-item {
background: rgba(255,255,255,.12);
border: 1px solid rgba(255,255,255,.25);
padding: 0.5rem 0.75rem;
border-radius: 8px;
font-size: 0.9rem;
text-align: center;
}
.sidebar-contact-item a {
color: #fff;
text-decoration: none;
word-break: break-all;
}
.sidebar-contact-item a:hover {
text-decoration: underline;
}
.sidebar-nav {
margin-top: 1rem;
}
.sidebar-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.sidebar-nav li {
margin: 0;
}
.sidebar-nav a {
display: block;
color: rgba(255,255,255,0.85);
padding: 0.65rem 1rem;
border-radius: 8px;
transition: all 0.2s;
text-decoration: none;
font-size: 0.95rem;
}
.sidebar-nav a:hover {
background: rgba(255,255,255,.15);
color: #fff;
text-decoration: none;
}
.sidebar-nav a.active {
background: rgba(255,255,255,.2);
color: #fff;
font-weight: 600;
}
main {
max-width: 1000px;
margin: 0 auto;
padding: 2rem 1rem 3rem;
}
section {
margin-bottom: 2.5rem;
scroll-margin-top: 20px;
}
h2 {
color: var(--brand);
font-size: 1.5rem;
margin: 0 0 1rem 0;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--brand-2);
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
@media (min-width:760px) {
.grid-2 {
grid-template-columns: 1fr 1fr;
}
}
.card {
background: var(--card);
border-radius: 12px;
padding: 1rem 1.1rem;
box-shadow: 0 2px 10px rgba(5,18,46,.06);
}
.research-card {
display: grid;
grid-template-columns: 280px 1fr;
gap: 1.5rem;
align-items: start;
background: var(--card);
border-radius: 12px;
padding: 1.2rem;
box-shadow: 0 2px 10px rgba(5,18,46,.06);
}
.research-card img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.research-content {
min-width: 0;
}
.row {
display: flex;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
}
.title {
font-weight: 700;
}
.project-title {
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 0.5rem;
color: var(--text);
}
.members {
color: var(--muted);
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.subtle {
color: var(--muted);
}
.bullets {
margin: .45rem 0 0 1.1rem;
}
.bullets li {
margin: .15rem 0;
}
.presentations {
margin-top: 0.75rem;
padding-top: 0.75rem;
border-top: 1px solid #e5e7eb;
}
.presentations-title {
font-weight: 600;
font-size: 0.9rem;
color: var(--brand);
margin-bottom: 0.4rem;
}
.kv {
display: flex;
gap: .5rem;
flex-wrap: wrap;
}
.kv .k {
color: var(--muted);
}
footer {
color: #9ca3af;
font-size: .9rem;
text-align: center;
padding: 2rem 1rem;
border-top: 1px solid #e5e7eb;
margin-top: 2rem;
}
footer a {
color: var(--brand-2);
font-weight: 600;
}
@media (max-width: 900px) {
.page-container {
grid-template-columns: 1fr;
}
.sidebar {
position: static;
height: auto;
}
.research-card {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="page-container">
<!-- Left Sidebar -->
<aside class="sidebar">
<div class="sidebar-header">
<img src="images/profile-rect.jpg" alt="Profile photo of Jinil Kim" class="profile-rect" />
<h1>Jinil Kim</h1>
<p class="affiliation">Seoul National University</p>
</div>
<div class="sidebar-contacts">
<div class="sidebar-contact-item">
<a href="mailto:haba6030@snu.ac.kr">haba6030@snu.ac.kr</a>
</div>
<div class="sidebar-contact-item">
<a href="https://linkedin.com/in/jinilkimpotato" target="_blank" rel="noopener">LinkedIn</a>
</div>
<div class="sidebar-contact-item">
<a href="https://github.com/haba6030" target="_blank" rel="noopener">GitHub</a>
</div>
<div class="sidebar-contact-item">
<a href="CV/main.pdf" target="_blank" rel="noopener">CV (May. 2026)</a>
</div>
</div>
<nav class="sidebar-nav">
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#research">Research</a></li>
<li><a href="#honors">Honors and Awards</a></li>
<li><a href="#scholarships">Scholarships</a></li>
<li><a href="#teaching">Teaching</a></li>
<li><a href="#experiences">Research Experiences</a></li>
</ul>
</nav>
</aside>
<!-- Right Content Area -->
<div>
<main>
<!-- About Me -->
<section id="about">
<h2>About Me</h2>
<div class="card">
<p style="margin:0">I aim to identify computational signatures in human brain and behavior, and translate them into personalized interventions and better AI learning systems.</p>
</div>
</section>
<!-- Education -->
<section id="education">
<h2>Education</h2>
<div class="grid">
<div class="card">
<div class="row">
<div><span class="title">Seoul National University</span> · Seoul, South Korea</div>
<div class="subtle">Mar 2021 – <span title="Expected Graduation">Exp. Feb 2027</span></div>
</div>
<div class="kv"><span class="k">Degrees:</span><span>B.A. Linguistics · B.A. Psychology · B.S. Computer Science</span></div>
<div class="subtle" style="margin-top:0.5rem">* Mandatory military service, Jul 2023 – Jan 2025</div>
</div>
<div class="card">
<div class="row">
<div><span class="title">The University of Hong Kong</span> · Hong Kong SAR</div>
<div class="subtle">Jun 2025 – Aug 2025</div>
</div>
<div>Summer Research Program, Faculty of Psychology</div>
</div>
</div>
</section>
<!-- Research -->
<section id="research">
<h2>Research</h2>
<div class="grid">
<!-- Project 1: Color Vision -->
<div class="research-card">
<a href="images/color-vision.png" target="_blank">
<img src="images/color-vision.png" alt="Color Vision fMRI Study" />
</a>
<div class="research-content">
<div class="row">
<div class="project-title">Development of a Personalized Color Vision Correction Display Filter Using fMRI-Based Neural Responses and Deep Learning</div>
<div class="subtle">Apr 2025 – Present</div>
</div>
<div class="members">Project Lead (Advisor: Prof. Jiook Cha)</div>
<ul class="bullets">
<li>Designed the full research pipeline: experiment design, data preprocessing, neural modeling, and optimization-based filter generation.</li>
<li>Analyzed inter-individual coherence and disparity of individuals with color vision deficiencies in neural color geometry using Procrustes alignment.</li>
<li>Funded by SNU Undergraduate Research Grant ($3,500).</li>
</ul>
<div class="presentations">
<div class="presentations-title">Conferences</div>
<ul class="bullets">
<li><strong>Kim, Jinil</strong>, Cho, A. M., Seo, J., Cha, J. (Jul 2026). <em>Inferring Individualized Color-Vision Distortions from fMRI Hue-Representation Geometry</em>. Poster accepted for presentation at the 2026 International Conference on Machine Learning (ICML) Workshop on Structured Data for Health.</li>
<li><strong>Kim, Jinil</strong>, Cho, M., Seo, J., Cha, J. (Jun 2026). <em>fMRI Decoding Reveals Intact Neural Color Representations in Color Vision Deficiency</em>. Poster accepted for presentation at the 2026 Organization for Human Brain Mapping (OHBM) Annual Meeting.</li>
</ul>
</div>
</div>
</div>
<!-- Project 2: Planning IRL -->
<div class="research-card">
<a href="images/planning-irl.png" target="_blank">
<img src="images/planning-irl.png" alt="Planning IRL Navigation" />
</a>
<div class="research-content">
<div class="row">
<div class="project-title">Inference of Latent Planning Depth in Human Pedestrian Navigation Using Planning-Aware Inverse Reinforcement Learning</div>
<div class="subtle">Sep 2025 – Present</div>
</div>
<div class="members">Research Analyst (Advisor: Prof. Woo-Young Ahn)</div>
<ul class="bullets">
<li>Developing a planning-aware inverse reinforcement learning framework to infer latent planning depth from human sequential decision-making.</li>
</ul>
</div>
</div>
<!-- Project 3: tDDM -->
<div class="research-card">
<a href="images/tddm.png" target="_blank">
<img src="images/tddm.png" alt="tDDM Emotion and Reward" />
</a>
<div class="research-content">
<div class="row">
<div class="project-title">A Time-Varying Drift Diffusion Model of Emotion and Reward Prediction Errors in Depression</div>
<div class="subtle">Jun 2025 – Present</div>
</div>
<div class="members">Project Lead (Advisor: Prof. Yuan-Wei Yao)</div>
<ul class="bullets">
<li>Developing a time-varying Drift Diffusion Model (tDDM) to investigate the hierarchical influence of emotion and reward prediction errors in social decision-making</li>
</ul>
<div class="presentations">
<div class="presentations-title">Presentations</div>
<ul class="bullets">
<li><strong>Kim, Jinil</strong>, Yao, Y. W. (Aug 2025). <em>Why Do Depressed Individuals Punish?: A Computational Investigation of Emotion Learning and Bias in Maladaptive Social Behavior</em>. Poster presented at the Summer Research Program Poster Session, University of Hong Kong.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Scholarships -->
<section id="scholarships">
<h2>Scholarships</h2>
<div class="grid">
<div class="card">
<div class="row"><div class="title">KOSAF Humanity 100 Years Undergraduate Scholarship</div><div class="subtle">Mar 2025 – Jul 2026</div></div>
<div class="subtle">Amount: $12,500 (KRW 17,000,000)</div>
</div>
<div class="card">
<div class="row"><div class="title">The University of Hong Kong Foundation for Educational Development and Research Scholarship</div><div class="subtle">Jun 2025 – Aug 2025</div></div>
<div class="subtle">Amount: $1,300 (HKD 10,000)</div>
</div>
<div class="card">
<div class="row"><div class="title">Superior Academic Performance scholarship</div><div class="subtle">Mar 2022, 2023; Sep 2022</div></div>
</div>
</div>
</section>
<!-- Honors & Awards -->
<section id="honors">
<h2>Honors and Awards</h2>
<div class="grid grid-2">
<div class="card">
<div class="row"><div class="title">Best Poster Award in SNU Undergrad Research Program (4th Place)</div><div class="subtle">Jan 2026</div></div>
</div>
<div class="card">
<div class="row"><div class="title">SNU Liberal Arts Competition (1st Place)</div><div class="subtle">Jul 2023</div></div>
</div>
</div>
</section>
<!-- Teaching -->
<section id="teaching">
<h2>Teaching</h2>
<div class="grid">
<div class="card">
<div class="row">
<div><span class="title">Teaching Assistant, Basic Computing (English)</span> · Seoul National University</div>
<div class="subtle">Mar 2026</div>
</div>
</div>
<div class="card">
<div class="row">
<div><span class="title">Teaching Assistant, Basic Computing (Korean)</span> · Seoul National University</div>
<div class="subtle">Sep 2025</div>
</div>
</div>
</div>
</section>
<!-- Research Experiences -->
<section id="experiences">
<h2>Research Experiences</h2>
<div class="grid">
<div class="card">
<div class="row">
<div><span class="title"><a href="https://ccs-lab.github.io/" target="_blank" rel="noopener">Computational Clinical Science Laboratory</a></span> · Seoul National University</div>
<div class="subtle">Apr – Jun 2025; Sep 2025 –</div>
</div>
<div class="subtle">Undergraduate RA (Advisor: Prof. Woo-Young Ahn)</div>
<ul class="bullets">
<li>Developed an Adversarial Inverse Reinforcement Learning (AIRL) model with interpretable parameters to capture individual differences in decision policies.</li>
<li>Designed a hierarchical multimodal model integrating EEG, behavioral, and app-based digital phenotype data to predict alcohol craving.</li>
</ul>
</div>
<div class="card">
<div class="row">
<div><span class="title"><a href="https://psychology.hku.hk/people/yuanwei_yao/" target="_blank" rel="noopener">Mental health, Internet, Neuroscience & Decision-making Lab</a></span> · University of Hong Kong</div>
<div class="subtle">Jun 2025 – Aug 2025</div>
</div>
<div class="subtle">Visiting Researcher (Advisor: Prof. Yuan-Wei Yao)</div>
<ul class="bullets">
<li>Developed a time-varying Drift Diffusion Model (tDDM) to investigate the hierarchical influence of emotion and reward prediction errors in social decision-making</li>
</ul>
</div>
</div>
</section>
</main>
<footer>
© 2026 Jinil Kim
</footer>
</div>
</div>
<script>
// Intersection Observer for active navigation highlighting
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('.sidebar-nav a');
const observerOptions = {
root: null,
rootMargin: '-20% 0px -70% 0px',
threshold: 0
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const id = entry.target.getAttribute('id');
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${id}`) {
link.classList.add('active');
}
});
}
});
}, observerOptions);
sections.forEach(section => observer.observe(section));
</script>
</body>
</html>