tokeron commited on
Commit
1dff71f
·
verified ·
1 Parent(s): ad4c6dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -8
app.py CHANGED
@@ -21,15 +21,11 @@ def get_prompt(prompt):
21
 
22
  def generate_images(prompt):
23
  print('calling diffusion lens')
24
- all_images = []
25
- for skip_layers in range(2):
26
  images = get_images(prompt, skip_layers=skip_layers)
27
- all_images.append(images[0])
28
- print('after call images')
29
- return all_images
30
-
31
-
32
 
33
  with gr.Blocks() as demo:
34
- text_input = gr.Interface(fn=generate_images, inputs="text", outputs=["image"]*2)
35
  demo.launch()
 
21
 
22
  def generate_images(prompt):
23
  print('calling diffusion lens')
24
+ yield 'Generating image...' # Inform the user that the image is being generated
25
+ for skip_layers in range(23, 0, -1):
26
  images = get_images(prompt, skip_layers=skip_layers)
27
+ yield gr.Image(images[0]) # Yield each image as soon as it's ready
 
 
 
 
28
 
29
  with gr.Blocks() as demo:
30
+ text_input = gr.Interface(fn=generate_images, inputs="text", outputs=["image"] * 23)
31
  demo.launch()