ai-forever / Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

huggingface.co
Total runs: 780
24-hour runs: 0
7-day runs: 45
30-day runs: 460
Model's Last Updated: October 22 2025

Introduction of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

Model Details of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers


Kandinsky 5.0 T2V Lite - Diffusers

This repository provides the 🤗 Diffusers integration for Kandinsky 5.0 T2V Lite - a lightweight video generation model (2B parameters) that ranks #1 among open-source models in its class.

Project Updates
  • 🔥 2025/09/29 : We have open-sourced Kandinsky 5.0 T2V Lite a lite (2B parameters) version of Kandinsky 5.0 Video text-to-video generation model.
  • 🚀 Diffusers Integration : Now available with easy-to-use 🤗 Diffusers pipeline!
Kandinsky 5.0 T2V Lite

Kandinsky 5.0 T2V Lite is a lightweight video generation model (2B parameters) that ranks #1 among open-source models in its class. It outperforms larger Wan models (5B and 14B) and offers the best understanding of Russian concepts in the open-source ecosystem.

We provide 8 model variants, each optimized for different use cases:

  • SFT model — delivers the highest generation quality
  • CFG-distilled — runs 2× faster
  • Diffusion-distilled — enables low-latency generation with minimal quality loss (6× faster)
  • Pretrain model — designed for fine-tuning by researchers and enthusiasts
Basic Usage
import torch
from diffusers import Kandinsky5T2VPipeline
from diffusers.utils import export_to_video

# Load the pipeline
pipe = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers", 
    torch_dtype=torch.bfloat16
)
pipe = pipe.to("cuda")

# Generate video
prompt = "A cat and a dog baking a cake together in a kitchen."
negative_prompt = "Static, 2D cartoon, cartoon, 2d animation, paintings, images, worst quality, low quality, ugly, deformed, walking backwards"

output = pipe(
    prompt=prompt,
    negative_prompt=negative_prompt,
    height=512,
    width=768,
    num_frames=241,
    num_inference_steps=50,
    guidance_scale=5.0,
).frames[0]

## Save the video
export_to_video(output, "output.mp4", fps=24, quality=9)
Using Different Model Variants
import torch
from diffusers import Kandinsky5T2VPipeline

# 5s SFT model (highest quality)
pipe_sft = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-sft-5s-Diffusers",
    torch_dtype=torch.bfloat16
)

# 5s Distilled 16-step model (fastest)
pipe_distill = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-distilled16steps-5s-Diffusers", 
    torch_dtype=torch.bfloat16
)

# 5s No-CFG model (balanced speed/quality)
pipe_nocfg = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-nocfg-5s-Diffusers",
    torch_dtype=torch.bfloat16
)

# 5s Pretrain model (most diverse)
pipe_pretrain = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-pretrain-5s-Diffusers",
    torch_dtype=torch.bfloat16
)

# 10s SFT model (highest quality)
pipe_sft = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers",
    torch_dtype=torch.bfloat16
)

# 10s Distilled 16-step model (fastest)
pipe_distill = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-distilled16steps-10s-Diffusers", 
    torch_dtype=torch.bfloat16
)

# 10s No-CFG model (balanced speed/quality)
pipe_nocfg = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-nocfg-10s-Diffusers",
    torch_dtype=torch.bfloat16
)

# 10s Pretrain model (most diverse)
pipe_pretrain = Kandinsky5T2VPipeline.from_pretrained(
    "ai-forever/Kandinsky-5.0-T2V-Lite-pretrain-10s-Diffusers",
    torch_dtype=torch.bfloat16
)
Architecture

Latent diffusion pipeline with Flow Matching.

Diffusion Transformer (DiT) as the main generative backbone with cross-attention to text embeddings.

Qwen2.5-VL and CLIP provides text embeddings

HunyuanVideo 3D VAE encodes/decodes video into a latent space

DiT is the main generative module using cross-attention to condition on text

Pipeline Architecture
Model Architecture
Examples

Kandinsky 5.0 T2V Lite SFT

