惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
IT之家
IT之家
Google DeepMind News
Google DeepMind News
D
Docker
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
月光博客
月光博客
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Replicate's blog

How to make remarkable videos with Seedance 2.0 – Replicate blog How to prompt Seedream 5.0 – Replicate blog Recraft V4: image generation with design taste – Replicate blog Run Isaac 0.1 on Replicate – Replicate blog Run FLUX.2 on Replicate – Replicate blog How to prompt Nano Banana Pro – Replicate blog Retro Diffusion's pixel art models are now on Replicate – Replicate blog Replicate is joining Cloudflare – Replicate blog Extract text from documents and images with Datalab Marker and OCR – Replicate blog How to prompt Veo 3.1 – Replicate blog IBM's Granite 4.0 is now on Replicate – Replicate blog Which image editing model should I use? – Replicate blog Introducing our new search API – Replicate blog Torch compile caching for inference speed – Replicate blog Announcing Replicate's remote MCP server – Replicate blog How to prompt Veo 3 with images – Replicate blog Open source video is back – Replicate blog Generate consistent characters – Replicate blog Bria is now on Replicate – Replicate blog How we optimized FLUX.1 Kontext [dev] – Replicate blog Compare AI video models – Replicate blog The FLUX.1 Kontext hackathon – Replicate blog How to prompt Veo 3 for the best results – Replicate blog Get the most from Google Veo 3 – Replicate blog FLUX.1 Kontext from the community – Replicate blog Use FLUX.1 Kontext to edit images with words – Replicate blog Generate incredible images with Google's Imagen 4 – Replicate blog Run OpenAI’s latest models on Replicate – Replicate blog NVIDIA H100 GPUs are here – Replicate blog Run 30,000+ LoRAs on Hugging Face with Replicate – Replicate blog
You can now fine-tune open-source video models – Replicat...
2025-01-24 · via Replicate's blog

Posted January 24, 2025 by

AI video generation has gotten really good.

Some of the best video models like tencent/hunyuan-video are open-source, and the community has been hard at work building on top of them. We’ve adapted the Musubi Tuner by @kohya_tech to run on Replicate, so you can fine-tune HunyuanVideo on your own visual content.

Never Gonna Give You Up animal edition, courtesy of @flngr and @fofr.

HunyuanVideo is good at capturing the style of the training data, not only in the visual appearance of the imagery and the color grading, but also in the motion of the camera and the way the characters move.

This in-motion style transfer is unique to this implementation: other video models that are trained only on images cannot capture it.

Here are some examples of videos created using different fine-tunes, all with the same settings, size, prompt and seed:

Twin Peaks
Pixar
Cowboy Bebop
Westworld

You can make your own fine-tuned video model to:

  • Create videos in a specific visual style
  • Generate animations of particular characters
  • Capture specific types of motion or movement
  • Build custom video effects

In this post, we’ll show you how to gather training data, create a fine-tuned video model, and generate videos with it.

Prerequisites

  • A Replicate account
  • A video or YouTube URL to use as training data

Step 1: Create your training data

To train a video model, you’ll need a dataset of video clips and text captions describing each video.

This process can be time-consuming, so we’ve created a model to make it easier: zsxkib/create-video-dataset takes a video file or YouTube URL as input, slices it into smaller clips, and generates captions for each clip.

Here’s how to create training data right in your browser with just a few clicks:

  1. Find a YouTube URL (or video file) that you want to use for training.
  2. Go to replicate.com/zsxkib/create-video-dataset
  3. Paste your video URL, or upload a video file from your computer.
  4. Choose a unique trigger word like RCKRLL. Avoid using real words that have existing associations.
  5. Click Run and download the resulting ZIP file.

Optional: Check out the logs from your training run if you want to see the auto-generated captions for each clip.

Step 2: Train your model

Now you’ll create your own fine-tuned video generation model using the training data you just compiled.

  1. Go to replicate.com/zsxkib/hunyuan-video-lora/train
  2. Choose a name for your model.
  3. For the input_videos input, upload the ZIP file you just downloaded.
  4. Enter the same trigger word you used before, e.g. RCKRLL
  5. Adjust training settings (we recommend starting with 2 epochs)
  6. Click Create training

Training typically takes about 5-10 minutes with default settings, but depends on the size and number of clips.

Step 3: Run your model

Once the training is complete, you can generate new videos in several ways:

  • Run the model in your browser directly from your model’s page.
  • Run your model in Replicate’s Playground: Go to “Manage models” and type your model name.
  • Use the API: Go to your model’s page and click the API tab for code snippets.

You can run your model as an API with just a few lines of code.

Here’s an example using the replicate-javascript client:

Step 4: Experiment for best results

Video fine-tuning is pretty new, so we’re still learning what works best.

Here are some early tips:

  • Use a unique trigger word that doesn’t have associations with real words.
  • Experiment with training settings:
    • More epochs == better quality but longer training time
    • Adjust the LoRA rank
    • Increase batch size to speed up training
    • Use max_steps to control training duration precisely
  • If training looks like it’s going to take several hours, cancel it and try:
    • Reducing the number of epochs
    • Reducing the rank
    • Increasing batch size
  • Check the GitHub README for detailed parameter explanations

Extra credit: Train new models programmatically

If you want to automate the process or build applications, you can use our API.

Here’s an example of how to train a new model programmatically using the Replicate Python client:

What’s next?

Fine-tuning video models is in its early days, so we don’t really know yet what is possible, and what might be able to be built on top of it.

Give it a try and show us what you’ve made on Discord, or tag @replicate on X.