Instructions to use smthem/ltx-2-19b-dev-diffusers-test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use smthem/ltx-2-19b-dev-diffusers-test with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("smthem/ltx-2-19b-dev-diffusers-test", 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
|
@@ -2,10 +2,14 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
|
|
|
|
|
|
|
|
|
| 5 |
Use newest diffuser ltx-2 PR,convert ltx2 to diffusers models.
|
| 6 |
|
| 7 |
A test models ,need newest pipelines
|
| 8 |
|
|
|
|
| 9 |
need this PR [https://github.com/huggingface/diffusers/pull/12915 ](https://github.com/huggingface/diffusers/pull/12915)
|
| 10 |
|
| 11 |
```
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# Example
|
| 6 |
+

|
| 7 |
+
|
| 8 |
Use newest diffuser ltx-2 PR,convert ltx2 to diffusers models.
|
| 9 |
|
| 10 |
A test models ,need newest pipelines
|
| 11 |
|
| 12 |
+
|
| 13 |
need this PR [https://github.com/huggingface/diffusers/pull/12915 ](https://github.com/huggingface/diffusers/pull/12915)
|
| 14 |
|
| 15 |
```
|