-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
539 lines (478 loc) · 15.3 KB
/
index.html
File metadata and controls
539 lines (478 loc) · 15.3 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
536
537
538
539
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Wang Li - Postdoctoral Application Profile" />
<title>Wang Li, M.D. | Postdoctoral Application Profile</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;700;800&family=Merriweather:wght@400;700;900&display=swap');
:root {
--bg: #f4f7f3;
--surface: rgba(255, 255, 255, 0.86);
--ink: #142433;
--muted: #5b6b7a;
--line: rgba(20, 36, 51, 0.14);
--teal-1: #0d4e58;
--teal-2: #0c7882;
--radius: 18px;
--shadow: 0 20px 45px rgba(14, 42, 57, 0.14);
}
* { box-sizing: border-box; }
body {
margin: 0;
color: var(--ink);
font-family: "Archivo", "Segoe UI", sans-serif;
background:
radial-gradient(1000px 420px at -10% -6%, #d8ece4 0%, transparent 72%),
radial-gradient(900px 350px at 112% 0%, #fde2c8 0%, transparent 74%),
linear-gradient(155deg, #f6f8f4 0%, #edf3ef 100%);
min-height: 100vh;
}
.container {
width: min(1140px, 92vw);
margin: 24px auto 34px;
padding: 8px;
}
.hero {
position: relative;
overflow: hidden;
border-radius: 26px;
padding: 34px 30px 28px;
color: #effafc;
background: linear-gradient(126deg, #082e36 0%, var(--teal-1) 55%, var(--teal-2) 100%);
box-shadow: var(--shadow);
isolation: isolate;
}
.hero::after {
content: "";
position: absolute;
width: 320px;
height: 320px;
border-radius: 50%;
right: -100px;
top: -120px;
background: radial-gradient(circle, rgba(255,255,255,0.26), rgba(255,255,255,0));
z-index: -1;
}
.hero-photo-floating {
position: absolute;
right: 64px;
top: 86px;
width: 230px;
height: auto;
border-radius: 16px;
border: 2px solid rgba(255,255,255,.36);
box-shadow: 0 18px 30px rgba(0, 0, 0, .22);
background: rgba(255,255,255,.14);
z-index: 2;
}
.hero-top {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 18px;
flex-wrap: wrap;
}
.kicker {
margin: 0 0 8px;
letter-spacing: .14em;
text-transform: uppercase;
font-size: 12px;
font-weight: 700;
opacity: .92;
}
h1 {
margin: 0;
font-family: "Merriweather", serif;
font-size: clamp(32px, 5.4vw, 56px);
line-height: 1.08;
font-weight: 900;
}
.subtitle {
margin: 10px 0 0;
max-width: 760px;
font-size: clamp(15px, 2.1vw, 21px);
opacity: .96;
line-height: 1.45;
}
.meta-box {
min-width: 300px;
border: 1px solid rgba(255,255,255,.28);
background: rgba(255,255,255,.15);
border-radius: 14px;
padding: 12px 13px;
font-size: 13px;
line-height: 1.68;
backdrop-filter: blur(4px);
}
.meta-box a {
color: #f2fdff;
text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,.35);
}
.chips {
margin-top: 16px;
display: flex;
flex-wrap: wrap;
gap: 9px;
}
.chip {
border-radius: 999px;
padding: 8px 12px;
font-size: 12px;
border: 1px solid rgba(255,255,255,.25);
background: rgba(255,255,255,.14);
}
.grid {
margin-top: 16px;
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: 14px;
}
.card {
grid-column: span 12;
border-radius: var(--radius);
border: 1px solid var(--line);
background: var(--surface);
padding: 20px;
box-shadow: 0 8px 22px rgba(24, 44, 58, .07);
backdrop-filter: blur(6px);
}
.title-row {
display: flex;
align-items: baseline;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 12px;
}
h2 {
margin: 0;
font-family: "Merriweather", serif;
font-size: 24px;
font-weight: 700;
}
.title-en {
color: var(--muted);
font-size: 12px;
letter-spacing: .08em;
text-transform: uppercase;
font-weight: 700;
}
.overview-layout {
display: grid;
grid-template-columns: 1.3fr 1fr;
gap: 14px;
}
.summary {
margin: 0;
line-height: 1.76;
font-size: 15px;
color: #253849;
}
.stats {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
}
.stat {
border-radius: 12px;
border: 1px solid var(--line);
padding: 11px;
background: rgba(255,255,255,.72);
}
.stat strong {
display: block;
color: var(--teal-1);
font-size: 24px;
line-height: 1.1;
margin-bottom: 3px;
}
.stat span {
color: var(--muted);
font-size: 12px;
}
.timeline {
margin-top: 6px;
display: grid;
gap: 10px;
}
.stage {
position: relative;
border: 1px solid var(--line);
border-radius: 14px;
padding: 14px 14px 13px;
background: rgba(255,255,255,.72);
overflow: hidden;
}
.stage::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 6px;
height: 100%;
background: linear-gradient(180deg, var(--teal-2), #1697a3);
}
.stage-top {
display: flex;
justify-content: space-between;
gap: 10px;
align-items: baseline;
flex-wrap: wrap;
margin-bottom: 5px;
padding-left: 4px;
}
.stage-top h3 {
margin: 0;
color: var(--teal-1);
font-size: 17px;
font-family: "Merriweather", serif;
}
.period {
font-size: 12px;
color: var(--muted);
font-weight: 700;
letter-spacing: .02em;
background: #edf7f6;
border: 1px solid rgba(13, 78, 88, .2);
border-radius: 999px;
padding: 4px 9px;
}
.stage p {
margin: 0;
color: #2a3e51;
line-height: 1.62;
font-size: 14px;
padding-left: 4px;
}
.outputs {
margin: 8px 0 0;
padding-left: 22px;
color: #23384a;
line-height: 1.65;
font-size: 14px;
}
.outputs a {
color: var(--teal-1);
text-decoration: none;
border-bottom: 1px solid rgba(13, 78, 88, .35);
}
.outputs a:hover {
border-bottom-color: var(--teal-1);
}
.other {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.subcard {
border: 1px solid var(--line);
border-radius: 12px;
padding: 12px;
background: rgba(255,255,255,.74);
}
.subcard h3 {
margin: 0 0 8px;
font-size: 15px;
color: var(--teal-1);
}
.list {
margin: 0;
padding-left: 18px;
line-height: 1.7;
color: #2a3f52;
font-size: 14px;
}
.contact {
margin-top: 14px;
border-radius: 14px;
border: 1px solid rgba(192, 109, 23, .3);
background: linear-gradient(140deg, #fff0de, #fff6e8);
padding: 13px;
color: #5a3a17;
font-size: 14px;
line-height: 1.7;
}
.contact a {
color: #6b3f11;
text-decoration: none;
border-bottom: 1px solid rgba(107, 63, 17, .35);
font-weight: 700;
}
.reveal {
opacity: 0;
transform: translateY(14px);
animation: reveal .65s ease forwards;
}
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .16s; }
.d3 { animation-delay: .24s; }
.d4 { animation-delay: .32s; }
@keyframes reveal {
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 1200px) {
.hero-photo-floating {
width: 210px;
right: 42px;
top: 92px;
}
}
@media (max-width: 930px) {
.overview-layout { grid-template-columns: 1fr; }
.other { grid-template-columns: 1fr; }
.hero-photo-floating { display: none; }
}
@media (max-width: 620px) {
.container { width: 95vw; margin: 12px auto 18px; }
.hero { border-radius: 20px; padding: 22px 16px 18px; }
.card { padding: 16px 13px; }
h2 { font-size: 21px; }
.stats { grid-template-columns: 1fr; }
.meta-box { width: 100%; min-width: 0; }
}
</style>
</head>
<body>
<main class="container">
<header class="hero reveal">
<div class="hero-top">
<div>
<p class="kicker">Postdoctoral Application Profile</p>
<h1>Wang Li, M.D.</h1>
<p class="subtitle">Sports Medicine Doctoral Program (8-year track), West China Hospital, Sichuan University (Sep 2018 - Jun 2026)<br/>Research focus: AI x Sports Medicine (NLP / CV / Multimodal Models)</p>
</div>
<div class="meta-box">
<div>Doctoral research and specialty clinical training: Sep 2023 - Jun 2026</div>
<div>Google Scholar: <a target="_blank" rel="noopener" href="https://scholar.google.com/citations?user=Kqj-3jkAAAAJ&hl">Scholar Profile</a></div>
</div>
</div>
<div class="chips">
<span class="chip">H-index: 8</span>
<span class="chip">Total citations: 607</span>
<span class="chip">ESI Hot Paper / Highly Cited: 1</span>
</div>
<img class="hero-photo-floating" src="./图片.png" alt="Portrait of Wang Li, M.D." />
</header>
<section class="grid">
<article class="card reveal d2">
<div class="title-row">
<h2>AI-Related Research Experience</h2>
<span class="title-en">Research Timeline</span>
</div>
<div class="timeline">
<section class="stage">
<div class="stage-top">
<h3>Phase 1: AR/VR for Sports Rehabilitation</h3>
<span class="period">Nov 2022 - Dec 2023</span>
</div>
<p>Initial entry into interdisciplinary research, focusing on digital rehabilitation and translational feasibility in sports medicine.</p>
<ul class="outputs">
<li>Co-authored a book chapter: <a target="_blank" rel="noopener" href="https://link.springer.com/rwe/10.1007/978-3-642-36801-1_315-1">Springer chapter</a></li>
<li>Clinical pilot protocol and publication output (JCR Q1, IF 2.8): <a target="_blank" rel="noopener" href="https://pubmed.ncbi.nlm.nih.gov/38057846/">PubMed</a></li>
<li>Core capability gained: literature review and foundational AI concepts</li>
</ul>
</section>
<section class="stage">
<div class="stage-top">
<h3>Phase 2: LLM for Knee OA Management</h3>
<span class="period">Jun 2023 - Mar 2026</span>
</div>
<p>Developed LLM-based evaluation and RAG pipelines for clinical-guideline consistency and domain-specific QA performance.</p>
<ul class="outputs">
<li>npj Digital Medicine - Prompt engineering inconsistency and reliability with the evidence-based guideline for LLMs (JCR Q1, IF 15.1, ESI Hot Paper / Highly Cited): <a target="_blank" rel="noopener" href="https://www.nature.com/articles/s41746-024-01029-4">paper link</a></li>
<li>JMIR - DocOA: Evaluating and Enhancing Large Language Models Performance in Domain-Specific Medicine (JCR Q1, IF 6.0): <a target="_blank" rel="noopener" href="https://www.jmir.org/2024/1/e58158">paper link</a></li>
<li>Project manager, OpenCompass MedBench: <a target="_blank" rel="noopener" href="https://medbench.opencompass.org.cn/home">project page</a></li>
<li>Clinical pilot registration based on LLM application: ChiCTR2500107285</li>
<li>Core capability gained: programming and evaluation AI</li>
</ul>
</section>
<section class="stage">
<div class="stage-top">
<h3>Phase 3: LLaVA-OA: Multimodal Diagnostic Capability Evaluation</h3>
<span class="period">Mar 2025 - Jan 2026</span>
</div>
<p>Evaluated component-level training strategies of multimodal LLMs to quantify each module's contribution in medical image classification tasks.</p>
<ul class="outputs">
<li>Project repository: <a target="_blank" rel="noopener" href="https://github.com/wanglihx/LLaVA-OA?tab=readme-ov-file">GitHub / LLaVA-OA</a></li>
<li>Core capability gained: model training and reproducible engineering experiments</li>
</ul>
</section>
<section class="stage">
<div class="stage-top">
<h3>Phase 4: SAM4Dcap: Training-Free Biomechanical Twin System</h3>
<span class="period">Nov 2025 - Present</span>
</div>
<p>Built a training-free pipeline using monocular video and SAM 3D Body for human pose estimation and biomechanical analysis.</p>
<ul class="outputs">
<li>Project repository: <a target="_blank" rel="noopener" href="https://github.com/wanglihx/SAM4Dcap-core">GitHub / SAM4Dcap-core</a></li>
<li>Core capability gained: full-stack integration and vibe coding</li>
</ul>
</section>
</div>
</article>
<article class="card reveal d3">
<div class="title-row">
<h2>International Exchange</h2>
<span class="title-en">Global Academic Exposure</span>
</div>
<div class="timeline">
<section class="stage">
<div class="stage-top">
<h3>Cambridge University, UK</h3>
<span class="period">2019</span>
</div>
<p>Two-week new engineering visiting study (computer science and materials science).</p>
</section>
<section class="stage">
<div class="stage-top">
<h3>St George's Hospital, UK</h3>
<span class="period">2024</span>
</div>
<p>Two-week clinical rotation program.</p>
</section>
<section class="stage">
<div class="stage-top">
<h3>Università Cattolica del Sacro Cuore, Italy</h3>
<span class="period">2025</span>
</div>
<p>Sports Medicine and Cardiovascular Health course (2 weeks, 6 ECTS credits).</p>
</section>
</div>
</article>
<article class="card reveal d4">
<div class="title-row">
<h2>Additional</h2>
<span class="title-en">Skills and Interests</span>
</div>
<div class="other">
<section class="subcard">
<h3>Skills and Credentials</h3>
<ul class="list">
<li>Programming: Python, PyTorch; experience with Linux, large-scale data processing, and cloud-based training</li>
<li>National Licensed Physician Qualification</li>
<li>English: CET-6 (545), IELTS (6.5)</li>
</ul>
</section>
<section class="subcard">
<h3>Personal Interests</h3>
<ul class="list">
<li>Amateur Go (2-dan)</li>
<li>Basketball and swimming</li>
</ul>
</section>
</div>
<section class="contact">
<strong>Contact</strong><br />
Email: <a href="mailto:wangli1@stu.scu.edu.cn">wangli1@stu.scu.edu.cn</a>
</section>
</article>
</section>
</main>
</body>
</html>