linoyts HF Staff commited on
Commit
032b0bc
Β·
verified Β·
1 Parent(s): 74b753c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -675,8 +675,8 @@ DEFAULT_IC_LORA = "Union Control (Depth + Edge)"
675
  # ─────────────────────────────────────────────────────────────────────────────
676
  # Download Models
677
  # ─────────────────────────────────────────────────────────────────────────────
678
- # LTX_MODEL_REPO = "Lightricks/LTX-2.3"
679
- LTX_MODEL_REPO = "linoyts/ltx-2.3-22b-fused-union-control" #ltx 2.3 with fused union control lora because it breaks on quantization otherwise
680
  GEMMA_REPO = "google/gemma-3-12b-it-qat-q4_0-unquantized"
681
 
682
  print("=" * 80)
@@ -685,7 +685,7 @@ print("=" * 80)
685
 
686
  checkpoint_path = hf_hub_download(
687
  # repo_id=LTX_MODEL_REPO, filename="ltx-2.3-22b-distilled.safetensors"
688
- repo_id=LTX_MODEL_REPO, filename="ltx-2.3-22b-fused-union-control.safetensors"
689
  )
690
  spatial_upsampler_path = hf_hub_download(
691
  repo_id=LTX_MODEL_REPO, filename="ltx-2.3-spatial-upscaler-x2-1.0.safetensors"
 
675
  # ─────────────────────────────────────────────────────────────────────────────
676
  # Download Models
677
  # ─────────────────────────────────────────────────────────────────────────────
678
+ LTX_MODEL_REPO = "Lightricks/LTX-2.3"
679
+ CHECKPOINT_PATH = "linoyts/ltx-2.3-22b-fused-union-control" #ltx 2.3 with fused union control lora because it breaks on quantization otherwise
680
  GEMMA_REPO = "google/gemma-3-12b-it-qat-q4_0-unquantized"
681
 
682
  print("=" * 80)
 
685
 
686
  checkpoint_path = hf_hub_download(
687
  # repo_id=LTX_MODEL_REPO, filename="ltx-2.3-22b-distilled.safetensors"
688
+ repo_id=CHECKPOINT_PATH, filename="ltx-2.3-22b-fused-union-control.safetensors"
689
  )
690
  spatial_upsampler_path = hf_hub_download(
691
  repo_id=LTX_MODEL_REPO, filename="ltx-2.3-spatial-upscaler-x2-1.0.safetensors"