Skip to content

Commit

Permalink
pika1.5 and vidu1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yyvhang committed Nov 22, 2024
1 parent d2e9551 commit e889205
Show file tree
Hide file tree
Showing 6 changed files with 4,556 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +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/21```: We update results of Seaweed2.0 Pro, PixelDance2.0 Pro, Pika1.5 and Vidu1.5, 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
2 changes: 2 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ <h2 class="model-results-title">Check separate model videos: </h2>
<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>
<a href="specifc_model/Pika1.5/Pika1.5.html">Pika1.5 (Nov.)</a>
<a href="specifc_model/vidu1.5/vidu1.5.html">Vidu1.5 (Nov.)</a>
</div>
</section>

Expand Down
72 changes: 72 additions & 0 deletions docs/specifc_model/Pika1.5/Pika1.5.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>Pika1.5 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> Pika1.5 (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://pika.art/">Pika1.5</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="./Pika1.5.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 e889205

Please sign in to comment.