Spaces:
Running on Zero
Running on Zero
Vicente Alvarez commited on
Commit ·
824f9f7
1
Parent(s): baa620e
Use empty list instead of None for distilled_lora
Browse files
app.py
CHANGED
|
@@ -150,7 +150,7 @@ print("Note: Using fp8 without distill LoRA - will use more inference steps")
|
|
| 150 |
# Initialize pipeline with fp8 checkpoint (no distill LoRA for fp8 compatibility)
|
| 151 |
pipeline = TI2VidTwoStagesHQPipeline(
|
| 152 |
checkpoint_path=checkpoint_path,
|
| 153 |
-
distilled_lora=
|
| 154 |
distilled_lora_strength_stage_1=0.0,
|
| 155 |
distilled_lora_strength_stage_2=0.0,
|
| 156 |
spatial_upsampler_path=spatial_upsampler_path,
|
|
|
|
| 150 |
# Initialize pipeline with fp8 checkpoint (no distill LoRA for fp8 compatibility)
|
| 151 |
pipeline = TI2VidTwoStagesHQPipeline(
|
| 152 |
checkpoint_path=checkpoint_path,
|
| 153 |
+
distilled_lora=[],
|
| 154 |
distilled_lora_strength_stage_1=0.0,
|
| 155 |
distilled_lora_strength_stage_2=0.0,
|
| 156 |
spatial_upsampler_path=spatial_upsampler_path,
|