Skip to content

Commit 7aa746c

Browse files
authored
[LTX 2.3] update docs (#13788)
1 parent 216e245 commit 7aa746c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ height = 512
377377
random_seed = 42
378378
frame_rate = 24.0
379379
generator = torch.Generator(device).manual_seed(random_seed)
380-
model_path = "dg845/LTX-2.3-Diffusers"
380+
model_path = "diffusers/LTX-2.3-Diffusers"
381381

382382
pipe = LTX2ImageToVideoPipeline.from_pretrained(model_path, torch_dtype=torch.bfloat16)
383383
pipe.enable_sequential_cpu_offload(device=device)
@@ -449,7 +449,7 @@ height = 512
449449
random_seed = 42
450450
frame_rate = 24.0
451451
generator = torch.Generator(device).manual_seed(random_seed)
452-
model_path = "dg845/LTX-2.3-Diffusers"
452+
model_path = "diffusers/LTX-2.3-Diffusers"
453453

454454
pipe = LTX2Pipeline.from_pretrained(model_path, torch_dtype=torch.bfloat16)
455455
pipe.enable_model_cpu_offload(device=device)

src/diffusers/pipelines/ltx2/pipeline_ltx2_hdr_lora.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class LTX2HDRReferenceCondition:
8080
>>> from diffusers.pipelines.ltx2.export_utils import encode_hdr_tensor_to_mp4
8181
>>> from diffusers.utils import load_video
8282
83-
>>> pipe = LTX2HDRPipeline.from_pretrained("dg845/LTX-2.3-Distilled-Diffusers", torch_dtype=torch.bfloat16)
83+
>>> pipe = LTX2HDRPipeline.from_pretrained("diffusers/LTX-2.3-Distilled-Diffusers", torch_dtype=torch.bfloat16)
8484
>>> pipe.enable_sequential_cpu_offload(device="cuda")
8585
>>> pipe.load_lora_weights(
8686
... "Lightricks/LTX-2.3-22b-IC-LoRA-HDR",

src/diffusers/pipelines/ltx2/pipeline_ltx2_ic_lora.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class LTX2ReferenceCondition:
7979
>>> from diffusers.pipelines.ltx2.utils import DEFAULT_NEGATIVE_PROMPT
8080
>>> from diffusers.utils import load_video
8181
82-
>>> pipe = LTX2InContextPipeline.from_pretrained("dg845/LTX-2.3-Diffusers", torch_dtype=torch.bfloat16)
82+
>>> pipe = LTX2InContextPipeline.from_pretrained("diffusers/LTX-2.3-Diffusers", torch_dtype=torch.bfloat16)
8383
>>> pipe.enable_sequential_cpu_offload(device="cuda")
8484
>>> pipe.load_lora_weights(
8585
... "Lightricks/LTX-2-19b-LoRA-Camera-Control-Dolly-In",

0 commit comments

Comments
 (0)