Skip to content

Commit d2e9551

Browse files
committed
seaweed2.0_pro & pixeldance2.0_pro
1 parent bfde1d6 commit d2e9551

File tree

7 files changed

+5465
-1
lines changed

7 files changed

+5465
-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/21```: We update results of Seaweed2.0 Pro and PixelDance2.0 Pro, please check our website.
3637
- **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.
3738
- **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.
3839
- **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.**
@@ -85,7 +86,7 @@ pip install VGenEval
8586
from VGenEval import load_prompt
8687
results = load_prompt.get_prompts([id_list], 'test_model_name')
8788

88-
# results is a dict, {
89+
# result is a dict, {
8990
# 'text prompt': [],
9091
# 'visual prompt': [], return the url of the input image or video
9192
# 'save name': [], We have standardized the save name

docs/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ <h2 class="model-results-title">Check separate model videos: </h2>
9696
<a href="specifc_model/mochi1/Mochi1.html">Mochi1 (Nov.)</a>
9797
<a href="specifc_model/Seaweed/Seaweed.html">Seaweed (Nov.)</a>
9898
<a href="specifc_model/PixVerse/PixVerse.html">PixVerse-V3 (Nov.)</a>
99+
<a href="specifc_model/PixelDance/Pixel.html">PixelDance2.0 Pro (Nov.)</a>
100+
<a href="specifc_model/Seaweed_pro/Seaweed_pro.html">Seaweed2.0 Pro (Nov.)</a>
99101
</div>
100102
</section>
101103

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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>PixelDance2.0 Pro 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> PixelDance2.0 Pro (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://jimeng.jianying.com/ai-tool/home">PixelDance2.0 Pro</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+
</div>
32+
</div>
33+
</section>
34+
<section id="image-to-video">
35+
<h1>Image-to-Video</h1>
36+
<div class="projects-container" id="gallery2">
37+
<div class="projects">
38+
</div>
39+
</div>
40+
</section>
41+
</main>
42+
43+
<script src="./Pixel.js"></script>
44+
<script>
45+
// 平滑滚动
46+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
47+
anchor.addEventListener('click', function (e) {
48+
e.preventDefault();
49+
document.querySelector(this.getAttribute('href')).scrollIntoView({
50+
behavior: 'smooth'
51+
});
52+
});
53+
});
54+
55+
// 高亮当前活动的导航项
56+
const navLinks = document.querySelectorAll('.category-button');
57+
const sections = document.querySelectorAll('section');
58+
59+
function changeLinkState() {
60+
let index = sections.length;
61+
62+
while(--index && window.scrollY + 50 < sections[index].offsetTop) {}
63+
64+
navLinks.forEach((link) => link.classList.remove('active'));
65+
navLinks[index - 1].classList.add('active');
66+
}
67+
68+
window.addEventListener('scroll', changeLinkState);
69+
</script>
70+
71+
</body>
72+
</html>

0 commit comments

Comments
 (0)