Instructions to use Lightricks/LTX-Video with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Lightricks/LTX-Video 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("Lightricks/LTX-Video", 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
Update README.md
Browse filesAdded license metadata
README.md
CHANGED
|
@@ -6,6 +6,7 @@ tags:
|
|
| 6 |
pinned: true
|
| 7 |
language:
|
| 8 |
- en
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# LTX-Video Model Card
|
|
@@ -95,4 +96,4 @@ python inference.py --ckpt_dir 'PATH' --prompt "PROMPT" --input_image_path IMAGE
|
|
| 95 |
- This model is not intended or able to provide factual information.
|
| 96 |
- As a statistical model this checkpoint might amplify existing societal biases.
|
| 97 |
- The model may fail to generate videos that matches the prompts perfectly.
|
| 98 |
-
- Prompt following is heavily influenced by the prompting-style.
|
|
|
|
| 6 |
pinned: true
|
| 7 |
language:
|
| 8 |
- en
|
| 9 |
+
license: other
|
| 10 |
---
|
| 11 |
|
| 12 |
# LTX-Video Model Card
|
|
|
|
| 96 |
- This model is not intended or able to provide factual information.
|
| 97 |
- As a statistical model this checkpoint might amplify existing societal biases.
|
| 98 |
- The model may fail to generate videos that matches the prompts perfectly.
|
| 99 |
+
- Prompt following is heavily influenced by the prompting-style.
|