dagloop5 commited on
Commit
e9ea7e7
·
verified ·
1 Parent(s): 5ff59d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -6
app.py CHANGED
@@ -354,14 +354,12 @@ print("Initializing HQ Pipeline...")
354
 
355
  pipeline = HQPipelineWithCachedLoRA(
356
  checkpoint_path=checkpoint_path,
357
- distilled_lora=[
358
- LoraPathStrengthAndSDOps(path=distilled_lora_path, strength=1.0, sd_ops=LTXV_LORA_COMFY_RENAMING_MAP)
359
- ],
360
- distilled_lora_strength_stage_1=0.25,
361
- distilled_lora_strength_stage_2=0.50,
362
  spatial_upsampler_path=spatial_upsampler_path,
363
  gemma_root=gemma_root,
364
- loras=(), # LoRAs will be applied via cached state
365
  quantization=QuantizationPolicy.fp8_cast(),
366
  )
367
 
 
354
 
355
  pipeline = HQPipelineWithCachedLoRA(
356
  checkpoint_path=checkpoint_path,
357
+ distilled_lora=[], # No distilled LoRA at init - applied via cached state
358
+ distilled_lora_strength_stage_1=0.0, # Not used since loras is empty
359
+ distilled_lora_strength_stage_2=0.0, # Not used since loras is empty
 
 
360
  spatial_upsampler_path=spatial_upsampler_path,
361
  gemma_root=gemma_root,
362
+ loras=(), # No LoRAs at init - preloading will work
363
  quantization=QuantizationPolicy.fp8_cast(),
364
  )
365