-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
758 lines (669 loc) · 36.5 KB
/
Copy pathindex.html
File metadata and controls
758 lines (669 loc) · 36.5 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
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
<!DOCTYPE html>
<html>
<head>
<title>VideoAutoArena: An Automated Arena for Evaluating Large Multimodal Models in Video Analysis through User Simulation</title>
<!-- consider to add our icon here -->
<!-- <link rel="icon" href="VideoAutoArenaLogo.png" type="image/icon type"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script>
<script
src="https://cdn.jsdelivr.net/npm/chartjs-plugin-annotation@3.0.1/dist/chartjs-plugin-annotation.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet">
<link rel="stylesheet" href="website/css/bulma.min.css">
<link rel="stylesheet" href="website/css/bulma-carousel.min.css">
<link rel="stylesheet" href="website/css/bulma-slider.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="website/css/fontawesome.all.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./website/javascript/bulma-carousel.min.js"></script>
<script src="./website/javascript/bulma-slider.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<link href="https://unpkg.com/tabulator-tables@5.5.2/dist/css/tabulator_bootstrap4.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@5.5.2/dist/js/tabulator.min.js"></script>
<script defer src="website/javascript/fontawesome.all.min.js"></script>
<!-- <script src="website/javascript/peity-vanilla.js"></script> -->
<!-- below we load some js scripts -->
<script src="website/javascript/benchmark_table.js" type="module"></script>
<link rel="stylesheet" href="website/css/index.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C7GJ4FYMY9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-C7GJ4FYMY9');
</script>
<!-- MathJax script -->
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/javascript">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<noscript>
<p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/101339888ns.gif" /></p>
</noscript>
<style>
/* Global Styles */
body {
font-family: 'Google Sans', 'Noto Sans', sans-serif;
line-height: 1.4;
color: #2d3748;
background: #f8f9fa;
}
.container.is-max-desktop {
max-width: 1400px !important;
padding: 0 1.5rem;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
border-bottom: 3px solid #2c3e50;
padding: 1.5rem 0 0.75rem;
}
.hero-body {
padding: 0.75rem 0;
}
.logo-container {
margin-bottom: 1rem;
}
.logo-container img {
width: 160px;
height: auto;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.publication-title {
font-size: 3rem !important;
font-weight: 800 !important;
line-height: 1.3 !important;
color: #1a365d;
margin-bottom: 1rem !important;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
max-width: 900px;
margin-left: auto !important;
margin-right: auto !important;
}
.conference-badge {
background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
color: white;
padding: 0.6rem 2rem;
border-radius: 8px;
font-weight: bold;
display: inline-block;
margin: 1rem 0;
font-size: 1.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
text-transform: uppercase;
letter-spacing: 1.5px;
}
/* Authors Section */
.publication-authors {
max-width: 900px;
margin: 1.5rem auto;
line-height: 1.6;
font-size: 1.2rem !important;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem 1rem;
}
.author-block {
display: inline-flex;
align-items: center;
margin: 0 0.3rem;
}
.author-block a {
color: #2c5282;
text-decoration: none;
transition: all 0.3s ease;
padding-bottom: 2px;
border-bottom: 2px solid transparent;
}
.author-block a:hover {
color: #2b6cb0;
border-bottom: 2px solid #2b6cb0;
}
.institution-list {
max-width: 800px;
margin: 1rem auto;
font-size: 1.1rem;
color: #4a5568;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}
/* Publication Links */
.publication-links {
margin: 2rem 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 0.75rem;
}
.btn-outline-dark {
border: 2px solid #2d3748;
color: #2d3748;
font-weight: 600;
padding: 0.8rem 1.8rem;
border-radius: 8px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: white;
}
.btn-outline-dark:hover {
background-color: #2d3748;
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Leaderboard Section */
.leaderboard-section {
background: white;
padding: 2rem 0;
margin: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.leaderboard-title {
color: #1a365d;
font-size: 2.5rem !important;
font-weight: 700 !important;
margin-bottom: 1.5rem !important;
text-align: center;
position: relative;
}
.leaderboard-title:after {
content: "";
display: block;
width: 80px;
height: 4px;
background: linear-gradient(90deg, #c41e3a, #8b0000);
margin: 1rem auto 0;
border-radius: 2px;
}
.leaderboard-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.leaderboard-subtitle {
color: #2d3748;
font-size: 1.8rem !important;
font-weight: 600 !important;
margin-bottom: 1.5rem !important;
text-align: center;
}
.leaderboard-description {
color: #4a5568;
font-size: 1.15rem;
line-height: 1.8;
max-width: 1000px;
margin: 0 auto 1.5rem;
text-align: left;
}
.leaderboard-contact {
background: #f8fafc;
padding: 1rem;
border-radius: 12px;
margin: 1.5rem auto;
max-width: 900px;
text-align: left;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.leaderboard-contact p {
margin-bottom: 1rem;
}
.nav-tabs-container {
background: #f8fafc;
padding: 1rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
margin: 2rem auto;
max-width: 600px;
}
#myTab {
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 0.5rem;
background: white;
display: flex;
justify-content: center;
gap: 0.5rem;
}
.nav-item button {
font-weight: 600;
letter-spacing: 0.5px;
padding: 1rem 2rem;
border-radius: 6px;
transition: all 0.3s ease;
}
.nav-link.active {
background: #2c3e50 !important;
color: white !important;
}
.tab-content {
margin-top: 1.5rem;
padding: 1.5rem;
background: white;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* Example Videos Section */
.video-container {
padding: 2rem 0;
margin-top: 1.5rem;
}
.video-container .title {
margin-bottom: 1.5rem;
color: #1a365d;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
gap: 1.5rem;
max-width: 1400px;
}
.video-item {
background: #f8fafc;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
padding: 1rem;
}
.video-item video {
width: 100%;
border-radius: 8px;
}
/* 修复折叠内容样式 */
.collapse-content {
display: none;
margin-top: 0.5rem;
background: white;
border-radius: 8px;
padding: 0.75rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.collapse-content.is-active {
display: block;
}
.toggle-section {
background: #f8fafc;
border: 1px solid #e2e8f0;
padding: 0.5rem;
border-radius: 8px;
margin-top: 0.5rem;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}
.toggle-section:hover {
background: #edf2f7;
}
/* 调整内容宽度 */
.content {
max-width: 1200px;
margin: 0 auto;
}
.table {
width: 100%;
margin-bottom: 0;
}
.table th, .table td {
padding: 0.5rem;
border: 1px solid #e2e8f0;
}
.table th {
background: #f8fafc;
font-weight: 600;
}
/* Abstract部分宽度调整 */
.column.is-four-fifths {
max-width: 1200px;
margin: 0 auto;
}
.content.has-text-justified {
text-align: justify;
font-size: 1.1rem;
line-height: 1.5;
}
/* Abstract Section */
.section {
padding: 2rem 1rem;
}
/* BibTeX section */
pre {
padding: 0.75rem;
margin-bottom: 0.75rem;
}
</style>
</head>
<body>
<!-- Title. -->
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<div class="logo-container">
<img src="website/img/VideoAutoArenaLogo.png" alt="logo" />
</div>
<h1 class="title is-1 publication-title">
VideoAutoArena
<br>An Automated Arena for Evaluating Large Multimodal Models in Video Analysis through User Simulation
</h1>
<div class="conference-badge">
CVPR 2025
</div>
<div class="is-size-5 publication-authors">
<span class="author-block">
<a href="https://chiyeunglaw.github.io/">Ziyang Luo</a><sup>1, 2, 3</sup>,</span>
<span class="author-block">
<a href="https://teowu.github.io/">Haoning Wu</a>,</span>
<span class="author-block">
<a href="https://sites.google.com/view/dongxu-li/home">Dongxu Li</a>,
</span>
<span class="author-block">
<a href="https://majingcuhk.github.io/">Jing Ma</a><sup>2</sup>,
</span>
<span class="author-block">
<a href="https://www.comp.nus.edu.sg/~mohan/">Mohan Kankanhalli</a><sup>3</sup>,
</span>
<span class="author-block">
<a href="https://scholar.google.com/citations?user=MuUhwi0AAAAJ&hl=en">Junnan Li</a><sup>1</sup>
</span>
</div>
<div class="institution-list">
<span class="author-block"><sup>1</sup>Salesforce Research</span>
<span class="author-block">•</span>
<span class="author-block"><sup>2</sup>Hong Kong Baptist University</span>
<span class="author-block">•</span>
<span class="author-block"><sup>3</sup>National University of Singapore</span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<!-- PDF Link. -->
<!-- <span class="link-block">
<a class="btn btn-outline-dark"
role="button">
<i class="fas fa-file-pdf"></i>
<span> Paper (Coming Soon)</span>
</a>
</span> -->
<span class="link-block">
<a href="https://arxiv.org/abs/2411.13281" class="btn btn-outline-dark"
role="button">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>arXiv</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/VideoAutoArena/VideoAutoArena" class="btn btn-outline-dark" role="button">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>VideoAutoArena</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/VideoAutoArena/VideoAutoBench" class="btn btn-outline-dark" role="button">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>VideoAutoBench</span>
</a>
</span>
<!-- Data Link.
<span class="link-block">
<a href="" class="btn btn-outline-dark" role="button">
<span class="icon" style="display: inline-flex; align-items: center;">
<img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="Hugging Face" style="width: 20px; height: 18px; margin-right: 5px;">
</span>
<span>Data</span>
</a>
</span> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Leaderboard-->
<section class="leaderboard-section" id="embodied_agent_interface_detail">
<div class="container is-max-desktop">
<h2 class="title is-2 leaderboard-title">Leaderboards</h2>
<div class="content">
<div class="has-text-centered">
<h4 class="title is-4 leaderboard-subtitle">🏆 Join the Competition 🚀</h4>
<div class="leaderboard-description">
<p>
The arena results are dynamic and continuously updated with new battle results. Our evaluation currently encompasses over <strong>10,000 head-to-head battles</strong>, providing comprehensive insights into model performance.
</p>
<div class="leaderboard-contact">
<p>
To include your LMM's performance on our leaderboard, please submit your GPT-4o judge results (including frame counts) via:
</p>
<p>
<a href="https://github.com/VideoAutoArena/VideoAutoArena/tree/main?tab=readme-ov-file#-contact">VideoAutoArena Submit Method</a>
|
<a href="https://github.com/VideoAutoArena/VideoAutoBench/tree/main?tab=readme-ov-file#-contact">VideoAutoBench Submit Method</a>
</p>
<p>
Contact:
<a href="mailto:cszyluo@comp.hkbu.edu.hk"><i class="fas fa-envelope"></i></a>
<a href="mailto:chiyeunglaw1@gmail.com"><i class="fas fa-envelope"></i></a>
</p>
</div>
</div>
<div class="nav-tabs-container">
<ul class="nav justify-content-center" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="main-results-tab" data-bs-toggle="tab"
data-bs-target="#benchmark-table-content" type="button" role="tab"
aria-controls="main-results-tab" aria-selected="true">VideoAutoArena</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="eurus-code-table-tab" data-bs-toggle="tab"
data-bs-target="#eurus-code-table-content" type="button" role="tab"
aria-controls="eurus-code-table-tab" aria-selected="false">VideoAutoBench</button>
</li>
</ul>
</div>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="benchmark-table-content" role="tabpanel"
aria-labelledby="benchmark-table-content">
<div id="behavior-benchmark-main-table"></div>
</div>
<div class="tab-pane fade" id="eurus-code-table-content" role="tabpanel"
aria-labelledby="eurus-code-table-content">
<div id="virtualhome-benchmark-main-table"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Example video -->
<section class="video-container">
<h2 class="title is-2">VideoAutoArena Examples</h2>
<div class="video-grid">
<div class="video-item">
<video autoplay muted loop playsinline controls>
<source src="website/videos/Candy.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="collapsible-section">
<button class="button is-fullwidth toggle-section" aria-controls="transition_table_vh_1">
<span>View battle example #1</span>
<span class="icon is-small">
<i class="fas fa-angle-down" aria-hidden="true"></i>
</span>
</button>
<div id="transition_table_vh_1" class="collapse-content">
<table class="table is-striped is-hoverable" id="vh_logical_matching_score" style="width: 100%; table-layout: fixed; font-size: 0.9em;">
<thead>
<tr>
<th style="width: 15%;"><b>User Simulation (Role Play)</b></th>
<th style="width: 85%;">A person with a background in traditional Japanese arts and crafts, particularly skilled in amezaiku or Japanese candy artistry, who is passionate about preserving and sharing cultural heritage through interactive demonstrations and workshops.</th>
</tr>
<tr>
<th style="width: 15%;"><b>User Simulation (Question Asking)</b></th>
<th style="width: 85%;">As someone passionate about preserving and sharing the art of amezaiku, I'm interested in the tools and techniques highlighted in the video. Could you explain what tools are mentioned for making Japanese candy art and how they contribute to the candy's delicate nature? Please format the response as a list.</th>
</tr>
<tr>
<th style="width: 15%;"><b>Model A's Response (Aria)</b></th>
<th style="width: 85%;">Certainly! Here are the tools mentioned in the video for making Japanese candy art, along with their contributions to the candy's delicate nature:<br><br>- **Japanese Scissors**:<br> - **Contribution**: Used for precise cutting and shaping of the candy.<br> <br>- **Crock-Pot**:<br> - **Contribution**: Helps in melting and adjusting the consistency of the candy, ensuring it maintains its delicate form.<br><br>- **Food Colors**:<br> - **Contribution**: Allows for the addition of vibrant colors to the candy, enhancing its visual appeal without compromising its delicacy.<br><br>These tools are crucial in creating intricate and delicate candy art, as they enable the artist to manipulate the candy's texture and appearance with high precision and care.</th>
</tr>
<tr>
<th style="width: 15%;"><b>Model B's Response (LLaVA-Video-72B)</b></th>
<th style="width: 85%;">- Japanese scissors: Essential for cutting and shaping the candy into precise figures, contributing to the art's delicate and intricate designs.<br>- Mold power: Likely a typo referring to 'mold powder' or 'molding power,' which is used to shape and hold the candy in place, ensuring the art maintains its form despite the candy's soft and pliable nature.<br>- Food colors: Vital for adding vibrant hues to the candy art, allowing for a wide range of colors that enhance the visual appeal and thematic representation of the figures.</th>
</tr>
<tr>
<th style="width: 15%;"><b>Automatic Judge</b></th>
<th style="width: 85%;">1. <b>Instruction Following</b>: Model A follows the instructions more closely by explicitly stating the contributions of each tool to the candy's delicate nature, addressing the user's question directly. Model B introduces an element not mentioned in the video, 'mold power,' which diverges from the user's instructions.<br>2. <b>Accuracy</b>: Model A accurately reflects the content of the video, listing Japanese scissors, a Crock-Pot, and food colors. Model B mentions 'mold power,' which is not referenced in the video, leading to an inaccurate response.<br>3. <b>Relevance</b>: Model A provides information relevant to the user's interest in amezaiku by focusing on the precise tools and their roles. Model B includes an irrelevant term ('mold power'), reducing its relevance.<br>4. <b>Helpfulness</b>: Model A offers a detailed explanation of how each tool contributes to the candy's delicate nature, aiding user understanding. Model B introduces a possible misunderstanding with 'mold power,' which detracts from helpfulness.<br><b>Overall: Model A Wins.</b></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<div class="video-item">
<video autoplay muted loop playsinline controls>
<source src="website/videos/Pineapple.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="collapsible-section">
<button class="button is-fullwidth toggle-section" aria-controls="transition_table_vh_2">
<span>View battle example #2</span>
<span class="icon is-small">
<i class="fas fa-angle-down" aria-hidden="true"></i>
</span>
</button>
<div id="transition_table_vh_2" class="collapse-content">
<table class="table is-striped is-hoverable" id="vh_logical_matching_score" style="width: 100%; table-layout: fixed; font-size: 0.9em;">
<thead>
<tr>
<th style="width: 15%;"><b>User Simulation (Role Play)</b></th>
<th style="width: 85%;">A person who enjoys recreational cooking and frequently hosts parties for friends and family. They are curious about incorporating more tropical flavors into their gatherings and are interested in easy-to-make, crowd-pleasing beverages.</th>
</tr>
<tr>
<th style="width: 15%;"><b>User Simulation (Question Asking)</b></th>
<th style="width: 85%;">I'm planning to host a tropical-themed party and want to offer a unique twist on classic beverages. The video showed a process involving pineapples and some refreshing ingredients. Can you explain how I can make a creative pineapple drink as shown in the video to impress my guests?</th>
</tr>
<tr>
<th style="width: 15%;"><b>Model A's Response (Qwen2VL-72B)</b></th>
<th style="width: 85%;">Absolutely! To create a unique pineapple beverage for your tropical-themed party, you'll need to start by making a pineapple juice base. Blend fresh pineapple chunks with coconut milk until smooth. Pour this mixture into a glass and add a scoop of whipped cream on top. Garnish it with a pineapple slice and a cherry for an extra touch. This pineapple drink is sure to be a hit at your party!</th>
</tr>
<tr>
<th style="width: 15%;"><b>Model B's Response (Aria)</b></th>
<th style="width: 85%;">To create a unique pineapple drink for your tropical-themed party, follow these steps:<br><br>1. **Preparation of Pineapple Juice Mixture:**<br> - In a pot on a stovetop, combine pineapple juice (3 1/2 - 4 cups) and sugar (3/4 cup).<br> - Stir the mixture until the sugar is fully dissolved.<br> - Allow the mixture to cool completely.<br><br>2. **Making the Cream Topping:**<br> - In a blender, add frozen pineapple chunks (4 cups), coconut milk (1 3/4 cups), and blend until smooth.<br> - Pour the mixture into a container and freeze until solid.<br><br>3. **Serving the Drink:**<br> - Once the mixture is frozen, scoop it out and place it into a piping bag fitted with a decorative tip.<br> - Pipe the creamy mixture onto a glass filled with the pineapple juice mixture.<br> - Garnish with a pineapple-shaped straw and a cherry on top.<br><br>This will give your guests a refreshing and visually appealing pineapple drink that's perfect for a tropical party.</th>
</tr>
<tr>
<th style="width: 15%;"><b>Automatic Judge</b></th>
<th style="width: 85%;">1. <b>Instruction Following</b>: Model B provides a more detailed response that closely follows the user's request to explain the process shown in the video for creating a unique pineapple drink. Model A offers a simpler explanation that is less representative of the video content.<br>2. <b>Accuracy</b>: Model B accurately describes the process seen in the video, including the preparation of a pineapple juice mixture and a creamy topping. Model A's description lacks specifics and misses key steps seen in the video.<br>3. <b>Relevance</b>: Model B considers the user's interest in a unique and impressive drink for their party by providing a detailed recipe. Model A presents a simpler version that doesn't align as well with the user's request for uniqueness.<br>4. <b>Helpfulness</b>: Model B is more helpful by giving a step-by-step guide that the user can follow to recreate the drink from the video, including refrigeration and presentation tips. Model A's response lacks these details.<br><b>Overall: Model B Wins.</b></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- Abstract. -->
<section class="section" id="abstract">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-2">Abstract</h2>
<div class="content has-text-justified">
<p>
<b>VideoAutoArena</b> addresses a critical gap in the evaluation of LMMs for video analysis. While traditional benchmarks like VideoMME and LongVideoBench provide limited insights through multiple-choice question answering, they fail to capture the complex, open-ended demands of real-world users. With the rapid growth of LMMs, there is a need for a more dynamic and user-centric evaluation method that reflects the variety and depth of real-world video understanding tasks.
To meet this need, VideoAutoArena introduces an innovative, automated pipeline that rigorously assesses LMMs' capabilities through user simulations, peer battles, and fault-driven evolution. This approach enables continuous, scalable comparisons of model performance, capturing nuances in video comprehension that traditional methods overlook. The modified ELO Rating System ensures fair, dynamic assessments, while fault-driven evolution progressively challenges models to improve their performance in complex, real-world scenarios.
Furthermore, <b>VideoAutoBench</b> simplifies the evaluation process by integrating human-annotated outcomes with GPT-4o's automated judgments. This combination allows for a quicker, more accessible assessment framework without sacrificing the depth and user-centric approach of VideoAutoArena. Together, these benchmarks offer a cost-effective, scalable solution for evaluating LMMs in video understanding, ultimately pushing the field toward more robust and user-relevant video analysis models.
</p>
</div>
<!-- Add the image here -->
<figure class="image is-centered">
<img src="website/img/videoautoarena.jpg" alt="VideoAutoArena Diagram" style="max-width: 100%; height: auto;">
</figure>
</div>
</div>
</div>
</section>
<section class="section" id="BibTeX">
<div class="container is-max-desktop content">
<h2 class="title">BibTeX</h2>
<pre>
@article{
luo2024videoautoarena,
title={VideoAutoArena: An Automated Arena for Evaluating Large Multimodal Models in Video Analysis through User Simulation},
author={Ziyang Luo and Haoning Wu and Dongxu Li and Jing Ma and Mohan Kankanhalli and Junnan Li},
year={2024},
eprint={2411.13281},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2411.13281},
}
</pre>
</div>
</section>
<footer class="footer">
<div align="center" class="container">
<div class="columns is-centered">
<div class="content is-small">
This website templated is borrowed from <a
href="https://github.com/nerfies/nerfies.github.io">nerfies</a>.
</div>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function () {
var toggles = document.querySelectorAll('.toggle-section');
toggles.forEach(function(toggle) {
toggle.addEventListener('click', function() {
var content = document.getElementById(toggle.getAttribute('aria-controls'));
var toggleIcon = toggle.querySelector('.fa-angle-down');
// 关闭其他所有展开的内容
document.querySelectorAll('.collapse-content').forEach(function(item) {
if (item !== content && item.classList.contains('is-active')) {
item.classList.remove('is-active');
var otherToggle = document.querySelector(`[aria-controls="${item.id}"]`);
var otherIcon = otherToggle.querySelector('.fa-angle-down');
otherIcon.style.transform = 'rotate(0deg)';
}
});
content.classList.toggle('is-active');
if (content.classList.contains('is-active')) {
toggleIcon.style.transform = 'rotate(180deg)';
} else {
toggleIcon.style.transform = 'rotate(0deg)';
}
});
});
});
</script>
</body>
</html>