Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -105,7 +105,7 @@ def send_it6(inputs, noise_level, proc1=proc1):
|
|
105 |
time.sleep(2)
|
106 |
queue.put(prompt_with_noise)
|
107 |
output5 = proc1(prompt_with_noise)
|
108 |
-
return
|
109 |
|
110 |
|
111 |
with gr.Blocks(css='style.css') as demo:
|
@@ -177,7 +177,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
177 |
with gr.Row():
|
178 |
with gr.Row():
|
179 |
output5=gr.Image(label="DreamAnything",show_label=False,min_width=640)
|
180 |
-
|
181 |
|
182 |
see_prompts.click(get_prompts, inputs=[input_text], outputs=[prompt], queue=False)
|
183 |
run.click(send_it1, inputs=[prompt, noise_level], outputs=[output1])
|
@@ -185,7 +185,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
185 |
run.click(send_it3, inputs=[prompt, noise_level], outputs=[output3])
|
186 |
run.click(send_it4, inputs=[prompt, noise_level], outputs=[output4])
|
187 |
run.click(send_it5, inputs=[prompt, noise_level], outputs=[output5])
|
188 |
-
run.click(send_it6, inputs=[prompt, noise_level], outputs=[
|
189 |
|
190 |
with gr.Row():
|
191 |
gr.HTML(
|
|
|
105 |
time.sleep(2)
|
106 |
queue.put(prompt_with_noise)
|
107 |
output5 = proc1(prompt_with_noise)
|
108 |
+
return output0
|
109 |
|
110 |
|
111 |
with gr.Blocks(css='style.css') as demo:
|
|
|
177 |
with gr.Row():
|
178 |
with gr.Row():
|
179 |
output5=gr.Image(label="DreamAnything",show_label=False,min_width=640)
|
180 |
+
output0=gr.Image(label="DreamAnything",show_label=False,min_width=640)
|
181 |
|
182 |
see_prompts.click(get_prompts, inputs=[input_text], outputs=[prompt], queue=False)
|
183 |
run.click(send_it1, inputs=[prompt, noise_level], outputs=[output1])
|
|
|
185 |
run.click(send_it3, inputs=[prompt, noise_level], outputs=[output3])
|
186 |
run.click(send_it4, inputs=[prompt, noise_level], outputs=[output4])
|
187 |
run.click(send_it5, inputs=[prompt, noise_level], outputs=[output5])
|
188 |
+
run.click(send_it6, inputs=[prompt, noise_level], outputs=[output0])
|
189 |
|
190 |
with gr.Row():
|
191 |
gr.HTML(
|