Text-to-Image
Diffusers
Safetensors
LibreFluxIPAdapterPipeline
neuralvfx commited on
Commit
183b92d
·
verified ·
1 Parent(s): 7b16c2c

Update pipeline.py

Browse files

fixing width variable issue

Files changed (1) hide show
  1. pipeline.py +1 -1
pipeline.py CHANGED
@@ -896,7 +896,7 @@ class LibreFluxIpAdapterPipeline(DiffusionPipeline, SD3LoraLoaderMixin):
896
 
897
  width, height = control_image.size
898
  height = (height//8)*8
899
- width = (widt//8)*8
900
 
901
 
902
  control_image = self.prepare_image(
 
896
 
897
  width, height = control_image.size
898
  height = (height//8)*8
899
+ width = (width//8)*8
900
 
901
 
902
  control_image = self.prepare_image(