Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -675,8 +675,8 @@ DEFAULT_IC_LORA = "Union Control (Depth + Edge)"
|
|
| 675 |
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 676 |
# Download Models
|
| 677 |
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 678 |
-
|
| 679 |
-
|
| 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=
|
| 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"
|