-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
669 lines (583 loc) ยท 26 KB
/
Copy pathindex.html
File metadata and controls
669 lines (583 loc) ยท 26 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
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Renjun Xu - AI Research Portfolio</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
line-height: 1.6;
color: #24292e;
background: #0d1117;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: #161b22;
border-radius: 6px;
overflow: hidden;
margin-top: 2rem;
margin-bottom: 2rem;
border: 1px solid #30363d;
}
header {
background: linear-gradient(135deg, #1f6feb 0%, #388bfd 100%);
color: white;
padding: 3rem 2rem;
text-align: center;
}
.profile-section {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
margin-bottom: 1.5rem;
}
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
border: 3px solid rgba(255, 255, 255, 0.3);
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 600;
}
.tagline {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 1rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
}
.social-link {
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 6px;
transition: all 0.3s;
font-size: 0.9rem;
}
.social-link:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
.contact-info {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.9);
}
nav {
background: #0d1117;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid #30363d;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
padding: 0 2rem;
}
nav a {
color: #c9d1d9;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 6px;
transition: all 0.3s;
font-weight: 500;
}
nav a:hover {
background: #21262d;
color: #58a6ff;
}
main {
padding: 2rem;
}
.section {
margin-bottom: 3rem;
background: #0d1117;
padding: 2rem;
border-radius: 6px;
border: 1px solid #30363d;
}
.section h2 {
color: #c9d1d9;
font-size: 1.75rem;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #1f6feb;
display: flex;
align-items: center;
gap: 0.5rem;
}
.section h3 {
color: #58a6ff;
font-size: 1.25rem;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
.section p, .section li {
color: #8b949e;
line-height: 1.8;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin: 2rem 0;
}
.stat-card {
background: linear-gradient(135deg, #1f6feb, #388bfd);
color: white;
padding: 1.5rem;
border-radius: 6px;
text-align: center;
border: 1px solid #30363d;
}
.stat-number {
font-size: 2rem;
font-weight: bold;
margin-bottom: 0.5rem;
}
.highlight-box {
background: #21262d;
border-left: 3px solid #1f6feb;
padding: 1.5rem;
border-radius: 6px;
margin: 1rem 0;
}
.highlight-box p {
color: #c9d1d9;
}
.research-item {
background: #21262d;
padding: 1.5rem;
margin-bottom: 1rem;
border-radius: 6px;
border-left: 3px solid #58a6ff;
}
.research-title {
color: #58a6ff;
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.research-venue {
color: #f85149;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.research-desc {
color: #8b949e;
margin-top: 0.5rem;
}
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.tech-category {
background: #21262d;
padding: 1.5rem;
border-radius: 6px;
border: 1px solid #30363d;
}
.tech-category h4 {
color: #58a6ff;
margin-bottom: 1rem;
font-size: 1.1rem;
}
.tech-tag {
display: inline-block;
background: #1f6feb;
color: white;
padding: 0.3rem 0.8rem;
border-radius: 6px;
margin: 0.2rem;
font-size: 0.85rem;
}
.repo-card {
background: #21262d;
padding: 1.5rem;
border-radius: 6px;
margin-bottom: 1rem;
border: 1px solid #30363d;
transition: all 0.3s;
}
.repo-card:hover {
border-color: #58a6ff;
transform: translateY(-2px);
}
.repo-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.repo-name {
color: #58a6ff;
font-weight: 600;
font-size: 1.1rem;
}
.repo-stats {
display: flex;
gap: 1rem;
margin-top: 1rem;
color: #8b949e;
font-size: 0.9rem;
}
.code-example {
background: #0d1117;
border: 1px solid #30363d;
border-radius: 6px;
padding: 1rem;
margin: 1rem 0;
overflow-x: auto;
}
.code-example code {
color: #c9d1d9;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
}
footer {
background: #0d1117;
color: #8b949e;
text-align: center;
padding: 2rem;
border-top: 1px solid #30363d;
}
@media (max-width: 768px) {
.container {
margin: 1rem;
border-radius: 6px;
}
header {
padding: 2rem 1rem;
}
h1 {
font-size: 1.75rem;
}
.profile-section {
flex-direction: column;
}
nav ul {
gap: 1rem;
}
main {
padding: 1rem;
}
.section {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="profile-section">
<div class="profile-img">๐ง </div>
<div>
<h1>Dr. Renjun XU</h1>
<div class="tagline">Reliable Foundation Models & Scientific AI</div>
<div class="subtitle" style="font-size: 1rem; opacity: 0.85; margin-top: 0.5rem;">
Zhejiang University, ZJU100 Young Professor & Deputy Director | Former Senior Director, Global Data & AI (VISA)
</div>
<div class="contact-info">
<div class="contact-item">
<a href="mailto:xu at tensense.org" class="social-link">
<span>๐ง</span>
<span>Contact: xu at tensense dot org</span>
</a>
</div>
<div class="social-link">
<span>๐๏ธ</span>
<span>Zhejiang University</span>
</div>
<div class="contact-item">
<a href="https://github.com/scienceaix/deepresearch" class="social-link">
<span>๐ป</span>
<span>GitHub</span>
</a>
</div>
</div>
</div>
</header>
<nav>
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#research">Research Areas</a></li>
<li><a href="#publications">Key Publications</a></li>
<li><a href="#projects">Open Source</a></li>
<li><a href="#technical">Technical Stack</a></li>
<li><a href="#contact">Connect</a></li>
</ul>
</nav>
<main>
<section id="overview" class="section">
<h2>๐ฏ Research Leadership Profile</h2>
<div class="highlight-box">
<p>An AI research scientist and physicist with 15+ years experience bridging cutting-edge machine learning research and large-scale applications, making our models be more reliable and OOD generalizable. Former <strong>Senior Director of Global Data and AI at VISA</strong> leading global AI initiatives serving 3B+ users, and currently <strong>ZJU100 Young Professor & Deputy Director at Zhejiang University</strong> in China. Led international research teams, published 30+ papers in top venues (CVPR, NeurIPS, IJCAI, Nature Communications), and secured $1.2M+ in competitive research funding. Research adopted by major AI labs and cited by multiple IEEE fellows with work reaching multiple ESI highly cited status.</p>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">30+</div>
<div>Top-Tier Publications</div>
</div>
<div class="stat-card">
<div class="stat-number">2</div>
<div>ESI Highly Cited Papers in 2025</div>
</div>
<div class="stat-card">
<div class="stat-number">3B</div>
<div>Users Impacted at VISA</div>
</div>
<div class="stat-card">
<div class="stat-number">1B-100B</div>
<div>Multi-Scale Large Foundation Model Development</div>
</div>
</div>
</section>
<section id="research" class="section">
<h2>๐ฌ Research Areas</h2>
<h3>Foundation Models & Advanced ML</h3>
<div class="highlight-box">
<p><strong>Large Language Models:</strong> Co-developed from 1B to 100B parameter foundation models with novel reasoning architectures. Research on mathematical reasoning, rule-based computation, and reliability in LLM outputs.</p>
<p><strong>Model Generalization:</strong> Revolutionary optimal transport-based domain adaptation methods (CVPR 2020, 200+ citations). Solved critical transfer learning challenges enabling models to generalize across domains.</p>
<p><strong>Multimodal AI:</strong> Novel MetaRuleReasoner framework and multimodal logical reasoning chains across text, image, and structured data.</p>
</div>
<h3>AI for Scientific Discovery</h3>
<div class="highlight-box">
<p><strong>Materials Science:</strong> S2SNet - First AI achieving 92% accuracy in superconductor discovery. Published in IJCAI 2022 and NeurIPS 2022.</p>
<p><strong>Chemistry & Biology:</strong> Comprehensive survey of scientific LLMs (ACM Computing Surveys, IF: 23.8). Retrosynthesis prediction using iterative string editing (Nature Communications).</p>
<p><strong>Physics-Informed Neural Networks:</strong> E(2)-equivariant vision transformers leveraging group theory. Spatial coherence instructed swin transformer applied for universal holographic imaging.</p>
</div>
<h3>Production ML Systems</h3>
<div class="highlight-box">
<p><strong>Recommendation Systems:</strong> Novel time-series recommendation addressing dynamic missing data (MNAR) challenges. Published in IEEE TKDE (CCF-A, IF: 11.6).</p>
<p><strong>Enterprise Applications:</strong> Full lifecycle user behavior modeling for e-commerce (KDD 2023, CCF-A). Scalable systems serving millions of users.</p>
</div>
</section>
<section id="publications" class="section">
<h2>๐ Key Publications</h2>
<div class="research-item">
<div class="research-title">Reliable Weighted Optimal Transport for Unsupervised Domain Adaptation</div>
<div class="research-venue">CVPR 2020 (CCF-A) | 200+ Citations | World AI Conference Outstanding Youth Paper Award</div>
<div class="research-desc">Revolutionary method solving model transfer challenges using optimal transport theory. Collaboration with Stanford University and Microsoft Research. </div>
</div>
<div class="research-item">
<div class="research-title">Joint Partial Optimal Transport for Open Set Domain Adaptation</div>
<div class="research-venue">IJCAI 2020 (CCF-A) | 50+ Citations </div>
<div class="research-desc">The first optimal transport method for open set domain adaptation. Collaboration with Stanford University and Microsoft Research. </div>
</div>
<div class="research-item">
<div class="research-title">Personalized Federated Learning with Adaptive Batchnorm for Healthcare</div>
<div class="research-venue">IEEE Transactions on Big Data | ESI Highly Cited </div>
<div class="research-desc">A personalized federated learning method that handles non-IID healthcare data. Collaboration with Microsoft Research. </div>
</div>
<div class="research-item">
<div class="research-title">S2SNet: A Pretrained Neural Network for Superconductivity Discovery</div>
<div class="research-venue">IJCAI 2022 (CCF-A)</div>
<div class="research-desc">First AI model achieving 92% accuracy in superconductor prediction. Breakthrough application of deep learning to materials discovery.</div>
</div>
<div class="research-item">
<div class="research-title">Retrosynthesis Prediction with an Iterative String Editing Model</div>
<div class="research-venue">Nature Communications 2024 (IF: 15.7)</div>
<div class="research-desc">Novel approach to chemical synthesis planning using iterative string editing. Interdisciplinary collaboration advancing computational chemistry.</div>
</div>
<div class="research-item">
<div class="research-title">Scientific Large Language Models: A Survey on Biological & Chemical Domains</div>
<div class="research-venue">ACM Computing Surveys 2025 (IF: 23.8)</div>
<div class="research-desc">Comprehensive survey of AI for scientific discovery, covering foundation models in biology, chemistry, and materials science.</div>
</div>
<div class="research-item">
<div class="research-title">Do Large Language Models Truly Grasp Addition? A Rule-Focused Diagnostic Using Two-Integer Arithmetic</div>
<div class="research-venue">EMNLP 2025</div>
<div class="research-desc">Revealing current LLMs though succeed in numeric accuracy yet fail core arithmetic computation (like commutativity, symbolic invariance, and scaling). Collaboration with Westlake University.</div>
</div>
<div class="research-item">
<div class="research-title">MetaRuleReasoner: Beyond Chain-of-Thought Reasoning</div>
<div class="research-venue">Submitted to ICLR 2026</div>
<div class="research-desc">Neural rule-based reasoning framework achieving 100% accuracy for reliable mathematical computation. Addresses fundamental limitations in LLM reasoning.</div>
</div>
<div class="highlight-box">
<p><strong>Full Publication List:</strong> 30+ papers in CVPR, NeurIPS, IJCAI, KDD, EMNLP, ACL, UAI, Nature Communications, ACM Computing Surveys, IEEE TKDE, and other premier venues. Multiple work reaching ESI highly cited status.</p>
</div>
</section>
<section id="projects" class="section">
<h2>๐ป Open Source & Code Repositories</h2>
<div class="repo-card">
<div class="repo-header">
<a href="https://github.com/scienceaix/deepresearch">
<span class="repo-name">๐ deepresearch</span>
</a>
</div>
<p style="color: #8b949e;">Comprehensive survey of deep research systems, methodologies, and applications. Followed by researchers at Google DeepMind, leading universities, and major tech companies.</p>
<div class="repo-stats">
<span>โญ 400+ stars</span>
<span>๐ Actively maintained</span>
<span>๐ arXiv:2506.12594</span>
</div>
</div>
<div class="repo-card">
<div class="repo-header">
<a href="https://github.com/supercond/S2SNet">
<span class="repo-name">s2snet-superconductor</span>
</a>
</div>
<p style="color: #8b949e;">Pre-trained neural network for superconductivity discovery achieving 92% accuracy. IJCAI 2022 research implementation.</p>
<div class="repo-stats">
<span>๐ IJCAI 2022</span>
<span>โ๏ธ Materials Science</span>
<span>๐ฏ 92% Accuracy</span>
</div>
</div>
<div class="repo-card">
<div class="repo-header">
<a href="https://github.com/scienceaix/MetaRuleReasoner">
<span class="repo-name">metarule-reasoner</span>
</a>
</div>
<p style="color: #8b949e;">Neural rule-based reasoning for reliable mathematical computation. Beyond chain-of-thought approaches with 100% accuracy guarantee.</p>
<div class="repo-stats">
<span>๐งฎ Math Reasoning</span>
<span>โ
100% Accuracy</span>
<span>๐ฌ Under Review</span>
</div>
</div>
</section>
<section id="technical" class="section">
<h2>๐ ๏ธ Technical Expertise</h2>
<div class="tech-grid">
<div class="tech-category">
<h4>Foundation Models</h4>
<div class="tech-tag">Transformers</div>
<div class="tech-tag">LLMs</div>
<div class="tech-tag">Multimodal AI</div>
<div class="tech-tag">RLHF</div>
<div class="tech-tag">RL Agents</div>
<div class="tech-tag">RAG</div>
<div class="tech-tag">Prompt Engineering</div>
<div class="tech-tag">Knowledge Distillation</div>
</div>
<div class="tech-category">
<h4>Advanced ML</h4>
<div class="tech-tag">Optimal Transport</div>
<div class="tech-tag">Domain Adaptation</div>
<div class="tech-tag">Few-Shot Learning</div>
<div class="tech-tag">Meta-Learning</div>
<div class="tech-tag">Graph Neural Networks</div>
<div class="tech-tag">Knowledge Graph</div>
<div class="tech-tag">Self-Supervised</div>
</div>
<div class="tech-category">
<h4>Scientific Computing</h4>
<div class="tech-tag">Physics-Informed NNs</div>
<div class="tech-tag">Molecular Modeling</div>
<div class="tech-tag">Materials Discovery</div>
<div class="tech-tag">Equation Learning</div>
<div class="tech-tag">Symbolic Regression</div>
<div class="tech-tag">Scientific Workflows</div>
</div>
<div class="tech-category">
<h4>Infrastructure</h4>
<div class="tech-tag">PyTorch</div>
<div class="tech-tag">TensorFlow</div>
<div class="tech-tag">Distributed Training</div>
<div class="tech-tag">CUDA/GPU</div>
<div class="tech-tag">MLOps</div>
<div class="tech-tag">Cloud Platforms</div>
</div>
</div>
</section>
<section id="contact" class="section">
<h2>๐ค Research Collaborations</h2>
<div class="highlight-box">
<p>Open to collaborative research advancing foundation models, scientific AI, and systems bridging theoretical innovation with real-world impact. Interested in partnerships with research organizations, universities, and companies working on frontier AI challenges.</p>
<div style="margin-top: 1.5rem; color: #c9d1d9;">
<p><strong>Research Interests:</strong></p>
<p>โข Foundation model architectures and efficient training</p>
<p>โข AI for autonomous scientific discovery</p>
<p>โข Model generalization and transfer learning</p>
<p>โข Production ML systems at scale</p>
<p>โข Academic-industry research partnerships</p>
</div>
<div style="margin-top: 1.5rem; color: #c9d1d9;">
<p><strong>Get in touch:</strong> Contact via Email or GitHub for research discussions and partnership opportunities.</p>
</div>
<div style="margin-top: 1.5rem; color: #c9d1d9;">
<strong>๐ง Email:</strong> xu at tensense dot org<br>
<strong>๐๏ธ Institution:</strong> Zhejiang University<br>
<strong>๐ GitHub:</strong> https://github.com/scienceaix/deepresearch<br>
</div>
</div>
</section>
</main>
<footer>
<p>ยฉ 2025 Renjun Xu | Advancing Foundation Models & Scientific AI</p>
<p>Building bridges between cutting-edge research and transformative applications</p>
</footer>
</div>
<script>
// Smooth scrolling for navigation
document.querySelectorAll('nav a').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
});
});
// Fade-in animation on scroll
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
});
document.querySelectorAll('.section').forEach(section => {
section.style.opacity = '0';
section.style.transform = 'translateY(20px)';
section.style.transition = 'opacity 0.6s, transform 0.6s';
observer.observe(section);
});
</script>
</body>
</html>