Image-to-Video
Diffusers
Safetensors
English
LTX2Pipeline
text-to-video
ltx-2
ltx-2-3
ltx-video
lightricks
Instructions to use CalamitousFelicitousness/LTX-2.3-dev-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CalamitousFelicitousness/LTX-2.3-dev-Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CalamitousFelicitousness/LTX-2.3-dev-Diffusers", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Upload transformer/config.json with huggingface_hub
Browse files- transformer/config.json +1 -1
transformer/config.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
"audio_in_channels": 128,
|
| 13 |
"audio_num_attention_heads": 32,
|
| 14 |
"audio_patch_size": 1,
|
| 15 |
-
"audio_patch_size_t":
|
| 16 |
"caption_channels": 4096,
|
| 17 |
"caption_projection_dim": 4096,
|
| 18 |
"cross_attention_dim": 4096,
|
|
|
|
| 12 |
"audio_in_channels": 128,
|
| 13 |
"audio_num_attention_heads": 32,
|
| 14 |
"audio_patch_size": 1,
|
| 15 |
+
"audio_patch_size_t": 1,
|
| 16 |
"caption_channels": 4096,
|
| 17 |
"caption_projection_dim": 4096,
|
| 18 |
"cross_attention_dim": 4096,
|