-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
585 lines (509 loc) · 19.3 KB
/
index.html
File metadata and controls
585 lines (509 loc) · 19.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DATE Workshop - ICLR 2026</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
line-height: 1.6;
color: #1d1d1f;
background: #fbfbfd;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
text-align: center;
padding: 80px 20px 60px;
background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}
.logo {
font-size: 6em;
font-weight: 700;
background: linear-gradient(135deg, #0071e3 0%, #bf5af2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
letter-spacing: -0.03em;
}
.subtitle {
font-size: 2em;
font-weight: 600;
color: #1d1d1f;
margin-bottom: 12px;
letter-spacing: -0.01em;
line-height: 1.2;
}
.venue {
font-size: 1.25em;
color: #6e6e73;
font-weight: 400;
margin-top: 20px;
}
.content-section {
background: #ffffff;
border-radius: 18px;
padding: 60px;
margin: 40px 0;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
}
.content-section:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
h2 {
font-size: 3em;
font-weight: 700;
color: #1d1d1f;
margin-bottom: 32px;
letter-spacing: -0.02em;
}
h3 {
font-size: 1.75em;
font-weight: 600;
color: #1d1d1f;
margin: 40px 0 24px 0;
letter-spacing: -0.01em;
}
p {
margin-bottom: 20px;
font-size: 1.125em;
color: #6e6e73;
line-height: 1.7;
}
ul {
margin-left: 24px;
margin-bottom: 24px;
}
li {
margin-bottom: 14px;
font-size: 1.0625em;
color: #6e6e73;
line-height: 1.6;
}
table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
margin: 32px 0;
background: #f5f5f7;
border-radius: 12px;
overflow: hidden;
}
th {
background: #1d1d1f;
color: #f5f5f7;
padding: 18px 24px;
text-align: left;
font-size: 1.0625em;
font-weight: 600;
}
td {
padding: 16px 24px;
border-bottom: 1px solid #e8e8ed;
color: #1d1d1f;
font-size: 1.0625em;
}
tr:last-child td {
border-bottom: none;
}
tr:hover {
background: #ffffff;
}
.speaker-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 32px;
margin-top: 40px;
}
.speaker-card {
background: #f5f5f7;
padding: 40px;
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
}
.speaker-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
background: #ffffff;
}
.speaker-name {
font-size: 1.5em;
font-weight: 600;
color: #1d1d1f;
margin-bottom: 8px;
letter-spacing: -0.01em;
}
.speaker-affiliation {
color: #86868b;
font-size: 1.0625em;
margin-bottom: 20px;
font-weight: 400;
}
.speaker-card p {
font-size: 1.0625em;
color: #6e6e73;
line-height: 1.6;
}
.organizer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
margin-top: 32px;
}
.organizer-card {
background: #f5f5f7;
padding: 28px;
border-radius: 12px;
transition: all 0.3s ease;
border-left: 3px solid #0071e3;
}
.organizer-card:hover {
background: #ffffff;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transform: translateX(4px);
}
.organizer-name {
font-size: 1.25em;
font-weight: 600;
color: #1d1d1f;
margin-bottom: 6px;
}
.organizer-info {
color: #6e6e73;
font-size: 1.0625em;
line-height: 1.5;
}
.important-dates {
background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 100%);
padding: 40px;
border-radius: 16px;
margin: 32px 0;
border: 1px solid #ffd4d4;
}
.important-dates h3 {
color: #ff3b30;
margin-top: 0;
}
.date-item {
padding: 12px 0;
font-size: 1.0625em;
color: #1d1d1f;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.date-item:last-child {
border-bottom: none;
}
.date-label {
font-weight: 600;
color: #1d1d1f;
display: inline-block;
min-width: 220px;
}
.topics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
gap: 20px;
margin: 32px 0;
}
.topic-card {
background: #f5f5f7;
padding: 24px;
border-radius: 12px;
color: #1d1d1f;
font-size: 1.0625em;
transition: all 0.3s ease;
border-left: 3px solid #0071e3;
}
.topic-card:hover {
background: #ffffff;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transform: translateX(4px);
}
.cta-button {
display: inline-block;
background: #0071e3;
color: #ffffff;
padding: 14px 32px;
border-radius: 980px;
font-size: 1.0625em;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
margin-top: 12px;
}
.cta-button:hover {
background: #0077ed;
transform: scale(1.02);
}
@media (max-width: 768px) {
.logo {
font-size: 3.5em;
}
.subtitle {
font-size: 1.5em;
}
.content-section {
padding: 40px 24px;
}
.topics-grid, .speaker-grid {
grid-template-columns: 1fr;
}
h2 {
font-size: 2.2em;
}
th, td {
padding: 12px 16px;
font-size: 0.9375em;
}
}
.nav-spacer {
height: 20px;
}
@media (prefers-color-scheme: dark) {
body {
background: #000000;
color: #f5f5f7;
}
header {
background: linear-gradient(180deg, #000000 0%, #1d1d1f 100%);
}
.subtitle {
color: #f5f5f7;
}
.venue {
color: #86868b;
}
.content-section {
background: #1d1d1f;
}
h2, h3, .organizer-name, .speaker-name {
color: #f5f5f7;
}
p, li {
color: #a1a1a6;
}
table {
background: #2c2c2e;
}
th {
background: #000000;
}
td {
color: #f5f5f7;
border-bottom: 1px solid #3a3a3c;
}
tr:hover {
background: #2c2c2e;
}
.speaker-card, .organizer-card, .topic-card {
background: #2c2c2e;
}
.speaker-card:hover, .organizer-card:hover, .topic-card:hover {
background: #3a3a3c;
}
.speaker-affiliation, .organizer-info {
color: #86868b;
}
.date-item {
color: #f5f5f7;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">DATE</div>
<div class="subtitle">Data-efficient and Trustworthy Evaluation of Generative AI</div>
<div class="venue">ICLR 2026 Workshop · April 26-27, 2026</div>
</div>
</header>
<div class="nav-spacer"></div>
<div class="container">
<div class="content-section">
<h2>Overview</h2>
<p>Recent years have witnessed incredible progress in AI. The current wave, driven by generative models, is transforming nearly every domain. Models today can ace professional exams, generate complex software, and even solve International Mathematical Olympiad problems, yet paradoxically fail at simple arithmetic or factual consistency checks.</p>
<p>This brittle and unpredictable behavior poses real risks when such systems are deployed in high-stakes settings. Rigorous, transparent, and comprehensive evaluations are therefore essential to accurately assess their capabilities and limitations before deployment.</p>
<p>This workshop brings together researchers and practitioners to discuss established and emerging evaluation methods, with a focus on data-efficient, statistically sound, and robust evaluation strategies.</p>
<h3>Key Topics</h3>
<div class="topics-grid">
<div class="topic-card">Purpose of evaluation and what models should ultimately measure</div>
<div class="topic-card">Coverage, scalability, and data efficiency in evaluation</div>
<div class="topic-card">Contamination and benchmark integrity detection</div>
<div class="topic-card">Statistical rigor and comparability across models</div>
<div class="topic-card">Community-driven and reproducible evaluation platforms</div>
<div class="topic-card">Ethical and policy considerations for fair evaluation</div>
</div>
</div>
<div class="content-section">
<h2>Call for Papers</h2>
<p>We invite submissions of original research, position papers, and demos that advance the understanding and practice of evaluating generative AI systems. Submissions will be non-archival, and accepted papers will be presented as posters or contributed talks.</p>
<h3>Topics of Interest</h3>
<ul>
<li>Scalable and data-efficient evaluation methods across open-ended input and output spaces</li>
<li>Statistical inference-based approaches for evaluation, including hypothesis testing and ranking models</li>
<li>Automated and structured evaluation frameworks, including LLM-as-a-judge methods</li>
<li>Detection and mitigation of train-test contamination and benchmark leakage</li>
<li>Community-driven and open evaluation ecosystems</li>
<li>Broader implications of evaluation practices, encompassing transparency and ethics</li>
</ul>
<h3>Submission Guidelines</h3>
<ul>
<li><strong>Full papers:</strong> Up to 9 pages of main content (excluding references and appendices)</li>
<li><strong>Short papers:</strong> Up to 5 pages of main content (excluding references and appendices)</li>
<li>All submissions must be original, unpublished work</li>
<li>Double-blind review process via OpenReview</li>
<li>Best Paper and Runner-up awards will be announced</li>
</ul>
<div class="important-dates">
<h3>Important Dates</h3>
<div class="date-item"><span class="date-label">Submission Deadline:</span> January 30, 2026 (AoE)</div>
<div class="date-item"><span class="date-label">Author Notification:</span> March 1, 2026 (AoE)</div>
<div class="date-item"><span class="date-label">Camera-Ready Deadline:</span> March 10, 2026 (AoE)</div>
<div class="date-item"><span class="date-label">Workshop Date:</span> April 26 or 27, 2026</div>
</div>
</div>
<div class="content-section">
<h2>Schedule</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>Duration</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<tr>
<td>09:05</td>
<td>10 min</td>
<td>Opening remarks</td>
</tr>
<tr>
<td>09:15</td>
<td>45 min</td>
<td>Invited talk 1</td>
</tr>
<tr>
<td>10:00</td>
<td>45 min</td>
<td>Spotlight presentations (3 talks)</td>
</tr>
<tr>
<td>10:40</td>
<td>45 min</td>
<td>Invited talk 2</td>
</tr>
<tr>
<td>11:30</td>
<td>60 min</td>
<td>Poster session 1</td>
</tr>
<tr>
<td>12:30</td>
<td>75 min</td>
<td>Lunch break + discussion time</td>
</tr>
<tr>
<td>13:45</td>
<td>45 min</td>
<td>Invited talk 3</td>
</tr>
<tr>
<td>14:30</td>
<td>45 min</td>
<td>Spotlight presentations (3 talks)</td>
</tr>
<tr>
<td>15:15</td>
<td>60 min</td>
<td>Refreshments and poster session 2</td>
</tr>
<tr>
<td>16:15</td>
<td>45 min</td>
<td>Panel discussion: "How do humans evaluate superhuman intelligence?"</td>
</tr>
<tr>
<td>17:00</td>
<td>15 min</td>
<td>Best paper award and closing remarks</td>
</tr>
</tbody>
</table>
</div>
<div class="content-section">
<h2>Invited Speakers</h2>
<div class="speaker-grid">
<div class="speaker-card">
<div class="speaker-name">Pin-Yu Chen</div>
<div class="speaker-affiliation">IBM Thomas J. Watson Research Center</div>
<p>Principal Research Scientist and Chief Scientist of the RPI-IBM AI Research Collaboration. 2023 IJCAI Computers and Thought Award recipient and 2025 IEEE Fellow. Research focuses on AI safety, robustness, and building trustworthy machine learning systems.</p>
</div>
<div class="speaker-card">
<div class="speaker-name">Anastasios Angelopoulos</div>
<div class="speaker-affiliation">LMArena</div>
<p>PhD from UC Berkeley. Research at the intersection of theoretical statistics and black-box machine learning, developing provably valid algorithms in conformal prediction and prediction-powered inference, with expertise in rigorous model evaluation methods.</p>
</div>
<div class="speaker-card">
<div class="speaker-name">Paroma Varma</div>
<div class="speaker-affiliation">Snorkel AI</div>
<p>Co-founder and Head of Solutions at Snorkel AI. PhD in Electrical Engineering from Stanford University. Research focused on democratizing machine learning for domain experts and making complex AI technologies more accessible across diverse fields.</p>
</div>
</div>
</div>
<div class="content-section">
<h2>Organizers</h2>
<div class="organizer-grid">
<div class="organizer-card">
<div class="organizer-name">Harit Vishwakarma</div>
<div class="organizer-info">Incoming Postdoctoral Research Fellow, University of Oxford</div>
</div>
<div class="organizer-card">
<div class="organizer-name">Tzu-Heng Huang</div>
<div class="organizer-info">PhD Student, University of Wisconsin-Madison</div>
</div>
<div class="organizer-card">
<div class="organizer-name">Amanda Dsouza</div>
<div class="organizer-info">Workshop Organizer</div>
</div>
<div class="organizer-card">
<div class="organizer-name">Zhengyang Qi</div>
<div class="organizer-info">Research Scientist, Snorkel AI</div>
</div>
<div class="organizer-card">
<div class="organizer-name">Desi R. Ivanova</div>
<div class="organizer-info">Research Fellow, University of Oxford</div>
</div>
</div>
<h3 style="margin-top: 40px;">Advisors</h3>
<div class="organizer-grid">
<div class="organizer-card">
<div class="organizer-name">Prof. Frederic Sala</div>
<div class="organizer-info">Assistant Professor, University of Wisconsin-Madison</div>
</div>
<div class="organizer-card">
<div class="organizer-name">Prof. Yee Whye Teh</div>
<div class="organizer-info">University of Oxford</div>
</div>
</div>
</div>
<div style="height: 60px;"></div>
</div>
</body>
</html>