Skip to content

Commit e56876f

Browse files
committed
add teaser
1 parent 950c300 commit e56876f

31 files changed

Lines changed: 15 additions & 13 deletions

.DS_Store

0 Bytes
Binary file not shown.

assets/css/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -999,8 +999,9 @@ blockquote {
999999
overflow: hidden;
10001000
}
10011001
.project-card-media img {
1002+
background: #f7faf8;
10021003
height: 100%;
1003-
object-fit: cover;
1004+
object-fit: contain;
10041005
width: 100%;
10051006
}
10061007
.project-card-fallback {

assets/data/projects.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ window.MATRIX_PROJECT_INDEX = {
2121
"title": "MAMBO-G: Magnitude-Aware Mitigation for Boosted Guidance",
2222
"description": "MAMBO-G is a training-free, plug-and-play adaptive guidance schedule for fast text-to-image and text-to-video generation. It damps risky early guidance updates by measuring the update-to-prediction magnitude ratio.",
2323
"url": "pages/Mambo-g/",
24-
"image": "pages/Mambo-g/static/images/figs/0_unify_guidance_10.png",
24+
"image": "pages/Mambo-g/static/images/mambo-g-cover-preview.gif",
2525
"status": "2026 preprint",
2626
"tags": [
2727
"diffusion",
@@ -35,7 +35,7 @@ window.MATRIX_PROJECT_INDEX = {
3535
"title": "RAIN: Real-time Animation Of Infinite Video Stream",
3636
"description": "A real-time animation system for infinite video streams, enabling low-latency virtual avatar animation from a single image on consumer-grade devices.",
3737
"url": "pages/RAIN/",
38-
"image": "pages/RAIN/images/pipeline.png",
38+
"image": "pages/RAIN/static/images/rain-home-preview.gif",
3939
"status": "",
4040
"tags": [
4141
"animation",
@@ -49,7 +49,7 @@ window.MATRIX_PROJECT_INDEX = {
4949
"title": "The Matrix: Infinite-Horizon World Generation with Real-Time Moving Control",
5050
"description": "A neural interactive simulation project for infinite-horizon world generation, real-time motion control, and AAA-game-scale visual environments.",
5151
"url": "pages/TheMatrix/",
52-
"image": "pages/TheMatrix/img/thematrix.png",
52+
"image": "pages/TheMatrix/static/images/the-matrix-home-preview.gif",
5353
"status": "",
5454
"tags": [
5555
"world models",
@@ -77,7 +77,7 @@ window.MATRIX_PROJECT_INDEX = {
7777
"title": "The Matrix Dataset",
7878
"description": "Dataset documentation for Matrix world-model research, covering collection, processing, source games, controls, and release information.",
7979
"url": "pages/TheMatrixDataset/",
80-
"image": "pages/TheMatrixDataset/matrix.jpg",
80+
"image": "pages/TheMatrixDataset/static/images/matrix-dataset-home-preview.gif",
8181
"status": "",
8282
"tags": [
8383
"dataset",

assets/data/projects.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"title": "MAMBO-G: Magnitude-Aware Mitigation for Boosted Guidance",
2222
"description": "MAMBO-G is a training-free, plug-and-play adaptive guidance schedule for fast text-to-image and text-to-video generation. It damps risky early guidance updates by measuring the update-to-prediction magnitude ratio.",
2323
"url": "pages/Mambo-g/",
24-
"image": "pages/Mambo-g/static/images/figs/0_unify_guidance_10.png",
24+
"image": "pages/Mambo-g/static/images/mambo-g-cover-preview.gif",
2525
"status": "2026 preprint",
2626
"tags": [
2727
"diffusion",
@@ -35,7 +35,7 @@
3535
"title": "RAIN: Real-time Animation Of Infinite Video Stream",
3636
"description": "A real-time animation system for infinite video streams, enabling low-latency virtual avatar animation from a single image on consumer-grade devices.",
3737
"url": "pages/RAIN/",
38-
"image": "pages/RAIN/images/pipeline.png",
38+
"image": "pages/RAIN/static/images/rain-home-preview.gif",
3939
"status": "",
4040
"tags": [
4141
"animation",
@@ -49,7 +49,7 @@
4949
"title": "The Matrix: Infinite-Horizon World Generation with Real-Time Moving Control",
5050
"description": "A neural interactive simulation project for infinite-horizon world generation, real-time motion control, and AAA-game-scale visual environments.",
5151
"url": "pages/TheMatrix/",
52-
"image": "pages/TheMatrix/img/thematrix.png",
52+
"image": "pages/TheMatrix/static/images/the-matrix-home-preview.gif",
5353
"status": "",
5454
"tags": [
5555
"world models",
@@ -77,7 +77,7 @@
7777
"title": "The Matrix Dataset",
7878
"description": "Dataset documentation for Matrix world-model research, covering collection, processing, source games, controls, and release information.",
7979
"url": "pages/TheMatrixDataset/",
80-
"image": "pages/TheMatrixDataset/matrix.jpg",
80+
"image": "pages/TheMatrixDataset/static/images/matrix-dataset-home-preview.gif",
8181
"status": "",
8282
"tags": [
8383
"dataset",

assets/js/project-index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
function card(project) {
2727
var image = project.image
28-
? '<div class="project-card-media"><img src="' + escapeHtml(project.image) + '" alt=""></div>'
28+
? '<div class="project-card-media"><img src="' + escapeHtml(project.image) + '" alt="' + escapeHtml(project.title) + ' cover" loading="lazy" decoding="async"></div>'
2929
: '<div class="project-card-media project-card-fallback"><span>' + escapeHtml(projectInitials(project.title)) + "</span></div>";
3030
var tags = Array.isArray(project.tags) && project.tags.length
3131
? '<div class="project-tags">' + project.tags.slice(0, 4).map(function (tag) {
5.86 MB
Loading

pages/Mambo-g/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"image": "static/images/mambo-g-cover-preview.gif",
23
"tags": ["diffusion", "guidance", "acceleration"],
34
"status": "2026 preprint"
45
}
2.72 MB
Loading

pages/RAIN/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "RAIN: Real-time Animation Of Infinite Video Stream",
33
"description": "A real-time animation system for infinite video streams, enabling low-latency virtual avatar animation from a single image on consumer-grade devices.",
4-
"image": "images/pipeline.png",
4+
"image": "static/images/rain-home-preview.gif",
55
"tags": ["animation", "video stream", "avatars"]
66
}
4.58 MB
Loading

0 commit comments

Comments
 (0)