Staticaliza commited on
Commit
3eeb179
·
verified ·
1 Parent(s): ffaa374

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ def generate(input=DEFAULT_INPUT, negative_input=DEFAULT_NEGATIVE_INPUT, height=
77
  "output_type":"pil",
78
  }
79
 
80
- images = model(**parameters).images[0]
81
  image_paths = [save_image(img) for img in images]
82
  return image_paths, seed
83
 
 
77
  "output_type":"pil",
78
  }
79
 
80
+ images = model(**parameters).images
81
  image_paths = [save_image(img) for img in images]
82
  return image_paths, seed
83