zai-org / CogVideoX1.5-5B-I2V

huggingface.co
Total runs: 2.0K
24-hour runs: 20
7-day runs: 297
30-day runs: 1.4K
Model's Last Updated: March 18 2025
image-to-video

Introduction of CogVideoX1.5-5B-I2V

Model Details of CogVideoX1.5-5B-I2V

CogVideoX1.5-5B-I2V

📄 中文阅读 | 🤗 Huggingface Space | 🌐 Github | 📜 arxiv

📍 Visit Qingying and the API Platform to experience the commercial video generation model

Model Introduction

CogVideoX is an open-source video generation model similar to QingYing . Below is a table listing information on the video generation models available in this generation:

Model Name CogVideoX1.5-5B CogVideoX1.5-5B-I2V (Current Repository)
Video Resolution 1360 * 768 Min(W, H) = 768
768 ≤ Max(W, H) ≤ 1360
Max(W, H) % 16 = 0
Inference Precision BF16 (recommended) , FP16, FP32, FP8*, INT8, not supported INT4
Single GPU Inference Memory Consumption BF16: 9GB minimum*
Multi-GPU Inference Memory Consumption BF16: 24GB* using diffusers
Inference Speed
(Step = 50, FP/BF16)
Single A100: ~1000 seconds (5-second video)
Single H100: ~550 seconds (5-second video)
Prompt Language English*
Max Prompt Length 224 Tokens
Video Length 5 or 10 seconds
Frame Rate 16 frames/second

Data Explanation

  • Testing with the diffusers library enabled all optimizations included in the library. This scheme has not been tested on non-NVIDIA A100/H100 devices. It should generally work with all NVIDIA Ampere architecture or higher devices. Disabling optimizations can triple VRAM usage but increase speed by 3-4 times. You can selectively disable certain optimizations, including:
pipe.enable_sequential_cpu_offload()
pipe.vae.enable_slicing()
pipe.vae.enable_tiling()
  • In multi-GPU inference, enable_sequential_cpu_offload() optimization needs to be disabled.
  • Using an INT8 model reduces inference speed, meeting the requirements of lower VRAM GPUs while retaining minimal video quality degradation, at the cost of significant speed reduction.
  • PytorchAO and Optimum-quanto can be used to quantize the text encoder, Transformer, and VAE modules, reducing CogVideoX’s memory requirements, making it feasible to run the model on smaller VRAM GPUs. TorchAO quantization is fully compatible with torch.compile , significantly improving inference speed. FP8 precision is required for NVIDIA H100 and above, which requires source installation of torch , torchao , diffusers , and accelerate . Using CUDA 12.4 is recommended.
  • Inference speed testing also used the above VRAM optimizations, and without optimizations, speed increases by about 10%. Only diffusers versions of models support quantization.
  • Models support English input only; other languages should be translated into English during prompt crafting with a larger model.

Note

  • Use SAT for inference and fine-tuning SAT version models. Check our GitHub for more details.
Getting Started Quickly 🤗

This model supports deployment using the Hugging Face diffusers library. You can follow the steps below to get started.

We recommend that you visit our GitHub to check out prompt optimization and conversion to get a better experience.

  1. Install the required dependencies
# diffusers (from source)
# transformers>=4.46.2
# accelerate>=1.1.1
# imageio-ffmpeg>=0.5.1
pip install git+https://github.com/huggingface/diffusers
pip install --upgrade transformers accelerate diffusers imageio-ffmpeg
  1. Run the code
import torch
from diffusers import CogVideoXImageToVideoPipeline
from diffusers.utils import export_to_video, load_image

prompt = "A little girl is riding a bicycle at high speed. Focused, detailed, realistic."
image = load_image(image="input.jpg")
pipe = CogVideoXImageToVideoPipeline.from_pretrained(
    "THUDM/CogVideoX1.5-5B-I2V",
    torch_dtype=torch.bfloat16
)

pipe.enable_sequential_cpu_offload()
pipe.vae.enable_tiling()
pipe.vae.enable_slicing()

