Skip to content

Commit 67b9594

Browse files
committed
update seaweed and pixverse
1 parent 2a41236 commit 67b9594

File tree

7 files changed

+5568
-1
lines changed

7 files changed

+5568
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434

3535
## 🔥 Project Updates
36+
- **News**: ```2024/11/12```: We update results of [Seaweed](https://jimeng.jianying.com/ai-tool/home) and [PixVerse-V3](https://pixverse.ai/), please check our website.
3637
- **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.
3738
- **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.**
3839
- **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).
@@ -96,7 +97,7 @@ results = load_prompt.get_prompts([id_list], 'test_model_name')
9697
## 🦉 Job List
9798

9899
- [x] VideoGen-Eval-1.0 released
99-
- [ ] Add results of Seaweed, PixelDance, and MiracleVision.
100+
- [x] Add results of Seaweed, PixVerse.
100101
- [ ] Make the arena for video generation models.
101102

102103
<!-- CONTRIBUTING -->

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ <h2 class="model-results-title">Check separate model videos: </h2>
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>
9696
<a href="specifc_model/mochi1/Mochi1.html">Mochi1 (Nov.)</a>
97+
<a href="specifc_model/Seaweed/Seaweed.html">Seaweed (Nov.)</a>
98+
<a href="specifc_model/PixVerse/PixVerse.html">PixVerse-V3 (Nov.)</a>
9799
</div>
98100
</section>
99101

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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>PixVersev3 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> PixVersev3 (Nov.)
16+
</div>
17+
</div>
18+
<nav class="category-nav">
19+
<a href="#text-to-video" class="category-button">Text-to-Video</a>
20+
<a href="#image-to-video" class="category-button">Image-to-Video</a>
21+
</nav>
22+
</header>
23+
<section class="intro">
24+
<h1>Videos Generated by <a href="https://pixverse.ai/">PixVerse-V3</a></h1>
25+
</section>
26+
27+
<section id="text-to-video">
28+
<h1>Text-to-Video</h1>
29+
<div class="projects-container" id="gallery1">
30+
<div class="projects">
31+
<!-- 内容将由JavaScript动态加载 -->
32+
</div>
33+
</div>
34+
</section>
35+
36+
<section id="image-to-video">
37+
<h1>Image-to-Video</h1>
38+
<div class="projects-container" id="gallery2">
39+
<div class="projects">
40+
<!-- 内容将由JavaScript动态加载 -->
41+
</div>
42+
</div>
43+
</section>
44+
</main>
45+
46+
<script src="./PixVerse.js"></script>
47+
<script>
48+
// 平滑滚动
49+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
50+
anchor.addEventListener('click', function (e) {
51+
e.preventDefault();
52+
document.querySelector(this.getAttribute('href')).scrollIntoView({
53+
behavior: 'smooth'
54+
});
55+
});
56+
});
57+
58+
// 高亮当前活动的导航项
59+
const navLinks = document.querySelectorAll('.category-button');
60+
const sections = document.querySelectorAll('section');
61+
62+
function changeLinkState() {
63+
let index = sections.length;
64+
65+
while(--index && window.scrollY + 50 < sections[index].offsetTop) {}
66+
67+
navLinks.forEach((link) => link.classList.remove('active'));
68+
navLinks[index - 1].classList.add('active');
69+
}
70+
71+
window.addEventListener('scroll', changeLinkState);
72+
</script>
73+
74+
</body>
75+
</html>

0 commit comments

Comments
 (0)