Vicente Alvarez commited on
Commit
824f9f7
·
1 Parent(s): baa620e

Use empty list instead of None for distilled_lora

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=None,
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,