Views
No views yet
LTX2LatentUpsamplePipeline (VAE + latent upsampler).diffusers/LTX-2.3-Diffusers (unchanged
between v1.0 and v1.1); only the latent-upsampler weights were converted from the v1.1
checkpoint.ltx-2.3-spatial-upscaler-x2-1.1.safetensors from
Lightricks/LTX-2.3scripts/convert_ltx2_to_diffusers.py --version 2.3 --latent_upsampler from a
local huggingface/diffusers checkout (0.40.0.dev0).1import torch
2from diffusers import LTX2LatentUpsamplePipeline
3
4pipe = LTX2LatentUpsamplePipeline.from_pretrained(
5 "rootonchair/LTX-2.3-spatial-upscaler-x2-v1.1-Diffusers", torch_dtype=torch.bfloat16
6).to("cuda")
7
8# `latents` are the video latents produced by an LTX2Pipeline generation
9upsampled_latents = pipe(latents=latents, output_type="latent", return_dict=False)[0]LTX2Pipeline.