-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaboutus.html
More file actions
395 lines (361 loc) · 16.6 KB
/
aboutus.html
File metadata and controls
395 lines (361 loc) · 16.6 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | SphereLab</title>
<link rel="shortcut icon" href="./spherelab_icon.svg">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
background-color: #ffffff;
min-height: 100vh;
padding: 3rem 2rem;
}
body::before {
content: '';
position: fixed;
top: -150px;
right: -150px;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(106,202,207, 0.1);
z-index: -1;
}
body::after {
content: '';
position: fixed;
bottom: -100px;
left: -100px;
width: 200px;
height: 200px;
border-radius: 50%;
background-color: rgba(106,202,207, 0.1);
z-index: -1;
}
.container { max-width: 1200px; margin: 0 auto; }
.main-title {
font-size: clamp(1.5rem, 4.5vw, 2.5rem);
font-weight: 900;
margin-bottom: clamp(1rem, 2vh, 1rem);
letter-spacing: -0.02em;
position: relative;
cursor: pointer;
background: linear-gradient(to right, #65b4d3, #60cdc9, #977ff9);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background-size: 200% 100%;
animation: gradientMove 2s linear infinite;
}
.main-title::before {
content: '';
position: absolute;
top: -0.5rem;
left: -1.5rem;
width: clamp(1.5rem, 3vw, 3rem);
height: clamp(1.5rem, 3vw, 3rem);
background-color: #c2e8f6;
border-radius: 50%;
transition: transform 0.2s ease;
z-index: -1;
}
.main-title:hover::before { transform: scale(1.2); }
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.subtitle { position: fixed; top: 2rem; left: 2rem; cursor: pointer; text-decoration: none; z-index: 10;
display: inline-block;
}
.header { text-align: center; margin-bottom: 1rem; display: flex; flex-direction: column; align-items: center; }
.page-title {
font-size: clamp(2.5rem, 7vw, 4rem);
margin-bottom: 1rem;
position: relative;
display: inline-block;
font-weight: 900;
color: #3e3e3e;
}
.page-title::before {
content: '';
position: absolute;
top: -0.5rem;
left: -1rem;
width: clamp(2.5rem, 4vw, 3rem);
height: clamp(2.5rem, 4vw, 3rem);
background-color: #6acacf;
border-radius: 50%;
transition: transform 0.3s ease;
z-index: -1;
}
.page-title:hover::before { transform: scale(1.2); }
.intro {
max-width: 900px;
color: #555;
font-size: 1rem;
line-height: 1.6;
margin-top: 0.8rem;
text-align: justify;
text-align-last: left;
background: #f8fafc;
border-radius: 12px;
padding: 1.2rem 1.4rem;
}
/* Removed decorative pseudo-elements for a cleaner intro box */
/* Section title style consistent with research page */
.featured-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin: 1rem 0 0.5rem 0;
position: relative;
display: inline-block;
font-weight: 900;
color: #3e3e3e;
}
.value-title {
font-size: clamp(1.5rem, 4vw, 2rem);
margin-top: 0.75rem;
margin-bottom: 0rem;
position: relative;
display: inline-block;
font-weight: 900;
color: #3e3e3e;
}
/* Photo wall */
.wall-section { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.photo-wall { width: 100%; overflow: hidden; position: relative; }
.photo-strip {
display: flex;
gap: 1rem;
width: max-content;
animation: scrollLeft 60s linear infinite;
padding: 0.5rem 0;
}
.photo-strip.reverse { animation: scrollLeft 55s linear infinite; }
.photo-strip:hover { animation-play-state: paused; }
@keyframes scrollLeft {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
@keyframes scrollRight {
from { transform: translateX(-50%); }
to { transform: translateX(0); }
}
.photo {
width: 420px; height: 260px; object-fit: cover; border-radius: 12px; background: #f8fafc;
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
cursor: zoom-in;
}
/* Lightbox overlay */
.lightbox-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
display: none;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 2rem;
}
.lightbox-image {
max-width: 90vw;
max-height: 90vh;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
cursor: zoom-out;
}
/* Double-size override for the first wall */
.photo-strip.large .photo {
width: 840px;
height: 520px;
}
.legend { color: #666; font-size: 0.9rem; text-align: center; }
/* Buttons style matching paper buttons */
.paper-link {
color: #333; text-decoration: none; font-size: 0.85rem; display: inline-flex; align-items: center;
padding: 0.2rem 0.6rem; border-radius: 4px; background-color: #e8e8e8; transition: all 0.2s ease;
font-weight: 600; width: fit-content; border: none; cursor: pointer;
}
.paper-link:hover { background-color: #d8d8d8; color: #000; }
/* Button group for external resources */
.resource-links {
display: flex;
gap: 0.6rem;
flex-wrap: wrap;
justify-content: center;
margin-top: 0.6rem;
}
/* Button icon styling */
.paper-link { gap: 0.4rem; }
.paper-link .btn-icon {
display: inline-flex;
width: 1rem;
height: 1rem;
align-items: center;
justify-content: center;
}
.paper-link .btn-icon svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.paper-link .emoji-icon { font-size: 1.1rem; line-height: 1; }
/* Research values list */
.values-list {
max-width: 900px;
color: #555;
font-size: 1rem;
line-height: 1.6;
margin-top: 0.6rem;
text-align: left;
padding-left: 1.2rem;
}
.values-list li { margin: 0.05rem 0; }
/* Override intro alignment for values box */
.intro.values { text-align: left; text-align-last: left; }
/* Inline link style for research values section */
.intro.values a,
.values-list a {
color: #3b8084; /* closer to site blues */
text-decoration: none;
}
.intro.values a:hover,
.values-list a:hover {
color: #e67300; /* slightly darker on hover */
text-decoration: none;
}
@media (max-width: 768px) {
body { padding: 1.5rem 0.8rem; }
.subtitle { top: 0.8rem; left: 0.8rem; }
.intro { font-size: 0.9rem; padding: 0.8rem 0.8rem; text-align: justify; text-align-last: left; line-height: 1.5; }
.photo { width: 280px; height: 172px; }
.photo-strip { gap: 0.5rem; }
.value-title { font-size: clamp(1.1rem, 3.5vw, 1.4rem); margin-bottom: 0.8rem; }
.resource-links { gap: 0.4rem; }
.paper-link { font-size: 0.75rem; }
.page-title { margin-bottom: 1rem; }
}
</style>
</head>
<body>
<a href="index.html" class="subtitle">
<h1 class="main-title">SphereLab</h1>
</a>
<div class="container">
<div class="header">
<h1 class="page-title">About Us</h1>
<p class="intro values">
Officially founded by <a href="http://wyliu.com/">Weiyang Liu</a> in 2025, Scalable Principles for Learning and Reasoning Lab (SphereLab) is affiliated with the <a href="https://www.cse.cuhk.edu.hk/">Computer Science and Engineering Department</a> of <a href="https://www.cuhk.edu.hk/en/home">The Chinese University of Hong Kong</a> (CUHK). We are physically located at the Ho Sin Hang Engineering Building (SHB) on the beautiful Shatin campus in Hong Kong.
</p>
<p class="intro values">
SphereLab aims to advance the foundations and practice of machine learning and artificial intelligence.
We are inspired by simple yet scalable first principles, striving to discover and harness them to design powerful learning and reasoning algorithms. Through such principled approaches, we aim to create AI systems that are data-efficient, scalable, generalizable, and trustworthy.
Our recent research spans principled algorithms and systems for training large-scale foundation models, reliable reasoning in large language models, scalable generative modeling, and their applications in computer vision, natural language processing, and scientific discovery.
</p>
</div>
<div class="header">
<h2 class="value-title">Research Values</h2>
<div class="intro values">
<p>
SphereLab always believes in two research principles: (i) insight must precede application, and (ii) everything should be made as <a href="https://en.wikipedia.org/wiki/Occam%27s_razor">simple</a> as possible, but not simpler. Our core research values include:
</p>
<ul class="values-list">
<li>Focus on creating novel ideas, not publishing papers</li>
<li>Follow <a href="https://www.ias.edu/sites/default/files/library/UsefulnessHarpers.pdf">curiosity and passion</a>, not trends</li>
<li>Ideas are not owned, but come with debts to those who came before</li>
<li>Ideas become stronger when shared, discussed and criticized</li>
<li>Life is surprisingly short, so solve problems that interest and excite you most</li>
<li><a href="https://www.youtube.com/watch?v=7H2YvxefFro">It is good to be quick, but it is more important to be deep</li>
<li><a href="https://youtu.be/0B9hhOTYa_I">Think like an amateur, do as an expert</li>
<li><a href="https://www.youtube.com/watch?v=ji5_MqicxSo">This is not only about how to do research, but also how to live your life</a></li>
</ul>
</div>
</div>
<!-- Group Photos wall (duplicate) -->
<div class="wall-section">
<h2 class="featured-title">CUHK Campus</h2>
<div class="photo-wall">
<!-- Single strip (duplicated content for seamless loop) -->
<div class="photo-strip large">
<img class="photo" src="group_photo/cuhk1.jpg" alt="1">
<img class="photo" src="group_photo/cuhk2.jpg" alt="2">
<img class="photo" src="group_photo/cuhk3.jpg" alt="3">
<img class="photo" src="group_photo/cuhk4.jpg" alt="4">
<img class="photo" src="group_photo/cuhk5.jpg" alt="5">
<img class="photo" src="group_photo/cuhk6.jpg" alt="6">
<img class="photo" src="group_photo/cuhk7.jpg" alt="7">
<img class="photo" src="group_photo/cuhk8.jpg" alt="8">
<!-- duplicate for seamless scroll -->
<img class="photo" src="group_photo/cuhk1.jpg" alt="1">
<img class="photo" src="group_photo/cuhk2.jpg" alt="2">
<img class="photo" src="group_photo/cuhk3.jpg" alt="3">
<img class="photo" src="group_photo/cuhk4.jpg" alt="4">
<img class="photo" src="group_photo/cuhk5.jpg" alt="5">
<img class="photo" src="group_photo/cuhk6.jpg" alt="6">
<img class="photo" src="group_photo/cuhk7.jpg" alt="7">
<img class="photo" src="group_photo/cuhk8.jpg" alt="8">
</div>
</div>
</div>
<div class="wall-section">
<h2 class="featured-title">Group Photos</h2>
<div class="photo-wall">
<!-- Single strip (duplicated content for seamless loop) -->
<div class="photo-strip">
<img class="photo" src="member_avatar/weiyang_liu.jpg" alt="Weiyang Liu">
<img class="photo" src="member_avatar/longhui_yu.jpg" alt="Longhui Yu">
<img class="photo" src="member_avatar/zeju_qiu.jpg" alt="Zeju Qiu">
<img class="photo" src="member_avatar/kexuan_shi.jpg" alt="Kexuan Shi">
<img class="photo" src="member_avatar/he_guo.jpg" alt="He Guo">
<img class="photo" src="member_avatar/yangyi_huang.jpg" alt="Yangyi Huang">
<img class="photo" src="member_avatar/yamei_chen.jpg" alt="Yamei Chen">
<img class="photo" src="member_avatar/jiacheng_chen.jpg" alt="Jiacheng Chen">
<img class="photo" src="member_avatar/haoquan_zhang.jpg" alt="Haoquan Zhang">
<img class="photo" src="member_avatar/tim_z_xiao.jpg" alt="Tim Z. Xiao">
<img class="photo" src="member_avatar/zhouliang_yu.jpg" alt="Zhouliang Yu">
<!-- duplicate for seamless scroll -->
<img class="photo" src="member_avatar/weiyang_liu.jpg" alt="Weiyang Liu">
<img class="photo" src="member_avatar/longhui_yu.jpg" alt="Longhui Yu">
<img class="photo" src="member_avatar/zeju_qiu.jpg" alt="Zeju Qiu">
<img class="photo" src="member_avatar/kexuan_shi.jpg" alt="Kexuan Shi">
<img class="photo" src="member_avatar/he_guo.jpg" alt="He Guo">
<img class="photo" src="member_avatar/yangyi_huang.jpg" alt="Yangyi Huang">
<img class="photo" src="member_avatar/yamei_chen.jpg" alt="Yamei Chen">
<img class="photo" src="member_avatar/jiacheng_chen.jpg" alt="Jiacheng Chen">
<img class="photo" src="member_avatar/haoquan_zhang.jpg" alt="Haoquan Zhang">
<img class="photo" src="member_avatar/tim_z_xiao.jpg" alt="Tim Z. Xiao">
<img class="photo" src="member_avatar/zhouliang_yu.jpg" alt="Zhouliang Yu">
</div>
</div>
</div>
<!-- Lightbox for enlarged photos -->
<div id="lightbox" class="lightbox-overlay" role="dialog" aria-modal="true" aria-label="Enlarged photo">
<img id="lightbox-image" class="lightbox-image" alt="Enlarged group photo" />
</div>
</div>
</body>
<script>
// Simple lightbox for group photos
(function() {
const overlay = document.getElementById('lightbox');
const overlayImg = document.getElementById('lightbox-image');
const photos = document.querySelectorAll('.photo');
photos.forEach(img => {
img.addEventListener('click', () => {
overlayImg.src = img.src;
overlayImg.alt = img.alt || 'Enlarged group photo';
overlay.style.display = 'flex';
document.body.style.overflow = 'hidden';
});
});
function closeLightbox() {
overlay.style.display = 'none';
overlayImg.src = '';
document.body.style.overflow = '';
}
overlay.addEventListener('click', closeLightbox);
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeLightbox();
});
})();
</script>
</html>