video = pipe(
    prompt=prompt,
    image=image,
    num_videos_per_prompt=1,
    num_inference_steps=50,
    num_frames=81,
    guidance_scale=6,
    generator=torch.Generator(device="cuda").manual_seed(42),
).frames[0]

export_to_video(video, "output.mp4", fps=8)
Quantized Inference

PytorchAO and Optimum-quanto can be used to quantize the text encoder, transformer, and VAE modules to reduce CogVideoX's memory requirements. This allows the model to run on free T4 Colab or GPUs with lower VRAM! Also, note that TorchAO quantization is fully compatible with torch.compile , which can significantly accelerate inference.

# To get started, PytorchAO needs to be installed from the GitHub source and PyTorch Nightly.
# Source and nightly installation is only required until the next release.

import torch
from diffusers import AutoencoderKLCogVideoX, CogVideoXTransformer3DModel, CogVideoXImageToVideoPipeline
from diffusers.utils import export_to_video, load_image
from transformers import T5EncoderModel
from torchao.quantization import quantize_, int8_weight_only

quantization = int8_weight_only

text_encoder = T5EncoderModel.from_pretrained("THUDM/CogVideoX1.5-5B-I2V", subfolder="text_encoder",
                                              torch_dtype=torch.bfloat16)
quantize_(text_encoder, quantization())

transformer = CogVideoXTransformer3DModel.from_pretrained("THUDM/CogVideoX1.5-5B-I2V", subfolder="transformer",
                                                          torch_dtype=torch.bfloat16)
quantize_(transformer, quantization())

vae = AutoencoderKLCogVideoX.from_pretrained("THUDM/CogVideoX1.5-5B-I2V", subfolder="vae", torch_dtype=torch.bfloat16)
quantize_(vae, quantization())

# Create pipeline and run inference
pipe = CogVideoXImageToVideoPipeline.from_pretrained(
    "THUDM/CogVideoX1.5-5B-I2V",
    text_encoder=text_encoder,
    transformer=transformer,
    vae=vae,
    torch_dtype=torch.bfloat16,
)

pipe.enable_model_cpu_offload()
pipe.vae.enable_tiling()
pipe.vae.enable_slicing()

prompt = "A little girl is riding a bicycle at high speed. Focused, detailed, realistic."
image = load_image(image="input.jpg")
video = pipe(
    prompt=prompt,
    image=image,
    num_videos_per_prompt=1,
    num_inference_steps=50,
    num_frames=81,
    guidance_scale=6,
    generator=torch.Generator(device="cuda").manual_seed(42),
).frames[0]

export_to_video(video, "output.mp4", fps=8)

Additionally, these models can be serialized and stored using PytorchAO in quantized data types to save disk space. You can find examples and benchmarks at the following links:

Further Exploration

Feel free to enter our GitHub , where you'll find:

  1. More detailed technical explanations and code.
  2. Optimized prompt examples and conversions.
  3. Detailed code for model inference and fine-tuning.
  4. Project update logs and more interactive opportunities.
  5. CogVideoX toolchain to help you better use the model.
  6. INT8 model inference code.
Model License

This model is released under the CogVideoX LICENSE .

Citation
@article{yang2024cogvideox,
  title={CogVideoX: Text-to-Video Diffusion Models with An Expert Transformer},
  author={Yang, Zhuoyi and Teng, Jiayan and Zheng, Wendi and Ding, Ming and Huang, Shiyu and Xu, Jiazheng and Yang, Yuanming and Hong, Wenyi and Zhang, Xiaohan and Feng, Guanyu and others},
  journal={arXiv preprint arXiv:2408.06072},
  year={2024}
}

Runs of zai-org CogVideoX1.5-5B-I2V on huggingface.co

2.0K
Total runs
20
24-hour runs
153
3-day runs
297
7-day runs
1.4K
30-day runs

More Information About CogVideoX1.5-5B-I2V huggingface.co Model

More CogVideoX1.5-5B-I2V license Visit here:

https://choosealicense.com/licenses/other

CogVideoX1.5-5B-I2V huggingface.co

CogVideoX1.5-5B-I2V huggingface.co is an AI model on huggingface.co that provides CogVideoX1.5-5B-I2V's model effect (), which can be used instantly with this zai-org CogVideoX1.5-5B-I2V model. huggingface.co supports a free trial of the CogVideoX1.5-5B-I2V model, and also provides paid use of the CogVideoX1.5-5B-I2V. Support call CogVideoX1.5-5B-I2V model through api, including Node.js, Python, http.

CogVideoX1.5-5B-I2V huggingface.co Url

https://huggingface.co/zai-org/CogVideoX1.5-5B-I2V

zai-org CogVideoX1.5-5B-I2V online free

CogVideoX1.5-5B-I2V huggingface.co is an online trial and call api platform, which integrates CogVideoX1.5-5B-I2V's modeling effects, including api services, and provides a free online trial of CogVideoX1.5-5B-I2V, you can try CogVideoX1.5-5B-I2V online for free by clicking the link below.

zai-org CogVideoX1.5-5B-I2V online free url in huggingface.co:

https://huggingface.co/zai-org/CogVideoX1.5-5B-I2V

CogVideoX1.5-5B-I2V install

CogVideoX1.5-5B-I2V is an open source model from GitHub that offers a free installation service, and any user can find CogVideoX1.5-5B-I2V on GitHub to install. At the same time, huggingface.co provides the effect of CogVideoX1.5-5B-I2V install, users can directly use CogVideoX1.5-5B-I2V installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

CogVideoX1.5-5B-I2V install url in huggingface.co:

https://huggingface.co/zai-org/CogVideoX1.5-5B-I2V

Url of CogVideoX1.5-5B-I2V

CogVideoX1.5-5B-I2V huggingface.co Url

Provider of CogVideoX1.5-5B-I2V huggingface.co

zai-org
ORGANIZATIONS

Other API from zai-org

huggingface.co

Total runs: 1.9M
Run Growth: -1.4M
Growth Rate: -72.24%
Updated:September 11 2026
huggingface.co

Total runs: 1.9M
Run Growth: -106.5K
Growth Rate: -5.66%
Updated:January 29 2026
huggingface.co

Total runs: 1.6M
Run Growth: 1.3M
Growth Rate: 100.00%
Updated:September 07 2026
huggingface.co

Total runs: 1.3M
Run Growth: -706.1K
Growth Rate: -53.41%
Updated:September 01 2026
huggingface.co

Total runs: 941.9K
Run Growth: -1.8M
Growth Rate: -188.05%
Updated:September 01 2026
huggingface.co

Total runs: 669.0K
Run Growth: 626.7K
Growth Rate: 98.61%
Updated:September 04 2026
huggingface.co

Total runs: 442.1K
Run Growth: -4.8K
Growth Rate: -1.09%
Updated:August 04 2024
huggingface.co

Total runs: 250.3K
Run Growth: -212.3K
Growth Rate: -80.46%
Updated:April 16 2026
huggingface.co

Total runs: 203.0K
Run Growth: -733.7K
Growth Rate: -269.02%
Updated:April 05 2026
huggingface.co

Total runs: 97.0K
Run Growth: -187.4K
Growth Rate: -184.31%
Updated:August 11 2025
huggingface.co

Total runs: 87.1K
Run Growth: -1.8K
Growth Rate: -2.07%
Updated:March 13 2025
huggingface.co

Total runs: 84.0K
Run Growth: 3.7K
Growth Rate: 4.86%
Updated:January 29 2026
huggingface.co

Total runs: 80.8K
Run Growth: -43.5K
Growth Rate: -54.00%
Updated:August 11 2025
huggingface.co

Total runs: 78.8K
Run Growth: 8.0K
Growth Rate: 9.73%
Updated:May 13 2026
huggingface.co