Kandinsky 5.0 T2V Lite Distill
Results Side-by-Side Evaluation The evaluation is based on the expanded prompts from the Movie Gen benchmark.
Distill Side-by-Side Evaluation
VBench Results
Beta Testing You can apply to participate in the beta testing of the Kandinsky Video Lite via the telegram bot.
@misc{kandinsky2025,
    author = {Alexey Letunovskiy, Maria Kovaleva, Ivan Kirillov, Lev Novitskiy, Denis Koposov,
              Dmitrii Mikhailov, Anna Averchenkova, Andrey Shutkin, Julia Agafonova, Olga Kim,
              Anastasiia Kargapoltseva, Nikita Kiselev, Vladimir Arkhipkin, Vladimir Korviakov,
              Nikolai Gerasimenko, Denis Parkhomenko, Anna Dmitrienko, Anastasia Maltseva,
              Kirill Chernyshev, Ilia Vasiliev, Viacheslav Vasilev, Vladimir Polovnikov,
              Yury Kolabushin, Alexander Belykh, Mikhail Mamaev, Anastasia Aliaskina,
              Tatiana Nikulina, Polina Gavrilova, Denis Dimitrov},
    title = {Kandinsky 5.0: A family of diffusion models for Video & Image generation},
    howpublished = {\url{https://github.com/ai-forever/Kandinsky-5}},
    year = 2025
}

@misc{mikhailov2025nablanablaneighborhoodadaptiveblocklevel,
      title={$\nabla$NABLA: Neighborhood Adaptive Block-Level Attention}, 
      author={Dmitrii Mikhailov and Aleksey Letunovskiy and Maria Kovaleva and Vladimir Arkhipkin
              and Vladimir Korviakov and Vladimir Polovnikov and Viacheslav Vasilev
              and Evelina Sidorova and Denis Dimitrov},
      year={2025},
      eprint={2507.13546},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2507.13546}, 
}

Runs of ai-forever Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers on huggingface.co

780
Total runs
0
24-hour runs
24
3-day runs
45
7-day runs
460
30-day runs

More Information About Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co Model

More Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers license Visit here:

https://choosealicense.com/licenses/apache-2.0

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co is an AI model on huggingface.co that provides Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers's model effect (), which can be used instantly with this ai-forever Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers model. huggingface.co supports a free trial of the Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers model, and also provides paid use of the Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers. Support call Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers model through api, including Node.js, Python, http.

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co Url

https://huggingface.co/ai-forever/Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

ai-forever Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers online free

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co is an online trial and call api platform, which integrates Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers's modeling effects, including api services, and provides a free online trial of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers, you can try Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers online for free by clicking the link below.

ai-forever Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers online free url in huggingface.co:

https://huggingface.co/ai-forever/Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers install

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers is an open source model from GitHub that offers a free installation service, and any user can find Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers on GitHub to install. At the same time, huggingface.co provides the effect of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers install, users can directly use Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers install url in huggingface.co:

https://huggingface.co/ai-forever/Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

Url of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers

Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co Url

Provider of Kandinsky-5.0-T2V-Lite-sft-10s-Diffusers huggingface.co

ai-forever
ORGANIZATIONS

Other API from ai-forever

huggingface.co

Total runs: 102.1K
Run Growth: -22.1K
Growth Rate: -21.35%
Updated:August 12 2026
huggingface.co

Total runs: 14.3K
Run Growth: 10.3K
Growth Rate: 73.33%
Updated:December 05 2023
huggingface.co

Total runs: 1.9K
Run Growth: 14
Growth Rate: 0.71%
Updated:December 12 2023
huggingface.co

Total runs: 1.1K
Run Growth: 699
Growth Rate: 68.66%
Updated:December 28 2023
huggingface.co

Total runs: 516
Run Growth: -161
Growth Rate: -31.51%
Updated:January 26 2023
huggingface.co

Total runs: 439
Run Growth: 110
Growth Rate: 26.44%
Updated:December 05 2023