Spaces:
Sleeping
Sleeping
de
Browse files
app.py
CHANGED
@@ -82,9 +82,9 @@ def process(input_image, prompt, negative_prompt, num_steps, controlnet_conditio
|
|
82 |
# resize input_image to 1024x1024
|
83 |
input_image = resize_image(input_image)
|
84 |
|
85 |
-
images = generate_(prompt, negative_prompt,
|
86 |
|
87 |
-
return [
|
88 |
|
89 |
@spaces.GPU
|
90 |
def predict_image(cond_image, prompt, negative_prompt, controlnet_conditioning_scale):
|
|
|
82 |
# resize input_image to 1024x1024
|
83 |
input_image = resize_image(input_image)
|
84 |
|
85 |
+
images = generate_(prompt, negative_prompt, input_image, input_image, num_steps, controlnet_conditioning_scale, seed)
|
86 |
|
87 |
+
return [input_image,images[0]]
|
88 |
|
89 |
@spaces.GPU
|
90 |
def predict_image(cond_image, prompt, negative_prompt, controlnet_conditioning_scale):
|