Skip to content

Commit f3ab327

Browse files
committed
update doc checkpoints
1 parent e22fc2f commit f3ab327

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/source/en/api/pipelines/ltx_video.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,16 @@ Note: The recommended dtype is for the transformer component. The VAE and text e
4343

4444
LTX Video 0.9.7 comes with a spatial latent upscaler and a 13B parameter transformer. The inference involves generating a low resolution video first, which is very fast, followed by upscaling and refining the generated video.
4545

46+
<!-- TODO(aryan): modify when official checkpoints are available -->
47+
4648
```python
4749
import torch
4850
from diffusers import LTXConditionPipeline, LTXLatentUpsamplePipeline
4951
from diffusers.pipelines.ltx.pipeline_ltx_condition import LTXVideoCondition
5052
from diffusers.utils import export_to_video, load_video
5153

52-
pipe = LTXConditionPipeline.from_pretrained("/raid/aryan/diffusers-ltx/ltx_pipeline", torch_dtype=torch.bfloat16)
53-
pipe_upsample = LTXLatentUpsamplePipeline.from_pretrained("/raid/aryan/diffusers-ltx/ltx_upsample_pipeline", vae=pipe.vae, torch_dtype=torch.bfloat16)
54+
pipe = LTXConditionPipeline.from_pretrained("a-r-r-o-w/LTX-Video-0.9.7-diffusers", torch_dtype=torch.bfloat16)
55+
pipe_upsample = LTXLatentUpsamplePipeline.from_pretrained("a-r-r-o-w/LTX-Video-0.9.7-Latent-Spatial-Upsampler-diffusers", vae=pipe.vae, torch_dtype=torch.bfloat16)
5456
pipe.to("cuda")
5557
pipe_upsample.to("cuda")
5658
pipe.vae.enable_tiling()

0 commit comments

Comments
 (0)