-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsurvey.html
More file actions
2048 lines (1766 loc) · 138 KB
/
survey.html
File metadata and controls
2048 lines (1766 loc) · 138 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
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<title>3D and 4D World Modeling: A Survey</title>
<link rel="icon" href="assets_common/icons/worldbench-circle.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="./static/js/distill_template.v2.js"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/d3-collection.v1.min.js"></script>
<script src="https://rawgit.com/nstrayer/slid3r/master/dist/slid3r.js"></script>
<script defer="" src="./static/js/hider.js"></script>
<script src="./static/js/image_interact.js"></script>
<script src="./static/js/switch_videos.js"></script>
<link rel="stylesheet" href="./static/css/style.css">
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.css" integrity="sha384-yFRtMMDnQtDRO8rLpMIKrtPCD5jdktao2TV19YiZYWMDkUR5GQZR/NOVTdquEx1j" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.js" integrity="sha384-9Nhn55MVVN0/4OFx7EE5kpFBPsEMZxKTCnA+4fqDmg12eCTqGi6+BB2LjY8brQxJ" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"></script> <!-- jquery -->
<script defer src="./static/js/medium-zoom.min.js"></script>
<script defer src="./static/js/zoom.js"></script>
</head>
<body>
<div class="scroll-progress" id="scrollProgress"></div>
<div class="header-wrapper">
<div class="header-container", id="header-container">
<div class="header-content">
<h1 style="font-size:3.7rem;">
3D and 4D World Modeling: A Survey
</h1>
<h2 style="margin:2.2rem 0 1.8rem; display:flex; align-items:center; gap:0.4rem;">
<span class="icon is-small">
<img src="assets_common/icons/worldbench-circle.png" style="height:1.8em; vertical-align:text-top;">
</span> WorldBench Team
</h2>
<div class="button-container">
<a href="https://arxiv.org/abs/2509.07996" class="button paper-link" target="_blank">
<span class="icon is-small">
<i class="ai ai-arxiv " style="height: 1.5em;"></i>
</span><span>arXiv</span>
</a>
<a href="assets_common/papers/survey.pdf" class="button paper-link" target="_blank">
<span class="icon is-small">
<img src="assets_common/icons/pdf.png" style="height: 1.4em;">
</span><span>PDF</span>
</a>
<a href="https://github.com/worldbench/survey" class="button" target="_blank">
<span class="icon is-small">
<img src="assets_common/icons/github.png" style="height: 1.4em;">
</span><span>GitHub</span>
</a>
<a href="https://huggingface.co/spaces/worldbench/WorldLens" class="button" target="_blank">
<span class="icon is-small">
<img src="assets_common/icons/hf.png" style="height: 1.5em;">
</span><span>Leaderboard</span>
</a>
</div>
</div>
<div class="header-image">
<img src="assets/survey/figures/anni.webp" alt="header" class="teaser-image">
</div>
</div>
</div>
<d-article>
<d-contents>
<nav>
<h4>Contents</h4>
<div><a href="#definition">Definition</a></div>
<div><a href="#taxonomy">Taxonomy</a></div>
<div><a href="#examples">Examples</a></div>
<div><a href="#projects">Collections</a></div>
<div><a href="#contributors">Contributors</a></div>
</nav>
</d-contents>
<section id="introduction">
<div class="wb-section">
<div class="wb-kicker">Introduction</div>
<div class="wb-hr"></div>
<p class="wb-lead">
World modeling has become a cornerstone in AI research, enabling agents to understand, represent, and predict the dynamic environments they inhabit.
</p>
<p class="wb-lead">
While prior work largely emphasizes generative methods for 2D image and video data, they overlook the rapidly growing body of work that leverages native 3D and 4D representations such as RGB-D imagery, occupancy grids, and LiDAR point clouds for large-scale scene modeling.
</p>
<figure style="width: 100%; max-width: 1000px; display: block; margin: 32px auto;">
<img src="assets/survey/figures/teaser.png">
</figure>
<p class="wb-lead">
This survey reviews <strong>3D and 4D world models</strong> — models that learn, predict, and simulate the geometry and dynamics of real environments from multi-modal signals.
</p>
<p class="wb-lead">
We unify terminology, scope, and evaluation, and organize the space into three complementary paradigms by representation: <strong>VideoGen</strong> (image/video-centric),
<strong>OccGen</strong> (occupancy-centric), and <strong>LiDARGen</strong> (point-cloud-centric).
</p>
<br><br>
</div>
</section>
<section id="definition">
<h2>Definition</h2>
<!-- <div class="wb-hr" style="margin-bottom:1.25rem;"></div> -->
<style>
#definition .wb-grid{
grid-template-columns: 1fr !important;
max-width: 900px;
margin: 0 auto;
gap: 1rem 1.25rem;
}
</style>
<div class="wb-grid">
<!-- VideoGen -->
<article class="wb-card">
<h3>
<i class="fas fa-film" aria-hidden="true"></i>
<a class="wb-anchor">VideoGen</a>
</h3>
<p>
<strong>What it is.</strong> An image/video-centric world model that generates or predicts
photorealistic, temporally consistent frames (single- or multi-view) conditioned on past context and optional controls.
</p>
<p class="wb-cap"><strong>Typical inputs</strong>: past frames, poses/camera intrinsics-extrinsics, text/route/action hints.</p>
<div class="wb-meta" aria-label="VideoGen tags">
<span class="wb-chip">Video Synthesis</span>
<span class="wb-chip">Future Prediction</span>
<span class="wb-chip">What-If Simulation</span>
<span class="wb-chip">Multi-View Generation</span>
</div>
</article>
<!-- OccGen -->
<article class="wb-card">
<h3>
<i class="fas fa-cubes" aria-hidden="true"></i>
<a class="wb-anchor">OccGen</a>
</h3>
<p>
<strong>What it is.</strong> An occupancy-centric world model that represents scenes as 3D/4D occupancy
fields (e.g., voxel grids with semantics), enabling geometry-aware perception, forecasting, and simulation.
</p>
<p class="wb-cap"><strong>Typical inputs</strong>: multi-sensor cues (RGB, depth, events, LiDAR), ego motion, maps.</p>
<div class="wb-meta" aria-label="OccGen tags">
<span class="wb-chip">3D Reconstruction</span>
<span class="wb-chip">Occupancy Forecasting</span>
<span class="wb-chip">Autoregressive Simulation</span>
<span class="wb-chip">Semantic Voxel</span>
</div>
</article>
<!-- LiDARGen -->
<article class="wb-card">
<h3>
<i class="fas fa-braille" aria-hidden="true"></i>
<a class="wb-anchor">LiDARGen</a>
</h3>
<p>
<strong>What it is.</strong> A point-cloud-centric world model that learns high-fidelity geometry and
dynamics directly from LiDAR sweeps, suitable for robust 3D understanding, data generation, and sensor-faithful simulation.
</p>
<p class="wb-cap"><strong>Typical inputs</strong>: past LiDAR sweeps, ego trajectory, calibration; optional scene priors.</p>
<div class="wb-meta" aria-label="LiDARGen tags">
<span class="wb-chip">Point Cloud Synthesis</span>
<span class="wb-chip">Future Sweeps</span>
<span class="wb-chip">Trajectory-Conditioned</span>
<span class="wb-chip">Physics-Aware</span>
</div>
</article>
</div>
<br><br>
</section>
<section id="taxonomy">
<h2>
<span class="icon is-small">
<img src="assets_common/icons/worldbench.png" style="height: 1.2em;" loading="lazy">
</span> A Hierarchical Taxonomy</h2>
<div class="wb-section">
<p class="wb-lead">
We establish precise definitions, introduce a structured taxonomy spanning VideoGen, OccGen, and LiDARGen approaches, and systematically summarize datasets and evaluation metrics tailored to 3D/4D settings.
</p>
<figure style="width: 100%; max-width: 1000px; display: block; margin: 24px auto;">
<img src="assets/survey/figures/tree.png" loading="lazy">
</figure>
<p class="wb-lead">
Together, these models provide the foundation for simulation, planning, and embodied intelligence in complex environments.
</p>
</div>
<br><br>
</section>
<div class="wb-kicker"><span class="icon is-small">
<img src="assets/survey/figures/category.png" style="height: 1.6em;" loading="lazy">
</span> World Model Categorization</div>
<div class="wb-hr" style="margin-bottom:1.25rem;"></div>
<section id="model-types" style="margin:3.5rem 0;">
<div>
<p class="wb-lead">
We categorize 3D/4D world models into four functional types. They differ in how historical observations are
leveraged, which conditioning signals are provided,
and whether models operate in open-loop or closed-loop settings.
</p>
<div style="
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:1.6rem 1.8rem;">
<!-- ================= Type 1 ================= -->
<article style="
background:#f9fafb;
border-radius:0.9rem;
padding:1rem 1.15rem;
box-shadow:0 1px 3px rgba(15,23,42,0.08);">
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:0.45rem;">
<div style="
font-size:0.72rem;
font-weight:600;
letter-spacing:0.08em;
text-transform:uppercase;
color:#2563eb;">
Type 1
</div>
<div style="display:flex; align-items:center; gap:0.45rem; font-weight:600; color:#111827;">
Data Engines
<img src="assets/survey/figures/video-data-engine.png" style="height:1.6rem;" loading="lazy">
</div>
</div>
<p style="font-size:0.9rem; line-height:1.7; color:#4b5563; margin:0 0 0.55rem;">
Generate diverse 3D/4D scenes from geometric and semantic cues, optionally with action conditions.
Focus on <b>plausibility</b> and <b>diversity</b> for large-scale data augmentation and scenario creation.
</p>
<ul style="padding-left:1.1rem; margin:0; font-size:0.88rem; line-height:1.6; color:#4b5563;">
<li><b>Inputs:</b> \(\mathcal{C}_{\mathrm{geo}}\), \(\mathcal{C}_{\mathrm{act}}\) (optional), \(\mathcal{C}_{\mathrm{sem}}\)</li>
<li><b>Output:</b> \(\mathcal{S}_g\) (generated scene)</li>
</ul>
</article>
<!-- ================= Type 2 ================= -->
<article style="
background:#f9fafb;
border-radius:0.9rem;
padding:1rem 1.15rem;
box-shadow:0 1px 3px rgba(15,23,42,0.08);">
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:0.45rem;">
<div style="font-size:0.72rem; font-weight:600; letter-spacing:0.08em; color:#2563eb;">
Type 2
</div>
<div style="display:flex; align-items:center; gap:0.45rem; font-weight:600;">
Action Interpreters
<img src="assets/survey/figures/video-action-interpreter.png" style="height:1.6rem;" loading="lazy">
</div>
</div>
<p style="font-size:0.9rem; line-height:1.7; color:#4b5563; margin:0 0 0.55rem;">
Forecast future 3D/4D world states from historical observations under given action conditions.
Enable <b>action-aware forecasting</b> for planning, behavior prediction, and policy evaluation.
</p>
<ul style="padding-left:1.1rem; margin:0; font-size:0.88rem; line-height:1.6; color:#4b5563;">
<li><b>Inputs:</b> \(\mathbf{x}_i^{-t:0}\), \(\mathcal{C}_{\mathrm{act}}\)</li>
<li><b>Output:</b> \(\mathcal{S}_p^{1:k}\) (predicted sequence)</li>
</ul>
</article>
<!-- ================= Type 3 ================= -->
<article style="
background:#f9fafb;
border-radius:0.9rem;
padding:1rem 1.15rem;
box-shadow:0 1px 3px rgba(15,23,42,0.08);">
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:0.45rem;">
<div style="font-size:0.72rem; font-weight:600; letter-spacing:0.08em; color:#2563eb;">
Type 3
</div>
<div style="display:flex; align-items:center; gap:0.45rem; font-weight:600;">
Neural Simulators
<img src="assets/survey/figures/video-neural-simulator.png" style="height:1.4rem;" loading="lazy">
</div>
</div>
<p style="font-size:0.9rem; line-height:1.7; color:#4b5563; margin:0 0 0.55rem;">
Iteratively simulate closed-loop agent-environment interactions by generating successive scene states.
Support <b>interactive simulation</b> for autonomous driving, robotics, and immersive XR training.
</p>
<ul style="padding-left:1.1rem; margin:0; font-size:0.88rem; line-height:1.6; color:#4b5563;">
<li><b>Inputs:</b> \(\mathcal{S}_g^{t}\), \(\pi_{\mathrm{agent}}\)</li>
<li><b>Output:</b> \(\mathcal{S}_g^{t+1}\)</li>
</ul>
</article>
<!-- ================= Type 4 ================= -->
<article style="
background:#f9fafb;
border-radius:0.9rem;
padding:1rem 1.15rem;
box-shadow:0 1px 3px rgba(15,23,42,0.08);">
<div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:0.45rem;">
<div style="font-size:0.72rem; font-weight:600; letter-spacing:0.08em; color:#2563eb;">
Type 4
</div>
<div style="display:flex; align-items:center; gap:0.45rem; font-weight:600;">
Scene Reconstructors
<img src="assets/survey/figures/video-scene-reconstructor.png" style="height:1.65rem;">
</div>
</div>
<p style="font-size:0.9rem; line-height:1.7; color:#4b5563; margin:0 0 0.55rem;">
Recover complete and coherent 3D/4D scenes from partial, sparse, or corrupted observations.
Facilitate <b>interactive tasks</b> such as high-fidelity mapping and digital twin restoration.
</p>
<ul style="padding-left:1.1rem; margin:0; font-size:0.88rem; line-height:1.6; color:#4b5563;">
<li><b>Inputs:</b> \(\mathbf{x}^{p}_{i}\), optional \(\mathcal{C}_{\mathrm{geo}}\)</li>
<li><b>Output:</b> \(\hat{\mathcal{S}}_{g}\) (completed scene)</li>
</ul>
</article>
</div>
<br>
<p class="wb-lead">
Together, these four categories outline the functional landscape of 3D/4D world modeling.
While all aim to produce physically and semantically coherent scenes, they differ in how they
leverage past observations, conditioning signals, and interaction loops—supporting applications
from large-scale data synthesis and policy evaluation to interactive simulation and scene restoration.
</p>
</div>
<br>
</section>
<style>
#definition .wb-bridge {
font-size: 1rem;
line-height: 1.7;
color: #374151;
margin: 1rem 0 .75rem;
}
#definition .wb-grid-4 {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1.25rem;
margin-top: .5rem;
}
@media (max-width: 1200px) {
#definition .wb-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
#definition .wb-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
#definition .wb-grid-4 { grid-template-columns: 1fr; }
}
#definition .wb-card h4 {
display: flex; align-items: center; gap: .5rem;
font-size: 1rem; margin: 0 0 .35rem;
}
#definition .wb-card p.small {
margin: .35rem 0; color: #4b5563; line-height: 1.6;
}
</style>
<section id="examples">
<h2>Generated 3D & 4D Contents</h2>
<div class="wb-kicker"><span class="icon is-small">
<img src="assets_common/icons/bench_videogen.png" style="height: 1.5em;" loading="lazy">
</span> VideoGen</div>
<div class="wb-hr" style="margin-bottom:1.25rem;"></div>
<section class="videogen" tabindex="0" aria-label="VideoGen Set A">
<div class="video-hero">
<video autoplay loop muted playsinline data-hero>
<source src="assets/survey/videos/gt_0.mp4" type="video/mp4" />
</video>
<div class="video-badge" data-hero-label>Reference</div>
</div>
<div class="thumb-bar" role="tablist" aria-label="Video methods A">
<button class="thumb is-active" role="tab" aria-selected="true"
data-src="assets/survey/videos/gt_0.mp4" data-label="Reference">
<img src="assets/survey/videos/images/gt_0.png" loading="lazy" />
<span>Reference</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/magicdrive_0.mp4" data-label="MagicDrive">
<img src="assets/survey/videos/images/magicdrive_0.png" loading="lazy" />
<span>MagicDrive</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/drivedreamer2_0.mp4" data-label="Drivedreamer2">
<img src="assets/survey/videos/images/drivedreamer2_0.png" loading="lazy" />
<span>DriveDreamer-2</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/dreamforge_0.mp4" data-label="Dreamforge">
<img src="assets/survey/videos/images/dreamforge_0.png" loading="lazy" />
<span>DreamForge</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/opendwm_0.mp4" data-label="OpenDWM">
<img src="assets/survey/videos/images/opendwm_0.png" loading="lazy" />
<span>OpenDWM</span>
</button>
</div>
</section>
<p></p>
<section class="videogen" tabindex="0" aria-label="VideoGen Set B">
<div class="video-hero">
<video autoplay loop muted playsinline data-hero>
<source src="assets/survey/videos/gt_1.mp4" type="video/mp4" />
</video>
<div class="video-badge" data-hero-label>Reference</div>
</div>
<div class="thumb-bar" role="tablist" aria-label="Video methods A">
<button class="thumb is-active" role="tab" aria-selected="true"
data-src="assets/survey/videos/gt_1.mp4" data-label="Reference">
<img src="assets/survey/videos/images/gt_1.png" loading="lazy" />
<span>Reference</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/magicdrive_1.mp4" data-label="MagicDrive">
<img src="assets/survey/videos/images/magicdrive_1.png" loading="lazy" />
<span>MagicDrive</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/drivedreamer2_1.mp4" data-label="Drivedreamer2">
<img src="assets/survey/videos/images/drivedreamer2_1.png" loading="lazy" />
<span>DriveDreamer-2</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/dreamforge_1.mp4" data-label="Dreamforge">
<img src="assets/survey/videos/images/dreamforge_1.png" loading="lazy" />
<span>DreamForge</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/opendwm_1.mp4" data-label="OpenDWM">
<img src="assets/survey/videos/images/opendwm_1.png" loading="lazy" />
<span>OpenDWM</span>
</button>
</div>
<p></p>
<section class="videogen" tabindex="0" aria-label="VideoGen Set C">
<div class="video-hero">
<video autoplay loop muted playsinline data-hero>
<source src="assets/survey/videos/gt_2.mp4" type="video/mp4" />
</video>
<div class="video-badge" data-hero-label>Reference</div>
</div>
<div class="thumb-bar" role="tablist" aria-label="Video methods C">
<button class="thumb is-active" role="tab" aria-selected="true"
data-src="assets/survey/videos/gt_2.mp4" data-label="Reference">
<img src="assets/survey/videos/images/gt_2.jpg" loading="lazy" />
<span>Reference</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/magicdrive_2.mp4" data-label="MagicDrive">
<img src="assets/survey/videos/images/magicdrive_2.jpg" loading="lazy" />
<span>MagicDrive</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/drivedreamer2_2.mp4" data-label="Drivedreamer2">
<img src="assets/survey/videos/images/drivedreamer2_2.jpg" loading="lazy" />
<span>DriveDreamer-2</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/dreamforge_2.mp4" data-label="Dreamforge">
<img src="assets/survey/videos/images/dreamforge_2.jpg" loading="lazy" />
<span>DreamForge</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/videos/opendwm_2.mp4" data-label="OpenDWM">
<img src="assets/survey/videos/images/opendwm_2.jpg" loading="lazy" />
<span>OpenDWM</span>
</button>
</div>
<br><br>
</section>
<div class="wb-kicker"><span class="icon is-small">
<img src="assets_common/icons/bench_occgen.png" style="height: 1.5em;" loading="lazy">
</span>OccGen</div>
<div class="wb-hr" style="margin-bottom:1.25rem;"></div>
<section class="videogen" tabindex="0" aria-label="VideoGen Set C">
<div class="video-hero">
<video autoplay loop muted playsinline data-hero>
<source src="assets/survey/occ_videos/dynamic_video/0_occ.mp4" type="video/mp4" />
</video>
<div class="video-badge" data-hero-label>Sample 1</div>
</div>
<div class="thumb-bar" role="tablist" aria-label="Video methods A">
<button class="thumb is-active" role="tab" aria-selected="true"
data-src="assets/survey/occ_videos/dynamic_video/1_occ.mp4" data-label="Sample1">
<img src="assets/survey/occ_videos/dynamic_video/0_bev_layout.png" loading="lazy" />
<span>Sample 1</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/occ_videos/dynamic_video/1_occ.mp4" data-label="Sample2">
<img src="assets/survey/occ_videos/dynamic_video/1_bev_layout.png" loading="lazy" />
<span>Sample 2</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/occ_videos/dynamic_video/2_occ.mp4" data-label="Sample3">
<img src="assets/survey/occ_videos/dynamic_video/2_bev_layout.png" loading="lazy" />
<span>Sample 3</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/occ_videos/dynamic_video/3_occ.mp4" data-label="Sample4">
<img src="assets/survey/occ_videos/dynamic_video/3_bev_layout.png" loading="lazy" />
<span>Sample 4</span>
</button>
<button class="thumb" role="tab" aria-selected="false"
data-src="assets/survey/occ_videos/dynamic_video/4_occ.mp4" data-label="Sample5">
<img src="assets/survey/occ_videos/dynamic_video/4_bev_layout.png" loading="lazy" />
<span>Sample 5</span>
</button>
</div>
<br><br>
</section>
<div class="wb-kicker"><span class="icon is-small">
<img src="assets_common/icons/bench_lidargen.png" style="height: 1.5em;" loading="lazy">
</span>LiDARGen</div>
<div class="wb-hr" style="margin-bottom:1.25rem;"></div>
<details class="data-switcher lazy-load"
aria-label="LiDAR Data Showcase"
data-client="https://worldbench.github.io/viser-client/"
data-base="https://worldbench.github.io/assets/survey/lidar_visers/"
data-query="&initialCameraPosition=10.885,9.746,4.995&initialCameraLookAt=2.343,1.204,-3.547&initialCameraUp=-0.000,-0.000,1.000">
<summary>(click to expand)</summary>
<div class="grid-2x2">
<iframe class="viseriframe" data-file="0.viser" loading="lazy" allowfullscreen></iframe>
<iframe class="viseriframe" data-file="1.viser" loading="lazy" allowfullscreen></iframe>
<iframe class="viseriframe" data-file="2.viser" loading="lazy" allowfullscreen></iframe>
<iframe class="viseriframe" data-file="3.viser" loading="lazy" allowfullscreen></iframe>
</div>
<div class="method-bar" role="tablist" aria-label="Methods">
<button class="method-btn is-active" role="tab" aria-selected="true" data-method="lidargen">LiDARGen</button>
<button class="method-btn" role="tab" aria-selected="false" data-method="lidm">LiDM</button>
<button class="method-btn" role="tab" aria-selected="false" data-method="r2dm">R2DM</button>
<button class="method-btn" role="tab" aria-selected="false" data-method="uniscene">UniScene</button>
<button class="method-btn" role="tab" aria-selected="false" data-method="opendwm">OpenDWM</button>
<button class="method-btn" role="tab" aria-selected="false" data-method="lidarcrafter">LiDARCrafter</button>
</div>
</details>
<br><br>
</section>
<section id="projects">
<h2>Collections</h2>
<!-- <div class="wb-hr" style="margin-bottom:1.25rem;"></div> -->
</section>
<section id="video-papers" class="papers-section" data-section-key="video" data-initial="3">
<h2>Video Generation</h2>
<div class="bar" aria-live="polite">
<div class="tabs" role="tablist" aria-label="Video Generation Categories">
<button class="tab-btn tab-1" role="tab" aria-selected="true" aria-controls="video-panel-a" id="video-tab-a">Data Engines</button>
<button class="tab-btn tab-2" role="tab" aria-selected="false" aria-controls="video-panel-b" id="video-tab-b">Action Interpreters</button>
<button class="tab-btn tab-3" role="tab" aria-selected="false" aria-controls="video-panel-c" id="video-tab-c">Neural Simulators</button>
<button class="tab-btn tab-4" role="tab" aria-selected="false" aria-controls="video-panel-d" id="video-tab-d">Scene Reconstructors</button>
</div>
<div class="search" title="输入关键词过滤(标题、作者、出处)">
🔎 <input class="paper-search" type="search" placeholder="Search: Title / Author / Source" />
</div>
<span class="count">0 items</span>
</div>
<section id="video-panel-a" class="panel" role="tabpanel" aria-labelledby="video-tab-a" aria-hidden="false">
<div class="list"></div>
</section>
<section id="video-panel-b" class="panel" role="tabpanel" aria-labelledby="video-tab-b" aria-hidden="true">
<div class="list"></div>
</section>
<section id="video-panel-c" class="panel" role="tabpanel" aria-labelledby="video-tab-c" aria-hidden="true">
<div class="list"></div>
</section>
<section id="video-panel-d" class="panel" role="tabpanel" aria-labelledby="video-tab-d" aria-hidden="true">
<div class="list"></div>
</section>
</section>
<section id="projects">
<hr>
</section>
<section id="occupancy-papers" class="papers-section" data-section-key="occupancy">
<h2>Occupancy Generation</h2>
<div class="bar" aria-live="polite">
<div class="tabs" role="tablist" aria-label="Occupancy Generation Categories">
<button class="tab-btn tab-1" role="tab" aria-selected="true" aria-controls="occupancy-panel-a" id="occupancy-tab-a">Scene Representors</button>
<button class="tab-btn tab-2" role="tab" aria-selected="false" aria-controls="occupancy-panel-b" id="occupancy-tab-b">Occupancy Forecasters</button>
<button class="tab-btn tab-3" role="tab" aria-selected="false" aria-controls="occupancy-panel-c" id="occupancy-tab-c">Autoregressive Simulators</button>
<!-- <button class="tab-btn tab-4" role="tab" aria-selected="false" aria-controls="video-panel-d" id="video-tab-d">Scene Reconstructors</button> -->
</div>
<div class="search" title="输入关键词过滤(标题、作者、出处)">
🔎 <input class="paper-search" type="search" placeholder="Search: Title / Author / Source" />
</div>
<span class="count">0 items</span>
</div>
<section id="occupancy-panel-a" class="panel" role="tabpanel" aria-labelledby="occupancy-tab-a" aria-hidden="false">
<div class="list"></div>
</section>
<section id="occupancy-panel-b" class="panel" role="tabpanel" aria-labelledby="occupancy-tab-b" aria-hidden="true">
<div class="list"></div>
</section>
<section id="occupancy-panel-c" class="panel" role="tabpanel" aria-labelledby="occupancy-tab-c" aria-hidden="true">
<div class="list"></div>.grid-2x2{
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: start;
gap: 12px;
}
.viseriframe{
width: 100%;
height: auto;
border: 0;
border-radius: 8px;
}
</section>
<section id="video-panel-d" class="panel" role="tabpanel" aria-labelledby="video-tab-d" aria-hidden="true">
<div class="list"></div>
</section>
</section>
<section id="projects">
<hr>
</section>
<section id="lidar-papers" class="papers-section" data-section-key="lidar">
<h2>LiDAR Generation</h2>
<div class="bar" aria-live="polite">
<div class="tabs" role="tablist" aria-label="LiDAR Generation Categories">
<button class="tab-btn tab-1" role="tab" aria-selected="true" aria-controls="lidar-panel-a" id="lidar-tab-a">Data Engines</button>
<button class="tab-btn tab-2" role="tab" aria-selected="false" aria-controls="lidar-panel-b" id="lidar-tab-b">Action Interpreters</button>
<button class="tab-btn tab-3" role="tab" aria-selected="false" aria-controls="lidar-panel-c" id="lidar-tab-c">Autoregressive Simulators</button>
</div>
<div class="search" title="输入关键词过滤(标题、作者、出处)">
🔎 <input class="paper-search" type="search" placeholder="Search: Title / Author / Source" />
</div>
<span class="count">0 items</span>
</div>
<section id="lidar-panel-a" class="panel" role="tabpanel" aria-labelledby="lidar-tab-a" aria-hidden="false">
<div class="list"></div>
</section>
<section id="lidar-panel-b" class="panel" role="tabpanel" aria-labelledby="lidar-tab-b" aria-hidden="true">
<div class="list"></div>
</section>
<section id="lidar-panel-c" class="panel" role="tabpanel" aria-labelledby="lidar-tab-c" aria-hidden="true">
<div class="list"></div>
</section>
<section id="video-panel-d" class="panel" role="tabpanel" aria-labelledby="video-tab-d" aria-hidden="true">
<div class="list"></div>
</section>
</section>
<br>
<!-- <d-appendix>
<h3>BibTeX</h3>
<p class="bibtex">
@article{kong2025worldbench,<br>
title={WorldBench: Benchmarking 3D and 4D World Models in the Real World},<br>
author={WorldBench Team},<br>
journal={arXiv preprint arXiv:2508.xxxxx},<br>
year={2025},<br>
}
</p>
<d-footnote-list></d-footnote-list>
<d-citation-list></d-citation-list>
</d-appendix> -->
<section id="contributors">
<br><br>
<div class="wb-section">
<h2>Contributors</h2>
<div class="contributors-list">
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/lingdong_kong.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Lingdong Kong</div>
<div class="contributor-note">Core Contributor, Project Lead</div>
</div>
<div class="contributor-links">
<a href="mailto:lingdong.kong@u.nus.edu" aria-label="Email"><i class="fas fa-envelope"></i> </a>
<a href="https://ldkong.com" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=-j1j7TkAAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/ldkong1205/" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
<a href="https://www.linkedin.com/in/ldkong/" target="_blank" aria-label="LinkedIn"> <i class="fab fa-linkedin"></i> </a>
<a href="https://twitter.com/ldkong1205" target="_blank" aria-label="X (Twitter)"> <i class="fab fa-twitter"> </i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/icons/worldbench-circle.png"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Wesley Yang</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/jianbiao_mei.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Jianbiao Mei</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="https://jianbiaomei.github.io/" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=OUtPkg0AAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/Jieqianyu" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/youquan_liu.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Youquan Liu</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="https://openreview.net/profile?id=~Youquan_Liu1" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=J9a48hMAAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/youquanl" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/ao_liang.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Ao Liang</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="https://alanliangc.github.io/" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=ocyBGGYAAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/AlanLiangC" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/dekai_zhu.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Dekai Zhu</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="https://dekai21.github.io/" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=rehMAJUAAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/Dekai21" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
<a href="https://de.linkedin.com/in/dekai-zhu-621573208" target="_blank" aria-label="LinkedIn"> <i class="fab fa-linkedin"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/dongyue_lu.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Dongyue Lu</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
<a href="" target="_blank" aria-label="LinkedIn"> <i class="fab fa-linkedin"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/wei_yin.jpeg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Wei Yin</div>
<div class="contributor-note">Core Contributor</div>
</div>
<div class="contributor-links">
<a href="https://yvanyin.xyz/" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="https://scholar.google.com/citations?user=ZIf_rtcAAAAJ&hl=en" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="https://github.com/YvanYin" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
<a href="https://www.linkedin.com/in/wei-yin-28b64b167/" target="_blank" aria-label="LinkedIn"> <i class="fab fa-linkedin"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/xiaotao_hu.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Xiaotao Hu</div>
<div class="contributor-note">Contributor, VideoGen</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/mingkai_jia.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Mingkai Jia</div>
<div class="contributor-note">Contributor, VideoGen</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/junyuan_deng.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Junyuan Deng</div>
<div class="contributor-note">Contributor, VideoGen</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>
<a href="" target="_blank" aria-label="GitHub"> <i class="fab fa-github"></i> </a>
</div>
</div>
<!-- Row -->
<div class="contributor-row">
<img class="contributor-photo"
src="assets_common/photos/kaiwen_zhang.jpg"
loading="lazy" width="56" height="56">
<div class="contributor-text">
<div class="contributor-name">Kaiwen Zhang</div>
<div class="contributor-note">Contributor, VideoGen</div>
</div>
<div class="contributor-links">
<a href="" target="_blank" aria-label="Homepage"><i class="fas fa-globe"></i> </a>
<a href="" target="_blank" aria-label="Google Scholar"> <i class="ai ai-google-scholar"></i> </a>