Total runs: 77.4K
Run Growth: -82.6K
Growth Rate: -105.42%
Updated:December 10 2025
huggingface.co

Total runs: 76.3K
Run Growth: -8.1K
Growth Rate: -10.65%
Updated:December 05 2024
huggingface.co

Total runs: 58.9K
Run Growth: -63.5K
Growth Rate: -108.01%
Updated:August 11 2026
huggingface.co

Total runs: 44.9K
Run Growth: -82.9K
Growth Rate: -182.81%
Updated:October 25 2025
huggingface.co

Total runs: 22.0K
Run Growth: -2.3K
Growth Rate: -10.22%
Updated:November 23 2024
huggingface.co

Total runs: 20.5K
Run Growth: -62.9K
Growth Rate: -303.60%
Updated:March 03 2025
huggingface.co

Total runs: 20.1K
Run Growth: -20.8K
Growth Rate: -100.51%
Updated:April 14 2025
huggingface.co

Total runs: 18.3K
Run Growth: -9.7K
Growth Rate: -52.88%
Updated:September 30 2025
huggingface.co

Total runs: 15.4K
Run Growth: -2.5K
Growth Rate: -16.41%
Updated:November 23 2024
huggingface.co

Total runs: 14.0K
Run Growth: -13.3K
Growth Rate: -93.35%
Updated:December 23 2025
huggingface.co

Total runs: 14.0K
Run Growth: 13.0K
Growth Rate: 96.42%
Updated:September 04 2026
huggingface.co

Total runs: 13.1K
Run Growth: 2.5K
Growth Rate: 18.98%
Updated:December 09 2025
huggingface.co

Total runs: 9.8K
Run Growth: 1.4K
Growth Rate: 14.29%
Updated:January 15 2026
huggingface.co

Total runs: 7.9K
Run Growth: -3.6K
Growth Rate: -45.43%
Updated:October 16 2025
huggingface.co

Total runs: 7.1K
Run Growth: -7.1K
Growth Rate: -99.58%
Updated:April 22 2025
huggingface.co

Total runs: 6.2K
Run Growth: -1.7K
Growth Rate: -28.22%
Updated:March 11 2025
huggingface.co

Total runs: 5.3K
Run Growth: -1.9K
Growth Rate: -36.13%
Updated:January 27 2025
huggingface.co

Total runs: 3.9K
Run Growth: -5.3K
Growth Rate: -142.00%
Updated:December 09 2025
huggingface.co

Total runs: 3.1K
Run Growth: 1.1K
Growth Rate: 36.55%
Updated:August 04 2024
huggingface.co

Total runs: 2.9K
Run Growth: -1.6K
Growth Rate: -53.96%
Updated:October 25 2025
huggingface.co

Total runs: 1.8K
Run Growth: 773
Growth Rate: 47.25%
Updated:August 12 2025
huggingface.co

Total runs: 679
Run Growth: 309
Growth Rate: 44.98%
Updated:March 02 2023
huggingface.co

Total runs: 587
Run Growth: -31
Growth Rate: -5.27%
Updated:August 11 2025
huggingface.co

Total runs: 433
Run Growth: -1.2K
Growth Rate: -294.09%
Updated:January 02 2025
huggingface.co

Total runs: 419
Run Growth: 244
Growth Rate: 59.51%
Updated:October 20 2023
huggingface.co

Total runs: 322
Run Growth: 76
Growth Rate: 23.60%
Updated:December 10 2024
huggingface.co

Total runs: 321
Run Growth: -419
Growth Rate: -137.38%
Updated:October 25 2025
huggingface.co

Total runs: 300
Run Growth: 144
Growth Rate: 47.37%
Updated:March 02 2023
huggingface.co

Total runs: 277
Run Growth: 70
Growth Rate: 25.27%
Updated:November 20 2023
huggingface.co

Total runs: 258
Run Growth: 111
Growth Rate: 44.22%
Updated:October 20 2023
huggingface.co

Total runs: 249
Run Growth: 107
Growth Rate: 43.85%
Updated:October 20 2023