1
0
Fork 0

fix(api): remove watermark calls from SDXL panorama

This commit is contained in:
Sean Sube 2024-01-14 19:51:06 -06:00
parent 4de917db3a
commit effa26c73b
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 0 additions and 2 deletions

View File

@ -598,7 +598,6 @@ class StableDiffusionXLPanoramaPipelineMixin(StableDiffusionXLImg2ImgPipelineMix
for i in range(latents.shape[0])
]
)
image = self.watermark.apply_watermark(image)
# TODO: add image_processor
image = np.clip(image / 2 + 0.5, 0, 1).transpose((0, 2, 3, 1))
@ -917,7 +916,6 @@ class StableDiffusionXLPanoramaPipelineMixin(StableDiffusionXLImg2ImgPipelineMix
for i in range(latents.shape[0])
]
)
image = self.watermark.apply_watermark(image)
# TODO: add image_processor
image = np.clip(image / 2 + 0.5, 0, 1).transpose((0, 2, 3, 1))