Spaces:
Runtime error
Runtime error
Update inpainting.py
#11
by
ken07155106
- opened
- inpainting.py +0 -3
inpainting.py
CHANGED
@@ -184,9 +184,6 @@ class StableDiffusionInpaintingPipeline(DiffusionPipeline):
|
|
184 |
image = (image / 2 + 0.5).clamp(0, 1)
|
185 |
image = image.cpu().permute(0, 2, 3, 1).numpy()
|
186 |
|
187 |
-
# run safety checker
|
188 |
-
safety_cheker_input = self.feature_extractor(self.numpy_to_pil(image), return_tensors="pt").to(self.device)
|
189 |
-
image, has_nsfw_concept = self.safety_checker(images=image, clip_input=safety_cheker_input.pixel_values)
|
190 |
|
191 |
if output_type == "pil":
|
192 |
image = self.numpy_to_pil(image)
|
|
|
184 |
image = (image / 2 + 0.5).clamp(0, 1)
|
185 |
image = image.cpu().permute(0, 2, 3, 1).numpy()
|
186 |
|
|
|
|
|
|
|
187 |
|
188 |
if output_type == "pil":
|
189 |
image = self.numpy_to_pil(image)
|