-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
475 lines (399 loc) · 15.4 KB
/
index.html
File metadata and controls
475 lines (399 loc) · 15.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo/log_logo.png" type="image/png">
<title>Lee Optimization Group</title>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', system-ui, sans-serif;
color: #111;
background: #FAF8F5;
min-height: 100vh;
}
.top-rule {
height: 3px;
background: linear-gradient(90deg, #1B3A8A 0%, #3B6FD4 60%, #93A8D8 100%);
}
.inner {
max-width: 800px;
margin: 0 auto;
padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 32px) clamp(36px, 5vw, 60px);
}
header {
padding-bottom: 28px;
margin-bottom: 40px;
border-bottom: 1px solid #e2e6f0;
}
.lab-name {
font-family: 'EB Garamond', Georgia, serif;
font-size: clamp(1.7em, 5vw, 2.6em);
font-weight: 500;
color: #111;
letter-spacing: -0.01em;
line-height: 1;
display: block;
margin-bottom: 20px;
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: clamp(10px, 3vw, 24px);
}
nav a {
text-decoration: none;
color: #6b7280;
font-size: 1em;
font-weight: 400;
letter-spacing: 0.01em;
transition: color 0.15s;
}
nav a:hover { color: #1B3A8A; }
nav a.active { color: #111; font-weight: 600; }
.nav-drawer a.active { color: #111; font-weight: 600; }
main img.lab-photo {
width: 100%;
height: auto;
display: block;
margin-bottom: 24px;
}
.intro {
font-size: 0.93em;
line-height: 1.8;
color: #374151;
margin-bottom: 40px;
text-align: justify;
}
.intro a { color: #1B3A8A; text-decoration: none; }
.intro a:hover { text-decoration: underline; }
h3 {
font-family: 'EB Garamond', Georgia, serif;
font-size: 1.3em;
font-weight: 500;
letter-spacing: 0;
color: #374151;
margin-bottom: 14px;
margin-top: 36px;
}
.news-list {
margin: 0;
padding: 0;
}
.news-item {
display: flex;
gap: 20px;
align-items: baseline;
margin-bottom: 10px;
}
.news-date {
font-size: 0.8em;
font-weight: 400;
color: #9ca3af;
min-width: 64px;
flex-shrink: 0;
}
.news-content {
text-align: justify;
font-size: 0.88em;
color: #374151;
line-height: 1.65;
}
.news-content a { color: #1B3A8A; text-decoration: none; }
.news-content a:hover { text-decoration: underline; }
.news-content em { font-style: normal; font-weight: 600; color: inherit; }
p.ack {
font-size: 0.88em;
color: #374151;
line-height: 1.65;
margin-top: 0;
text-align: justify;
}
.sponsor-logos {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
column-gap: 20px;
row-gap: 4px;
margin-top: 20px;
background: #fff;
border-radius: 10px;
border: 1px solid #e8e4dd;
padding: 4px 16px;
width: fit-content;
margin-left: auto;
margin-right: auto;
}
.sponsor-card {
display: flex;
align-items: center;
justify-content: center;
}
.sponsor-card img {
width: 64px;
height: 64px;
object-fit: contain;
}
footer {
margin-top: 52px;
padding-top: 20px;
border-top: 1px solid #e2e6f0;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 0.75em;
color: #9ca3af;
}
.footer-logos {
display: flex;
align-items: center;
gap: 14px;
}
.footer-logos img {
height: 28px;
width: auto;
object-fit: contain;
opacity: 1;
}
.menu-toggle {
display: none;
background: #FAF8F5;
border: 1px solid #e2e6f0;
border-radius: 6px;
font-size: 1.3em;
cursor: pointer;
color: #374151;
padding: 4px 8px;
line-height: 1;
}
@media (max-width: 640px) {
.inner {
padding: 28px 18px 40px;
}
.lab-name {
font-size: 1.7em;
}
header {
padding-bottom: 4px;
margin-bottom: 16px;
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: space-between;
flex-wrap: nowrap;
}
.menu-toggle {
display: block;
}
nav {
display: none;
flex-direction: column;
align-items: flex-start;
gap: 10px;
padding-top: 12px;
}
nav.open {
display: flex;
}
h2, h3 {
margin-bottom: 6px;
margin-top: 24px;
}
.news-item {
flex-direction: column;
gap: 6px;
}
.footer-logos img {
height: 18px;
}
.news-date {
min-width: unset;
}
.sponsor-logos, .collab-logos {
width: 100%;
}
body {
font-size: 14px;
}
p, .intro, .news-content, p.ack, .section-text {
text-align: left;
font-size: 0.9em;
}
.news-date {
font-size: 0.78em;
}
}
/* Drawer */
.nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.3);
z-index: 999;
}
.nav-drawer {
position: fixed;
top: 0;
right: -280px;
width: 240px;
height: 100vh;
background: #FAF8F5;
box-shadow: -4px 0 24px rgba(0,0,0,0.12);
z-index: 1000;
transition: right 0.3s ease;
padding: 64px 32px 40px;
display: flex;
flex-direction: column;
gap: 20px;
}
.nav-drawer.open {
right: 0;
}
.nav-overlay.open {
display: block;
}
.drawer-close {
position: absolute;
top: 20px;
right: 20px;
background: none;
border: none;
font-size: 1.4em;
cursor: pointer;
color: #374151;
line-height: 1;
}
.nav-drawer a {
text-decoration: none;
color: #374151;
font-size: 1.05em;
font-weight: 400;
}
.nav-drawer a:hover {
color: #1B3A8A;
}
</style>
</head>
<body>
<div class="inner">
<header>
<span class="lab-name">Lee Optimization Group</span>
<button class="menu-toggle" aria-label="Menu">☰</button>
<nav>
<a href="index.html" class="active">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="group.html">Members</a>
<a href="hiring.html">Hiring</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<img src="lab_photo.png" alt="Lab Photo" class="lab-photo">
<p class="intro">
We pursue research in machine learning and optimization.
To this end, we develop theories and algorithms using computational and mathematical tools.
Our ultimate goal is to provide robust and provable solutions to challenging problems in artificial intelligence, particularly those in large-scale settings.
We are passionate about translating our findings into practical applications that can benefit society.
For further details on our research directions and ongoing projects, please refer to the
<a href="research.html">Research</a>.
</p>
<h3>Recent News</h3>
<div class="news-list">
<div class="news-item">
<span class="news-date">Feb 2026</span>
<span class="news-content">🤝 Our lab has been selected for the "Early-Career Researcher Infrastructure Support Program" (NRF) — one of the most competitive grants in Korea. With <em>500M KRW</em> in funding, we will build a high-performance compute infrastructure to power our research on extreme compression of hyperscale AI foundation models.</span>
</div>
<div class="news-item">
<span class="news-date">Feb 2026</span>
<span class="news-content">📃 Our new paper is now available on <a href="https://arxiv.org/abs/2602.18181v1" target="_blank">arXiv</a>! In this work, We introduce SeedFlood, a decentralized LLM training framework that enables model-size–independent communication cost and perfect consensus.</span>
</div>
<div class="news-item">
<span class="news-date">Feb 2026</span>
<span class="news-content">📃 Our new paper is now available on <a href="https://www.arxiv.org/abs/2602.03515" target="_blank">arXiv</a>! In this work, we propose a basis rotation approach to effectively address the gradient staleness problem in asynchronous pipeline parallelism.</span>
</div>
<div class="news-item">
<span class="news-date">Feb 2026</span>
<span class="news-content">✈️ Kwanhee started as a visiting student researcher in the <a href="https://daslab.pages.ista.ac.at/" target="_blank">Dan Alistarh Group</a> at <a href="https://ist.ac.at/en/home/" target="_blank">ISTA</a>.</span>
</div>
<div class="news-item">
<span class="news-date">Jan 2026</span>
<span class="news-content">🎓 Our paper on extreme LLM sparsity (<a href="https://arxiv.org/abs/2510.01650" target="_blank">ELSA</a>) has been accepted to ICLR 2026.</span>
</div>
<div class="news-item">
<span class="news-date">Nov 2025</span>
<span class="news-content">🏆 Dongyeop recived the <a href="https://www.qualcomm.com/research/university-relations/innovation-fellowship/2025-south-korea" target="_blank">Qualcomm Innovation Fellowship Korea 2025</a>.</span>
</div>
<!-- <div class="news-item">
<span class="news-date">Nov 2025</span>
<span class="news-content">🏆 Our new paper on extreme LLM sparsity (<a href="https://arxiv.org/abs/2510.01650" target="_blank">ELSA</a>) won Best Paper Award at JKAIA 2025.</span>
</div> -->
<!-- <div class="news-item">
<span class="news-date">Nov 2025</span>
<span class="news-content">🏆 Hyunji recived NRF Fellowship.</span>
</div> -->
<!-- <div class="news-item">
<span class="news-date">Nov 2025</span>
<span class="news-content">🎓 We had 2 papers (<a href="https://arxiv.org/abs/2510.25798" target="_blank">MemEIC</a> and <a href="https://arxiv.org/abs/2505.16705" target="_blank">An Analysis of Impact of Noisy Annotations on Concept Bottleneck Models</a>) accepted to NeurIPS 2025.</span>
</div> -->
</div>
<h3>Acknowledgements</h3>
<p class="ack">
Our research is generously supported by multiple organizations including government agencies
(NRF, IITP), industry (Google, Samsung, Naver, Intel), and academic institutions
(POSTECH, Yonsei).
</p>
<div class="sponsor-logos">
<div class="sponsor-card"><img src="logo/nrf_logo.jpg" alt="NRF" style="width:38px;height:38px;"></div>
<div class="sponsor-card"><img src="logo/iitp_logo.png" alt="IITP" style="width:52px;height:52px;"></div>
<div class="sponsor-card"><img src="logo/google_logo.svg" alt="Google"></div>
<div class="sponsor-card"><img src="logo/samsung_logo.svg" alt="Samsung"></div>
<div class="sponsor-card"><img src="logo/naver_logo.svg" alt="Naver" style="width:56px;height:56px;"></div>
<div class="sponsor-card"><img src="logo/intel_logo.svg" alt="Intel" style="width:42px;height:42px;"></div>
<div class="sponsor-card"><img src="logo/postech_logo2.jpg" alt="POSTECH" style="width:52px;height:52px;"></div>
<div class="sponsor-card"><img src="logo/yonsei_logo.png" alt="Yonsei" style="width:38px;height:38px;"></div>
</div>
</main>
<footer>
<span>© 2026 LOG. All rights reserved.</span>
<div class="footer-logos">
<a href="https://www.postech.ac.kr" target="_blank"><img src="logo/postech_logo.png" alt="POSTECH"></a>
<a href="https://ai.postech.ac.kr" target="_blank"><img src="logo/gsai_logo.png" alt="GSAI"></a>
<a href="https://cse.postech.ac.kr" target="_blank"><img src="logo/cs_logo.png" alt="CS"></a>
<img src="logo/log_logo.png" alt="LOG">
</div>
</footer>
</div>
<div class="nav-overlay" id="navOverlay"></div>
<div class="nav-drawer" id="navDrawer">
<button class="drawer-close" id="drawerClose">✕</button>
<a href="index.html" class="active">Home</a>
<a href="research.html">Research</a>
<a href="publications.html">Publications</a>
<a href="group.html">Members</a>
<a href="hiring.html">Hiring</a>
<a href="contact.html">Contact</a>
</div>
<script>
var toggle = document.querySelector('.menu-toggle');
var drawer = document.getElementById('navDrawer');
var overlay = document.getElementById('navOverlay');
var close = document.getElementById('drawerClose');
function openDrawer() {
drawer.classList.add('open');
overlay.classList.add('open');
}
function closeDrawer() {
drawer.classList.remove('open');
overlay.classList.remove('open');
}
toggle.addEventListener('click', function() { drawer.classList.contains('open') ? closeDrawer() : openDrawer(); });
close.addEventListener('click', closeDrawer);
overlay.addEventListener('click', closeDrawer);
</script>
</body>
</html>