dg845 / LTX-2-Latent-Upsampler-Diffusers

huggingface.co
Total runs: 5
24-hour runs: 0
7-day runs: -3
30-day runs: -10
Model's Last Updated: January 09 2026
image-to-video

Introduction of LTX-2-Latent-Upsampler-Diffusers

Model Details of LTX-2-Latent-Upsampler-Diffusers

This repo contains a checkpoint for the diffusers LTX-2 latent upsampling pipeline LTX2LatentUpsamplerModel , which upsamples the first-stage video latents as part of two-stage inference.

A usage example is as follows:

import torch
from diffusers import LTX2ImageToVideoPipeline, LTX2LatentUpsamplePipeline
from diffusers.pipelines.ltx2.export_utils import encode_video

pipe = LTX2Pipeline.from_pretrained("Lightricks/LTX-2", torch_dtype=torch.bfloat16)
pipe.enable_model_cpu_offload()

image = load_image(
    "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/astronaut.jpg"
)
prompt = "An astronaut hatches from a fragile egg on the surface of the Moon, the shell cracking and peeling apart in gentle low-gravity motion. Fine lunar dust lifts and drifts outward with each movement, floating in slow arcs before settling back onto the ground. The astronaut pushes free in a deliberate, weightless motion, small fragments of the egg tumbling and spinning through the air. In the background, the deep darkness of space subtly shifts as stars glide with the camera's movement, emphasizing vast depth and scale. The camera performs a smooth, cinematic slow push-in, with natural parallax between the foreground dust, the astronaut, and the distant starfield. Ultra-realistic detail, physically accurate low-gravity motion, cinematic lighting, and a breath-taking, movie-like shot."
negative_prompt = "shaky, glitchy, low quality, worst quality, deformed, distorted, disfigured, motion smear, motion artifacts, fused fingers, bad anatomy, weird hand, ugly, transition, static."

# First-Stage I2V inference
frame_rate = 24.0
video, audio = pipe(
    image=image,
    prompt=prompt,
    negative_prompt=negative_prompt,
    width=768,
    height=512,
    num_frames=121,
    frame_rate=frame_rate,
    num_inference_steps=40,
    guidance_scale=4.0,
    output_type="pil",
    return_dict=False,
)

upsample_pipe = LTX2LatentUpsamplePipeline.from_pretrained(
    "dg845/LTX-2-Latent-Upsampler-Diffusers", torch_dtype=torch.bfloat16
)
upsample_pipe.vae.enable_tiling()
upsample_pipe.to("cuda")

# Latent Upsampling
video = upsample_pipe(
    video=video,
    width=768,
    height=512,
    output_type="np",
    return_dict=False,
)[0]
video = (video * 255).round().astype("uint8")
video = torch.from_numpy(video)

encode_video(
    video[0],
    fps=frame_rate,
    audio=audio[0].float().cpu(),
    audio_sample_rate=pipe.vocoder.config.output_sampling_rate,
    output_path="ltx2_sample.mp4",
)

Runs of dg845 LTX-2-Latent-Upsampler-Diffusers on huggingface.co

5
Total runs
0
24-hour runs
0
3-day runs
-3
7-day runs
-10
30-day runs

More Information About LTX-2-Latent-Upsampler-Diffusers huggingface.co Model

LTX-2-Latent-Upsampler-Diffusers huggingface.co

LTX-2-Latent-Upsampler-Diffusers huggingface.co is an AI model on huggingface.co that provides LTX-2-Latent-Upsampler-Diffusers's model effect (), which can be used instantly with this dg845 LTX-2-Latent-Upsampler-Diffusers model. huggingface.co supports a free trial of the LTX-2-Latent-Upsampler-Diffusers model, and also provides paid use of the LTX-2-Latent-Upsampler-Diffusers. Support call LTX-2-Latent-Upsampler-Diffusers model through api, including Node.js, Python, http.

LTX-2-Latent-Upsampler-Diffusers huggingface.co Url

https://huggingface.co/dg845/LTX-2-Latent-Upsampler-Diffusers

dg845 LTX-2-Latent-Upsampler-Diffusers online free

LTX-2-Latent-Upsampler-Diffusers huggingface.co is an online trial and call api platform, which integrates LTX-2-Latent-Upsampler-Diffusers's modeling effects, including api services, and provides a free online trial of LTX-2-Latent-Upsampler-Diffusers, you can try LTX-2-Latent-Upsampler-Diffusers online for free by clicking the link below.

dg845 LTX-2-Latent-Upsampler-Diffusers online free url in huggingface.co:

https://huggingface.co/dg845/LTX-2-Latent-Upsampler-Diffusers

LTX-2-Latent-Upsampler-Diffusers install

LTX-2-Latent-Upsampler-Diffusers is an open source model from GitHub that offers a free installation service, and any user can find LTX-2-Latent-Upsampler-Diffusers on GitHub to install. At the same time, huggingface.co provides the effect of LTX-2-Latent-Upsampler-Diffusers install, users can directly use LTX-2-Latent-Upsampler-Diffusers installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

LTX-2-Latent-Upsampler-Diffusers install url in huggingface.co:

https://huggingface.co/dg845/LTX-2-Latent-Upsampler-Diffusers

Url of LTX-2-Latent-Upsampler-Diffusers

LTX-2-Latent-Upsampler-Diffusers huggingface.co Url

Provider of LTX-2-Latent-Upsampler-Diffusers huggingface.co

dg845
ORGANIZATIONS

Other API from dg845

huggingface.co

Total runs: 14.7K
Run Growth: 1.7K
Growth Rate: 11.50%
Updated:October 24 2023