Text-to-Video
Diffusers
Safetensors
LTX2Pipeline
image-to-video
video-to-video
image-text-to-video
audio-to-video
text-to-audio
video-to-audio
audio-to-audio
text-to-audio-video
image-to-audio-video
image-text-to-audio-video
ltx-2
ltx-video
ltxv
lightricks
ltx-2.5
Instructions to use Lightricks/LTX-2.5-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Lightricks/LTX-2.5-Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Lightricks/LTX-2.5-Diffusers", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Distilled snippets: disable STG + modality guidance explicitly
#9
by multimodalart HF Staff - opened
stg_scale and modality_scale default to the SFT values and are gated independently of guidance_scale (> 0 and > 1 respectively), so the distilled snippets were running STG + modality guidance. This adds the missing overrides; both audio-side values are passed explicitly because audio_stg_scale or stg_scale resolves a falsy 0.0 back to the video value.
multimodalart changed pull request status to closed
Superseded by https://huggingface.co/Lightricks/LTX-2.5-Diffusers/discussions/10 — this branch's base was orphaned by the history rewrite, closing.
multimodalart changed pull request status to open
multimodalart changed pull request status to closed