Update pipeline.py
Browse filesfixing width variable issue
- 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 = (
|
| 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(
|