-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
636 lines (500 loc) · 23.5 KB
/
index.html
File metadata and controls
636 lines (500 loc) · 23.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UltraViCo: Breaking Extrapolation Limits in Video Diffusion Transformers</title>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-PYVRSFMDRL');
document.addEventListener('DOMContentLoaded', function () {
const toggleButton = document.getElementById('toggleButton');
const tocContent = document.getElementById('tocContent');
const tocHeader = document.querySelector('.toc-header');
function toggleMenu() {
tocContent.classList.toggle('collapsed');
toggleButton.textContent = tocContent.classList.contains('collapsed') ? '▶' : '▼';
}
tocHeader.addEventListener('click', toggleMenu);
});
</script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['//(', '//)']] // 定义行内公式的定界符(例如 $...$ 或 /(.../))
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<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=Google+Sans&family=Noto+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="./static/css/bulma-slider.min.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="preload" href="./static/css/index.css" as="style">
<link rel="stylesheet" href="./static/css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script defer src="./static/js/bulma-carousel.min.js"></script>
<script defer src="./static/js/bulma-slider.min.js"></script>
<script defer src="./static/js/index.js"></script>
</head>
<body>
<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="has-text-centered">
<img src="ultravico_logo.png" alt="Logo" style="max-height: 50px;">
</div>
<h4 class="title is-3 publication-title">UltraViCo: Breaking Extrapolation Limits in Video Diffusion Transformers</h4>
<div class="is-size-6 publication-authors">
<span class="author-block">
<a href="https://gracezhao1997.github.io/">Min Zhao*</a><sup>1,2</sup>,
</span>
<span class="author-block">
<a href="https://zhuhz22.github.io/">Hongzhou Zhu*</a><sup>1,2</sup>,
</span>
<span class="author-block">
<a href="https://voyagerthu.github.io/minimal-light/">Yingze Wang</a><sup>1</sup>,
</span>
<span class="author-block">
<a href="https://github.com/KasenYoung">Bokai Yan</a><sup>4</sup>,
</span>
<span class="author-block">
<a href="https://gracezhao1997.github.io/">Jintao Zhang</a><sup>1,2</sup>,
</span>
<span class="author-block">
<a href="https://guandehe.github.io/">Guande He</a><sup>3</sup>,
</span>
<span class="author-block">
<a href="https://zhenxuan00.github.io/">Ling Yang</a><sup>5</sup>,
</span>
<span class="author-block">
<a href="https://zhenxuan00.github.io/">Chongxuan Li</a><sup>4</sup>,
</span>
<span class="author-block">
<a href="https://ml.cs.tsinghua.edu.cn/~jun/index.shtml">Jun Zhu</a><sup>1,2</sup>
</span>
</div>
<br>
<div class="is-size-6 publication-authors">
<span class="author-block"><sup>1</sup>THU,</span>
<span class="author-block"><sup>2</sup>ShengShu,</span>
<span class="author-block"><sup>3</sup>UT-Austin,</span>
<span class="author-block"><sup>4</sup>RUC,</span>
<span class="author-block"><sup>5</sup>Princeton</span>
</div>
<br>
<span class="link-block">
<a href="https://arxiv.org/abs/2511.20123" target="_blank" class="external-link ">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>arXiv</span>
</a>
</span>
<span class="link-block">
<a href="https://github.com/thu-ml/DiT-Extrapolation" target="_blank" class="external-link ">
<span class="icon">
<svg class="svg-inline--fa fa-github fa-w-16" aria-hidden="true" focusable="false" data-prefix="fab" data-icon="github" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512" data-fa-i2svg=""><path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path></svg><!-- <i class="fab fa-github"></i> Font Awesome fontawesome.com -->
</span>
<span>Code</span>
</a>
</span>
<!-- <br><br>
<div>
<p style="color:black;font-size: 20px; font-weight: bold; color: rgb(25, 100, 201);">
<span style="color: black;">TL;DR:</span> Effortlessly extend your video with just one line of code:
<span style="font-family: 'Courier New', Courier, monospace; color: rgb(248, 151, 6);">freq[k-1]=(2*np.pi)/(L*s).</span>
</p>
</div> -->
</div>
</div>
</div>
</div>
</section>
<section class="hero is-small">
<div class="hero-body ">
<hr>
<div class="container " id="abstract">
<h2 id="obj-comparison" class="title is-4 has-text-centered">Overview</h2>
<figure class="image is-centered" style="display: flex; justify-content: center; align-items: center;">
<img src="images/overview.png" style="width: 70%; height: auto;">
</figure>
<div class="content has-text-justified" style="font-size: 1.5rem; line-height: 1.8;">
<p style="color:black;">
<br>
<span style="color: rgb(25, 100, 201);font-weight: bold">Motivation:</span>
Despite advances, video diffusion transformers still struggle to generalize beyond their training length.
We identify two failure modes: <span style="font-weight: bold">model-specific periodic content repetition </span> and a <span style="font-weight: bold">universal quality degradation</span>.
Prior works attempt to solve repetition via positional encodings, overlooking quality degradation and achieving only limited extrapolation.
In this paper, we revisit this challenge from a more fundamental view— <span style="font-weight: bold">attention maps</span>,
which directly govern how context influences outputs.
<br>
<br>
<span style="color: rgb(25, 100, 201);font-weight: bold">Analysis:</span>
We identify that both failure modes arise from a unified cause: attention dispersion, where tokens beyond the training window dilute learned attention patterns. This leads to quality degradation and repetition emerges as a special case when this dispersion becomes structured into periodic attention patterns, induced by harmonic properties of positional encodings.
<br>
<br>
<span style="color: rgb(25, 100, 201);font-weight: bold">Method:</span>
Building on this insight, we propose UltraViCo, a training-free, plug-and-play method that suppresses attention for tokens beyond the training window via a constant decay factor. By jointly addressing both failure modes, we outperform a broad set of baselines largely across models and extrapolation ratios, pushing the extrapolation limit from 2× to 4×
</p>
</div>
</div>
<br>
<hr>
<div class="container " id="text2short">
<h2 id="obj-comparison" class="title is-4 has-text-centered">Training-free 3× Extrapolation
</h2>
</div>
<br>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_1.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_2.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_3.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_4.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_5.mp4"
type="video/mp4">
</video>
</div>
</div>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_4.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_5.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_1.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_4.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_5.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\3x_1.mp4"
type="video/mp4">
</video>
</div>
</div>
<br>
<br>
<div class="container " id="text2long">
<h2 id="obj-comparison" class="title is-4 has-text-centered"> Training-free 4× Extrapolation
</h2>
</div>
<br>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\4x_1.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\4x_2.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\4x_3.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\extrapolation\4x_2.mp4"
type="video/mp4">
</video>
</div>
</div>
<!-- <div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos/free2/seed42_The Glenfinnan Viaduct is a historic railway bridge in Scotland, UK, that crosses over the west high.mp4"
type="video/mp4">
</video>
<p class="prompt-text">The Glenfinnan Viaduct is a historic railway bridge in Scotland, UK, that crosses over the west highland line between the towns of Mallaig and Fort William. It is a stunning sight as a steam train leaves the bridge, traveling over the arch-covered viaduct. The landscape is dotted with lush greenery and rocky mountains, creating a picturesque backdrop for the train journey. The sky is blue and the sun is shining, making for a beautiful day to explore this majestic spot.
</p>
</div>
<div class="item">
<video id="berliner" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos/free2/r049/seed42_At a serene lakeside, an amateur photographer adjusts the settings on his camera, preparing to captu.mp4"
type="video/mp4">
</video>
<p class="prompt-text">At a serene lakeside, an amateur photographer adjusts the settings on his camera, preparing to capture the sunset. He starts by focusing on the distant horizon, snapping several shots. As the sun sinks lower, he moves closer to the water’s edge, crouching down to frame the reflection of the sky in the lake. Finally, standing up, he captures the final moments of daylight, the sky ablaze with color. </p>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos/free2/seed42_A person in a red tracksuit pours something out of a cup..mp4"
type="video/mp4">
</video>
<p class="prompt-text">A person in a red tracksuit pours something out of a cup.
</p>
</div>
<div class="item">
<video id="cereal" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos/free2/seed42_A man with facial hair, dressed in a plaid shirt, is seated playing an acoustic guitar and singing w.mp4"
type="video/mp4">
</video>
<p class="prompt-text">A man with facial hair, dressed in a plaid shirt, is seated playing an acoustic guitar and singing with visible enjoyment and passion. He is in an indoor setting with a simple gray background, accompanied by a guitar amplifier and a microphone stand to his left, and a stack of "Guitar World" books to his right. The camera maintains a fixed medium shot, capturing his expressive face and hand movements on the guitar strings. The visual quality is clear and unembellished, focusing on the performance without distractions.
</p>
</div>
</div> -->
<br>
<br>
<br>
<hr>
<div class="container " id="text2long">
<h2 id="obj-comparison" class="title is-4 has-text-centered"> 3× Extrapolation of Wan-VACE for Downstream Tasks
</h2>
</div>
<br>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control1.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control2.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control3.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control1.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control2.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control3.mp4"
type="video/mp4">
</video>
</div>
</div>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control4.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control5.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control6.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control7.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control4.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control5.mp4"
type="video/mp4">
</video>
</div>
</div>
<div id="results-carousel" class="carousel results-carousel">
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control8.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control9.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control10.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control11.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control9.mp4"
type="video/mp4">
</video>
</div>
<div class="item">
<video id="item" controls preload="metadata" autoplay muted loop playsinline>
<source
src="videos\downstream\control10.mp4"
type="video/mp4">
</video>
</div>
</div>
<br>
<br>
<br>
<hr>
<section class="section" id="BibTeX">
<div class="container is-max-desktop content">
<h2 class="title">BibTeX</h2>
<pre><code>
@article{zhao2025ultravico,
title={UltraViCo: Breaking Extrapolation Limits in Video Diffusion Transformers},
author={Zhao, Min and Zhu, Hongzhou and Wang, Yingze and Yan, Bokai and Zhang, Jintao and He, Guande and Yang, Ling and Li, Chongxuan and Zhu, Jun},
journal={arXiv preprint arXiv:2511.20123},
year={2025}
}
</code></pre>
</div>
</section>
<footer class="footer">
<div class="container" align="center">
<div class="column is-8">
<div class="content">
<p style="color:black;">
This website template is borrowed from <a href="https://causvid.github.io/">CausVid</a> and <a href="https://fate-zero-edit.github.io/">Fate/Zero</a>.
</p>
</div>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function () {
var videos = document.querySelectorAll('#results-carousel video');
videos.forEach(function (video) {
var isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
if (!isMobile) {
if (!video.classList.contains('single_image_video')) {
video.setAttribute('autoplay', 'autoplay');
}
} else {
console.log('Autoplay disabled for mobile devices');
}
});
});
</script>
</body>
</html>