Skip to content

Commit

Permalink
seaweed2.0_pro & pixeldance2.0_pro
Browse files Browse the repository at this point in the history
  • Loading branch information
yyvhang committed Nov 21, 2024
1 parent bfde1d6 commit d2e9551
Show file tree
Hide file tree
Showing 7 changed files with 5,465 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@


## 🔥 Project Updates
- **News**: ```2024/11/21```: We update results of Seaweed2.0 Pro and PixelDance2.0 Pro, please check our website.
- **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.
- **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.
- **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.**
Expand Down Expand Up @@ -85,7 +86,7 @@ pip install VGenEval
from VGenEval import load_prompt
results = load_prompt.get_prompts([id_list], 'test_model_name')

# results is a dict, {
# result is a dict, {
# 'text prompt': [],
# 'visual prompt': [], return the url of the input image or video
# 'save name': [], We have standardized the save name
Expand Down
2 changes: 2 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ <h2 class="model-results-title">Check separate model videos: </h2>
<a href="specifc_model/mochi1/Mochi1.html">Mochi1 (Nov.)</a>
<a href="specifc_model/Seaweed/Seaweed.html">Seaweed (Nov.)</a>
<a href="specifc_model/PixVerse/PixVerse.html">PixVerse-V3 (Nov.)</a>
<a href="specifc_model/PixelDance/Pixel.html">PixelDance2.0 Pro (Nov.)</a>
<a href="specifc_model/Seaweed_pro/Seaweed_pro.html">Seaweed2.0 Pro (Nov.)</a>
</div>
</section>

Expand Down
72 changes: 72 additions & 0 deletions docs/specifc_model/PixelDance/Pixel.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelDance2.0 Pro Results</title>
<link rel="stylesheet" href="../css/specific_styles.css">
</head>
<body>
<main>
<header>
<div class="header-left">
<a href="../../index.html" class="back-to-main">← Back to Main</a>
<div class="logo">
<span></span> PixelDance2.0 Pro (Nov.)
</div>
</div>
<nav class="category-nav">
<a href="#text-to-video" class="category-button">Text-to-Video</a>
<a href="#image-to-video" class="category-button">Image-to-Video</a>
</nav>
</header>
<section class="intro">
<h1>Videos Generated by <a href="https://jimeng.jianying.com/ai-tool/home">PixelDance2.0 Pro</a></h1>
</section>

<section id="text-to-video">
<h1>Text-to-Video</h1>
<div class="projects-container" id="gallery1">
<div class="projects">
</div>
</div>
</section>
<section id="image-to-video">
<h1>Image-to-Video</h1>
<div class="projects-container" id="gallery2">
<div class="projects">
</div>
</div>
</section>
</main>

<script src="./Pixel.js"></script>
<script>
// 平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});

// 高亮当前活动的导航项
const navLinks = document.querySelectorAll('.category-button');
const sections = document.querySelectorAll('section');

function changeLinkState() {
let index = sections.length;

while(--index && window.scrollY + 50 < sections[index].offsetTop) {}

navLinks.forEach((link) => link.classList.remove('active'));
navLinks[index - 1].classList.add('active');
}

window.addEventListener('scroll', changeLinkState);
</script>

</body>
</html>
Loading

0 comments on commit d2e9551

Please sign in to comment.