Instructions to use hgjc/ltx-ugc-bundle with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LTX.io
How to use hgjc/ltx-ugc-bundle with LTX.io:
# Install the LTX-2 pipelines git clone https://github.com/Lightricks/LTX-2.git cd LTX-2 uv sync --frozen
# Download the weights from this repo, plus the Gemma text encoder hf download hgjc/ltx-ugc-bundle --local-dir models/ltx-ugc-bundle hf download google/gemma-3-12b-it-qat-q4_0-unquantized --local-dir models/gemma-3-12b
# Fast pipeline (distilled model, no distilled LoRA needed) uv run python -m ltx_pipelines.distilled \ --distilled-checkpoint-path models/ltx-ugc-bundle/<distilled-checkpoint>.safetensors \ --spatial-upsampler-path models/ltx-ugc-bundle/<spatial-upsampler>.safetensors \ --gemma-root models/gemma-3-12b \ --prompt "A beautiful sunset over the ocean" \ --output-path output.mp4 # For image-to-video, add: --image path/to/image.jpg 0 0.8# HQ pipeline (two-stage, higher quality) uv run python -m ltx_pipelines.ti2vid_two_stages_hq \ --checkpoint-path models/ltx-ugc-bundle/<checkpoint>.safetensors \ --distilled-lora models/ltx-ugc-bundle/<distilled-lora>.safetensors 0.8 \ --spatial-upsampler-path models/ltx-ugc-bundle/<spatial-upsampler>.safetensors \ --gemma-root models/gemma-3-12b \ --prompt "A beautiful sunset over the ocean" \ --output-path output.mp4 # For image-to-video, add: --image path/to/image.jpg 0 0.8 - Notebooks
- Google Colab
- Kaggle
| import numbers | |
| from typing import Dict, Optional, Tuple | |
| import torch | |
| import torch.nn as nn | |
| import torch.nn.functional as F | |
| from einops import rearrange | |
| class RMSNorm(nn.Module): | |
| def __init__(self, dim, eps: float, elementwise_affine: bool = True): | |
| super().__init__() | |
| self.eps = eps | |
| if isinstance(dim, numbers.Integral): | |
| dim = (dim,) | |
| self.dim = torch.Size(dim) | |
| if elementwise_affine: | |
| self.weight = nn.Parameter(torch.ones(dim)) | |
| else: | |
| self.weight = None | |
| def forward(self, hidden_states): | |
| input_dtype = hidden_states.dtype | |
| variance = hidden_states.to(torch.float32).pow(2).mean(-1, keepdim=True) | |
| hidden_states = hidden_states * torch.rsqrt(variance + self.eps) | |
| if self.weight is not None: | |
| # convert into half-precision if necessary | |
| if self.weight.dtype in [torch.float16, torch.bfloat16]: | |
| hidden_states = hidden_states.to(self.weight.dtype) | |
| hidden_states = hidden_states * self.weight | |
| else: | |
| hidden_states = hidden_states.to(input_dtype) | |
| return hidden_states | |
| class IPAFluxAttnProcessor2_0(nn.Module): | |
| """Attention processor used typically in processing the SD3-like self-attention projections.""" | |
| def __init__(self, hidden_size, cross_attention_dim=None, scale=1.0, num_tokens=4, timestep_range=None): | |
| super().__init__() | |
| self.hidden_size = hidden_size # 3072 | |
| self.cross_attention_dim = cross_attention_dim # 4096 | |
| self.scale = scale | |
| self.num_tokens = num_tokens | |
| self.to_k_ip = nn.Linear(cross_attention_dim or hidden_size, hidden_size, bias=False) | |
| self.to_v_ip = nn.Linear(cross_attention_dim or hidden_size, hidden_size, bias=False) | |
| self.norm_added_k = RMSNorm(128, eps=1e-5, elementwise_affine=False) | |
| self.norm_added_v = RMSNorm(128, eps=1e-5, elementwise_affine=False) | |
| self.timestep_range = timestep_range | |
| def __call__( | |
| self, | |
| num_heads, | |
| query, | |
| image_emb: torch.FloatTensor, | |
| t: torch.FloatTensor | |
| ) -> torch.FloatTensor: | |
| # only apply IPA if timestep is within range | |
| if self.timestep_range is not None: | |
| if t[0] > self.timestep_range[0] or t[0] < self.timestep_range[1]: | |
| return None | |
| # `ip-adapter` projections | |
| ip_hidden_states = image_emb | |
| ip_hidden_states_key_proj = self.to_k_ip(ip_hidden_states) | |
| ip_hidden_states_value_proj = self.to_v_ip(ip_hidden_states) | |
| ip_hidden_states_key_proj = rearrange(ip_hidden_states_key_proj, 'B L (H D) -> B H L D', H=num_heads) | |
| ip_hidden_states_value_proj = rearrange(ip_hidden_states_value_proj, 'B L (H D) -> B H L D', H=num_heads) | |
| ip_hidden_states_key_proj = self.norm_added_k(ip_hidden_states_key_proj) | |
| ip_hidden_states_value_proj = self.norm_added_v(ip_hidden_states_value_proj) | |
| ip_hidden_states = F.scaled_dot_product_attention(query.to(image_emb.device).to(image_emb.dtype), | |
| ip_hidden_states_key_proj, | |
| ip_hidden_states_value_proj, | |
| dropout_p=0.0, is_causal=False) | |
| ip_hidden_states = rearrange(ip_hidden_states, "B H L D -> B L (H D)", H=num_heads) | |
| ip_hidden_states = ip_hidden_states.to(query.dtype).to(query.device) | |
| return self.scale * ip_hidden_states |