yeq6x commited on
Commit
c43cbe2
·
1 Parent(s): 3f17ce4
Files changed (1) hide show
  1. app.py +2 -2
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, pose_image, input_image, num_steps, controlnet_conditioning_scale, seed)
86
 
87
- return [pose_image,images[0]]
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):