Text-to-Audio
Diffusers
Safetensors
LTX2Pipeline
image-to-video
text-to-video
video-to-video
image-text-to-video
audio-to-video
video-to-audio
audio-to-audio
text-to-audio-video
image-to-audio-video
image-text-to-audio-video
8-bit precision
Instructions to use OzzyGT/LTX-2.3-Distilled-1.1-sdnq-dynamic-int4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use OzzyGT/LTX-2.3-Distilled-1.1-sdnq-dynamic-int4 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("OzzyGT/LTX-2.3-Distilled-1.1-sdnq-dynamic-int4", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,4 +3,16 @@ license: apache-2.0
|
|
| 3 |
base_model:
|
| 4 |
- Lightricks/LTX-2.3
|
| 5 |
base_model_relation: quantized
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
|
|
|
| 3 |
base_model:
|
| 4 |
- Lightricks/LTX-2.3
|
| 5 |
base_model_relation: quantized
|
| 6 |
+
tags:
|
| 7 |
+
- image-to-video
|
| 8 |
+
- text-to-video
|
| 9 |
+
- video-to-video
|
| 10 |
+
- image-text-to-video
|
| 11 |
+
- audio-to-video
|
| 12 |
+
- text-to-audio
|
| 13 |
+
- video-to-audio
|
| 14 |
+
- audio-to-audio
|
| 15 |
+
- text-to-audio-video
|
| 16 |
+
- image-to-audio-video
|
| 17 |
+
- image-text-to-audio-video
|
| 18 |
---
|