-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
904 lines (832 loc) · 37.8 KB
/
index.html
File metadata and controls
904 lines (832 loc) · 37.8 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
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description"
content="GGBench introduces a geometric generative reasoning benchmark to evaluate unified multimodal models across language understanding and precise visual construction.">
<meta name="keywords"
content="Unified Multimodal Models, Generative reasoning, Geometric benchmark, Geometric construction, CVPR 2026">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GGBench: A Geometric Generative Reasoning Benchmark for Unified Multimodal Models</title>
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet">
<!-- Bulma CSS from CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<!-- Bulma Carousel from CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-carousel@4.0.4/dist/css/bulma-carousel.min.css">
<!-- Bulma Slider from CDN (optional) -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma-slider@2.0.4/dist/css/bulma-slider.min.css"> -->
<!-- Font Awesome from CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<!-- Local CSS files -->
<link rel="stylesheet" href="./static/css/index.css">
<link rel="stylesheet" href="./static/css/leaderboard.css">
<style>
.columns.is-vcentered {
align-items: flex-start;
}
html {
width: 100%;
overflow-x: auto;
}
body {
min-width: 1200px;
overflow-x: auto;
}
.columns.is-vcentered .column {
display: flex;
flex-direction: column;
}
.columns.is-vcentered .column .question-section {
min-height: 5.5rem;
margin-bottom: 1rem;
}
.columns.is-vcentered .column .question-section>p.is-size-7 {
min-height: 3.5rem;
display: block;
}
.columns.is-vcentered .column .prompt-section {
min-height: 6.5rem;
margin-bottom: 1rem;
}
.columns.is-vcentered .column .prompt-section>p.is-size-7 {
min-height: 5rem;
display: block;
}
.columns.is-vcentered .column>p.has-text-weight-semibold:nth-of-type(1) {
margin-bottom: 0.5rem !important;
}
.columns.is-vcentered .column>p.is-size-7:nth-of-type(2) {
min-height: 3.5rem;
margin-bottom: 1rem !important;
display: block;
}
.columns.is-vcentered .column>p.has-text-weight-semibold:nth-of-type(3) {
margin-bottom: 0.5rem !important;
}
.columns.is-vcentered .column>p.is-size-7:nth-of-type(4) {
min-height: 5rem;
margin-bottom: 1rem !important;
display: block;
}
.columns.is-vcentered .column img {
margin-top: auto;
}
.takeaway.message.is-info {
border-left: none !important;
padding-left: 0 !important;
}
.benchmark-row {
display: flex;
justify-content: center;
align-items: stretch;
gap: 2.5rem;
flex-wrap: wrap;
margin: 2rem auto 0;
max-width: 920px;
}
.benchmark-card {
max-width: 360px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.benchmark-card img {
width: 100%;
height: auto;
}
.benchmark-card p {
margin: 0;
}
.benchmark-card--wide {
max-width: 462px;
}
/* ------ 项目页骨架增强(filter + 卡片 + 折叠) ------ */
.rv-filterbar {
position: sticky;
top: 0;
z-index: 30;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
backdrop-filter: blur(6px);
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* --- Tabs:一行四个,最多三行 --- */
.rv-tabs {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: .75rem;
padding: .75rem 1rem .25rem;
max-width: 1000px;
margin: 0 auto;
}
/* 说明小字 */
.rv-help {
text-align: center;
font-size: .85rem;
color: #6b7280;
margin: .25rem 0 .75rem;
}
/* 按钮"方圆"风格(圆角 8px) */
.rv-tab {
cursor: pointer;
padding: .55rem .75rem;
border-radius: 8px;
border: 1px solid rgba(0, 0, 0, .10);
font-weight: 600;
font-size: .92rem;
background: #fff;
transition: transform .06s ease, background .2s ease, border .2s ease, box-shadow .2s ease;
}
.rv-tab:hover {
transform: translateY(-1px);
background: #f8faff;
}
.rv-tab.is-active {
background: #485fc7;
color: #fff;
border-color: #485fc7;
box-shadow: 0 2px 10px rgba(72, 95, 199, .25);
}
@media (max-width: 640px) {
.rv-tabs {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.rv-hidden {
display: none !important;
}
.rv-card {
border: 1px solid rgba(0, 0, 0, .06);
border-radius: 10px;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
background: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}
.rv-card-media {
aspect-ratio: 4/3;
display: flex;
align-items: center;
justify-content: center;
background: #f8f9fb;
}
.rv-card-media img {
width: 100%;
height: 100%;
object-fit: cover;
}
.rv-card-body {
padding: .75rem .9rem;
display: flex;
flex-direction: column;
gap: .5rem;
}
.rv-details {
border: 1px dashed rgba(0, 0, 0, .12);
border-radius: 8px;
padding: .5rem .75rem;
background: #fafbff;
}
.rv-details>summary {
cursor: pointer;
list-style: none;
font-weight: 700;
margin: .1rem 0 .4rem;
}
.rv-details>summary::-webkit-details-marker {
display: none;
}
.rv-details pre {
white-space: pre-wrap;
word-break: break-word;
margin: .5rem 0 0;
max-height: 16rem;
overflow: auto;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
font-size: .85rem;
line-height: 1.45;
background: #fff;
padding: .6rem .7rem;
border-radius: 6px;
border: 1px solid rgba(0, 0, 0, .06);
}
.rv-clamp {
--rv-lines: 3;
line-clamp: var(--rv-lines);
display: -webkit-box;
-webkit-line-clamp: var(--rv-lines);
-webkit-box-orient: vertical;
overflow: hidden;
}
.rv-toggle {
background: transparent;
border: none;
color: #485fc7;
font-weight: 700;
cursor: pointer;
padding: 0;
}
.rv-actions {
display: flex;
gap: .5rem;
align-items: center;
justify-content: flex-end;
margin-top: .35rem;
}
.rv-copy {
border: 1px solid rgba(0, 0, 0, .12);
border-radius: 8px;
padding: .3rem .55rem;
font-weight: 600;
cursor: pointer;
background: #fff;
}
.rv-copy:hover {
background: #f2f4ff;
}
.rv-summary {
display: flex;
flex-direction: column;
gap: 2px;
}
.rv-summary-title {
font-weight: 700;
}
.rv-tip {
font-size: .76rem;
color: #777;
font-style: italic;
}
.rv-details[open] .rv-tip {
display: none;
}
/* Benchmark section alignment */
.benchmark-grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
align-items: stretch;
margin-top: 2rem;
}
.benchmark-item {
flex: 1 1 280px;
max-width: 340px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.benchmark-item img {
width: 100%;
height: auto;
max-width: 320px;
}
.benchmark-item p {
margin-top: 0.75rem;
}
.teaser-wrapper {
width: 1200px;
max-width: 100%;
margin: 0 auto;
}
.teaser-wrapper img {
width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
</style>
<!-- jQuery from CDN (required for some scripts) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bulma Carousel from CDN -->
<script src="https://cdn.jsdelivr.net/npm/bulma-carousel@4.0.4/dist/js/bulma-carousel.min.js"></script>
<!-- Bulma Slider from CDN (optional) -->
<!-- <script src="https://cdn.jsdelivr.net/npm/bulma-slider@2.0.4/dist/js/bulma-slider.min.js"></script> -->
<!-- Local JavaScript files -->
<script type="text/javascript" src="static/js/sort-table.js" defer></script>
<script src="./static/js/explorer-index.js" defer></script>
<script src="./static/js/question_card.js" defer></script>
<script src="./static/js/leaderboard_testmini.js" defer></script>
<!-- Data files (optional, can be removed if not needed) -->
<!-- <script src="./data/results/output_folders.js" defer></script> -->
<!-- <script src="./data/results/model_scores.js" defer></script> -->
<!-- <script src="./visualizer/data/data_public.js" defer></script> -->
</head>
<body>
<!-- <nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu">
<div class="navbar-start" style="flex-grow: 1; justify-content: center;">
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More Research
</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="#">
<b>Project 1</b>
<p style="font-size:18px; display: inline; margin-left: 5px;">🔥</p>
</a>
<a class="navbar-item" href="#">
<b>Project 2</b>
<p style="font-size:18px; display: inline; margin-left: 5px;">🔥</p>
</a>
<a class="navbar-item" href="#">
<b>Project 3</b>
<p style="font-size:18px; display: inline; margin-left: 5px;">🔥</p>
</a>
</div>
</div>
</div>
</div>
</nav> -->
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title is-bold" style="font-size: 2.8rem;">
<span class="mathvista" style="vertical-align: middle">GGBench </span>
</h1>
<h2 class="subtitle is-3 publication-subtitle">
A Geometric Generative Reasoning Benchmark for Unified Multimodal Models
</h2>
<div class="is-size-5 publication-authors">
<span class="author-block"><a href="https://openreview.net/profile?id=~Jingxuan_Wei1"
target="_blank" rel="noopener">Jingxuan Wei</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Caijun_Jia1"
target="_blank" rel="noopener">Caijun Jia</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Xi_Bai1"
target="_blank" rel="noopener">Xi Bai</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Xuxinglong1"
target="_blank" rel="noopener">Xinglong Xu</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Siyuan_Li6"
target="_blank" rel="noopener">Siyuan Li</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Linzhuang_Sun1"
target="_blank" rel="noopener">Linzhuang Sun</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Bihui_Yu1"
target="_blank" rel="noopener">Bihui Yu</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Conghui_He2"
target="_blank" rel="noopener">Conghui He</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Lijun_Wu1"
target="_blank" rel="noopener">Lijun Wu</a>,</span>
<span class="author-block"><a href="https://openreview.net/profile?id=~Cheng_Tan1"
target="_blank" rel="noopener">Cheng Tan</a></span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<!-- PDF Link. -->
<span class="link-block">
<a href="https://arxiv.org/abs/2511.11134" class="external-link button is-normal is-rounded is-dark"
>
<span class="icon">
<i class="fas fa-file-pdf"></i>
</span>
<span>Paper</span>
</a>
</span>
<!-- Code Link. -->
<span class="link-block">
<a href="https://github.com/OpenRaiser/GGBench"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
</span>
<!-- Dataset Link. -->
<span class="link-block">
<a href="https://huggingface.co/datasets/OpenRaiser/GGBench"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<p style="font-size:18px">🤗</p>
</span>
<span>Dataset</span>
</a>
</span>
<!-- Visualization Link. -->
<span class="link-block">
<a href="#benchmark" class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<p style="font-size:18px">🔮</p>
</span>
<span>Benchmark</span>
</a>
</span>
<!-- Leaderboard Link. -->
<span class="link-block">
<a href="#leaderboard" class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<p style="font-size:18px">🏆</p>
</span>
<span>Leaderboard</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container" style="margin-bottom: 2vh;">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<div class="content">
<div style="display: flex; justify-content: center;">
<div
style="position: relative; padding-bottom: 84%; height: 0; overflow: hidden; width: 100%; min-width: 800px; background: #FFF; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);">
<video autoplay loop muted playsinline
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" poster=""
preload="auto">
<source src="static/images/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
<div class="container" style="margin-bottom: 2vh;">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">TL;DR</h2>
<div class="content has-text-justified">
<p>
We introduce <b>GGBench</b>, a geometric generative reasoning benchmark purpose-built for
unified multimodal models (UMMs). Unlike prior evaluations that treat discriminative
understanding and unconstrained image generation separately, GGBench diagnoses whether a
model can fuse language comprehension with precise visual construction. Geometric
construction serves as an ideal testbed, revealing how well a system can actively reason
and synthesize structured solutions across modalities.
</p>
</div>
</div>
</div>
</div>
<div class="columns is-centered">
<div class="column is-four-fifths">
<div class="content has-text-centered teaser-wrapper">
<img src="static/images/teaser.png" alt="introduction" />
</div>
</div>
</div>
<br><br>
<div class="container" style="margin-bottom: 2vh;">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3">Introduction</h2>
<div class="content has-text-justified">
<p>
Unified multimodal models (UMMs) herald a shift from passive perception toward proactive,
cross-modal generation. However, current benchmarks rarely stress-test whether these systems
can integrate reasoning with controlled synthesis. Most evaluations remain disjoint—either
probing language understanding or measuring image fidelity in isolation. As a result, we
still lack a principled way to measure <em>generative reasoning</em>.
<br><br>
GGBench closes this gap by framing geometric construction as a rigorous reasoning task. A
model must parse natural-language specifications, plan a construction, and render accurate
intermediate artifacts. This workflow surfaces fine-grained failure modes in alignment,
consistency, and controllability—dimensions that traditional captioning or free-form
generation overlook. By standardizing data, protocol, and diagnostics, GGBench offers
researchers a reproducible lens on how UMMs evolve from understanding to deliberate
problem solving.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="hero is-light is-small">
<div class="hero-body has-text-centered">
<h1 id="benchmark" class="title is-1 mathvista"><span class="mathvista"
style="vertical-align: middle">Benchmark</span>
</h1>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<div class="content has-text-justified">
<p>
We curate <em>GGbench Benchmark</em>, a comprehensive benchmark providing a standardized
taxonomy and an evaluation protocol, enabling consistent and category-wise assessment beyond
surface-level metrics.
</p>
</div>
</div>
</div>
</div>
<br><br>
<div class="container">
<div class="benchmark-row">
<div class="benchmark-card">
<img src="static/images/timu_type3_01.png" alt="Evaluation Radar Map" />
<p>Evaluation Radar Map</p>
</div>
<div class="benchmark-card benchmark-card--wide">
<img src="static/images/data_analysis_01.png" alt="Category Distribution" />
<p>Category Distribution</p>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-full has-text-centered content">
<h2 id="leaderboard" class="title is-3">Leaderboard</h2>
<div class="content">
<p class="mt-3">
Main results on GGBench. VLM-T and VLM-I denote step reasoning and final diagram quality,
respectively. VLM-Avg averages middle and final stages. All values are percentages.
</p>
<table class="leaderboard" id="results-model-dimension"
style="border:none; outline:none; box-shadow:none;">
<thead>
<tr>
<th rowspan="2"><strong>Model</strong></th>
<th colspan="1"><strong>Planning</strong></th>
<th colspan="1"><strong>Middle Process</strong></th>
<th colspan="4"><strong>Final Result</strong></th>
<th colspan="2"><strong>Overall Scores</strong></th>
</tr>
<tr>
<th><strong>VLM-T ↑</strong></th>
<th><strong>VLM-I-Mid ↑</strong></th>
<th><strong>VLM-I-Res ↑</strong></th>
<th><strong>LPIPS ×10<sup>-2</sup> ↓</strong></th>
<th><strong>PSNR ↑</strong></th>
<th><strong>SSIM ×10<sup>-2</sup> ↑</strong></th>
<th><strong>VLM-I ↑</strong></th>
<th><strong>Human ↑</strong></th>
</tr>
</thead>
<tbody>
<tr class="rv-group-row">
<td colspan="9"><strong>End-to-end UMMs</strong></td>
</tr>
<tr>
<td>Qwen-Image</td>
<td>—</td>
<td>—</td>
<td>22.75</td>
<td>56.39</td>
<td>58.23</td>
<td>48.06</td>
<td>22.75</td>
<td>25.56</td>
</tr>
<tr>
<td>Seedream 4.0</td>
<td>—</td>
<td>—</td>
<td>24.45</td>
<td>51.06</td>
<td>59.44</td>
<td>56.44</td>
<td>24.45</td>
<td>37.56</td>
</tr>
<tr>
<td>Janus</td>
<td>33.85</td>
<td>21.69</td>
<td>19.76</td>
<td>57.74</td>
<td>57.76</td>
<td>60.97</td>
<td>20.73</td>
<td>19.46</td>
</tr>
<tr>
<td>BAGEL</td>
<td>23.07</td>
<td>21.84</td>
<td>19.99</td>
<td>57.07</td>
<td>61.78</td>
<td>58.82</td>
<td>20.91</td>
<td>20.12</td>
</tr>
<tr>
<td>Nano Banana</td>
<td>58.54</td>
<td>44.83</td>
<td>22.81</td>
<td>51.85</td>
<td>64.53</td>
<td>59.51</td>
<td>33.82</td>
<td>45.75</td>
</tr>
<tr>
<td>GPT-image-1</td>
<td>—</td>
<td>—</td>
<td>39.11</td>
<td>50.67</td>
<td>16.95</td>
<td>64.37</td>
<td><span class="best-score-text">39.11</span></td>
<td><span class="best-score-text">49.85</span></td>
</tr>
<tr class="rv-group-row">
<td colspan="9"><strong>LLMs/LRMs</strong></td>
</tr>
<tr>
<td>GPT-4o</td>
<td>59.73</td>
<td>26.19</td>
<td>2.66</td>
<td>95.43</td>
<td>5.45</td>
<td>5.69</td>
<td>14.43</td>
<td>23.04</td>
</tr>
<tr>
<td>GLM-4.5V</td>
<td>53.32</td>
<td>25.63</td>
<td>5.02</td>
<td>52.91</td>
<td>12.19</td>
<td>12.94</td>
<td>15.33</td>
<td>30.14</td>
</tr>
<tr>
<td>Qwen3-14B</td>
<td>58.65</td>
<td>39.30</td>
<td>12.97</td>
<td>78.81</td>
<td>23.92</td>
<td>24.81</td>
<td>26.13</td>
<td>38.23</td>
</tr>
<tr>
<td>Gemini 2.5 Pro</td>
<td>38.50</td>
<td>37.41</td>
<td>15.80</td>
<td>68.39</td>
<td>37.17</td>
<td>39.73</td>
<td>26.61</td>
<td>44.68</td>
</tr>
<tr>
<td>DeepSeek-R1</td>
<td>61.16</td>
<td>62.42</td>
<td>20.48</td>
<td>66.06</td>
<td>37.94</td>
<td>37.59</td>
<td>41.45</td>
<td>49.55</td>
</tr>
<tr>
<td>GPT-4</td>
<td>55.66</td>
<td>50.39</td>
<td>20.30</td>
<td>67.35</td>
<td>35.26</td>
<td>38.31</td>
<td>33.04</td>
<td>55.99</td>
</tr>
<tr>
<td>Qwen3-VL</td>
<td>56.40</td>
<td>49.55</td>
<td>23.94</td>
<td>39.40</td>
<td>52.33</td>
<td>58.71</td>
<td>36.74</td>
<td>66.77</td>
</tr>
<tr>
<td>DeepSeek-V3.1</td>
<td>60.24</td>
<td>73.13</td>
<td>26.41</td>
<td>57.21</td>
<td>48.33</td>
<td>50.12</td>
<td>49.77</td>
<td>68.12</td>
</tr>
<tr>
<td>Claude Sonnet 4.5</td>
<td>61.19</td>
<td>77.92</td>
<td>30.29</td>
<td>52.22</td>
<td>51.74</td>
<td>50.52</td>
<td>54.11</td>
<td>72.12</td>
</tr>
<tr>
<td>GPT-5</td>
<td>62.01</td>
<td>76.79</td>
<td>37.36</td>
<td>49.65</td>
<td>54.80</td>
<td>59.49</td>
<td><span class="best-score-text">57.08</span></td>
<td><span class="best-score-text">83.06</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section id="bibtex" class="section">
<div class="container has-text-centered">
<h2 class="title is-3">BibTeX</h2>
<div class="box" style="background:#fafafa; border-radius:10px;">
<pre style="text-align:left; white-space:pre-wrap; padding:1.5rem; font-size:15px;">
@article{author2025yourproject,
title={Your Research Project Title},
author={Author One and Author Two and Author Three and Author Four},
journal={Journal Name},
year={2025}
}
</pre>
<!-- Copy Button -->
<button id="copyBibtex" class="button is-light is-small" style="margin-top:-10px;">
Copy BibTeX
</button>
</div>
</div>
</section>
<script>
document.getElementById("copyBibtex").addEventListener("click", function () {
const text = `@article{wei2025ggbench,
title={GGBench: A Geometric Generative Reasoning Benchmark for Unified Multimodal Models},
author={Wei, Jingxuan and Jia, Caijun and Bai, Xi and Xu, Xinglong and Li, Siyuan and Sun, Linzhuang and Yu, Bihui and He, Conghui and Wu, Lijun and Tan, Cheng},
journal={arXiv preprint arXiv:2511.11134},
year={2025}
}`;
navigator.clipboard.writeText(text).then(() => {
const btn = document.getElementById("copyBibtex");
btn.textContent = "Copied!";
setTimeout(() => btn.textContent = "Copy BibTeX", 1200);
});
});
</script>
<section>
<div class="section" id="org-banners" style="display:flex">
<a href="https://opendatalab.com/" target="_blank" rel="external">
<img class="center-block org-banner" src="static/images/OpenDataLab_blue_no_words_01.png">
</a>
<a href="https://www.shlab.org.cn/" target="_blank" rel="external" style="margin-right: 1rem;">
<img class="center-block org-banner" src="static/images/shlab.png">
</a>
<!-- <a href="#" target="_blank" rel="external" style="margin-left: 1rem;">
<img class="center-block org-banner" src="static/images/institution3.png">
</a> -->
</div>
</section>
<footer class="footer">
<div class="content has-text-centered"></div>
<div class="columns is-centered">
<div class="column is-8">
<div class="content">
<p>
This website is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative
Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
</div>
</div>
</div>
</footer>
</body>
</html>