Skip to content

Commit 218c20e

Browse files
committed
add Mochi1
1 parent b2e9119 commit 218c20e

File tree

4 files changed

+1832
-0
lines changed

4 files changed

+1832
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434

3535
## 🔥 Project Updates
36+
- **News**: ```2024/11/01```: We update text-to-video results of [Mochi1](https://www.genmo.ai/blog), we use `cfg=6.0`, which is the same as their website.
3637
- **News**: ```2024/10/19```: We update 1k text-to-video results of [Meta-MovieGen](https://ai.meta.com/research/movie-gen/) (prompts are from MovieGenVideoBench); please check [here](https://ailab-cvc.github.io/VideoGen-Eval/specifc_model/MovieGen/MovieGen.html). **Plus, we make the pypi package `VGenEval` available, you can easily obtain all input prompts (text, image, video) corresponding to any ID through jsut one line of code.**
3738
- **News**: ```2024/10/14```: We update results of Minimax image-to-video generation, please check [here](https://ailab-cvc.github.io/VideoGen-Eval/specifc_model/minimax/minimax.html).
3839
- **News**: ```2024/10/08```: VideoGen-Eval-1.0 is available, please check the [Project Page](https://ailab-cvc.github.io/VideoGen-Eval/) and [Technical Report](http://arxiv.org/abs/2410.05227) for more details.

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ <h2 class="model-results-title">Check separate model videos: </h2>
9393
<a href="specifc_model/Easyanimate/Easyanimate.html">EasyAnimate-V4 (Aug.)</a>
9494
<a href="specifc_model/opensora/opensora.html">OpenSORA-1.2 (Jun.)</a>
9595
<a href="specifc_model/MovieGen/MovieGen.html">Meta-MovieGen (Oct.)</a>
96+
<a href="specifc_model/mochi1/Mochi1.html">Mochi1 (Nov.)</a>
9697
</div>
9798
</section>
9899

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Mochi1 Results</title>
7+
<link rel="stylesheet" href="../css/specific_styles.css">
8+
</head>
9+
<body>
10+
<main>
11+
<header>
12+
<div class="header-left">
13+
<a href="../../index.html" class="back-to-main">← Back to Main</a>
14+
<div class="logo">
15+
<span></span> Meta MovieGen (Nov.)
16+
</div>
17+
</div>
18+
<nav class="category-nav">
19+
<a href="#text-to-video" class="category-button">Text-to-Video</a>
20+
</nav>
21+
</header>
22+
<section class="intro">
23+
<h1>Videos Generated by <a href="https://www.genmo.ai/blog">Mochi1</a></h1>
24+
</section>
25+
26+
<section id="text-to-video">
27+
<h1>Text-to-Video</h1>
28+
<div class="projects-container" id="gallery1">
29+
<div class="projects">
30+
</div>
31+
</div>
32+
</section>
33+
</main>
34+
35+
<script src="./Mochi1.js"></script>
36+
<script>
37+
// 平滑滚动
38+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
39+
anchor.addEventListener('click', function (e) {
40+
e.preventDefault();
41+
document.querySelector(this.getAttribute('href')).scrollIntoView({
42+
behavior: 'smooth'
43+
});
44+
});
45+
});
46+
47+
// 高亮当前活动的导航项
48+
const navLinks = document.querySelectorAll('.category-button');
49+
const sections = document.querySelectorAll('section');
50+
51+
function changeLinkState() {
52+
let index = sections.length;
53+
54+
while(--index && window.scrollY + 50 < sections[index].offsetTop) {}
55+
56+
navLinks.forEach((link) => link.classList.remove('active'));
57+
navLinks[index - 1].classList.add('active');
58+
}
59+
60+
window.addEventListener('scroll', changeLinkState);
61+
</script>
62+
63+
</body>
64+
</html>

0 commit comments

Comments
 (0)