Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -86,7 +86,7 @@ def generate(
|
|
| 86 |
output_type="battery",
|
| 87 |
).images
|
| 88 |
|
| 89 |
-
return output
|
| 90 |
|
| 91 |
|
| 92 |
@spaces.GPU
|
|
@@ -126,7 +126,7 @@ def img2img_generate(
|
|
| 126 |
output_type="battery",
|
| 127 |
).images
|
| 128 |
|
| 129 |
-
return output
|
| 130 |
|
| 131 |
|
| 132 |
examples = [
|
|
@@ -264,7 +264,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 264 |
steps,
|
| 265 |
number_image,
|
| 266 |
],
|
| 267 |
-
outputs=[result
|
| 268 |
api_name="run",
|
| 269 |
)
|
| 270 |
|
|
@@ -296,24 +296,9 @@ with gr.Blocks(css=css) as demo:
|
|
| 296 |
strength,
|
| 297 |
number_image,
|
| 298 |
],
|
| 299 |
-
outputs=[img2img_output
|
| 300 |
api_name="img2img_run",
|
| 301 |
)
|
| 302 |
-
|
| 303 |
-
with gr.Group():
|
| 304 |
-
gr.HTML(
|
| 305 |
-
"""
|
| 306 |
-
<p style='text-align: center'>
|
| 307 |
-
Generated results will be displayed here.
|
| 308 |
-
</p>
|
| 309 |
-
"""
|
| 310 |
-
)
|
| 311 |
-
generated_table = gr.Dataframe(
|
| 312 |
-
headers=["Prompt", "Seed", "Image"],
|
| 313 |
-
datatype=["str", "number", "image"],
|
| 314 |
-
col_count=(3, "fixed"),
|
| 315 |
-
row_count=1,
|
| 316 |
-
)
|
| 317 |
|
| 318 |
if __name__ == "__main__":
|
| 319 |
demo.queue().launch()
|
|
|
|
| 86 |
output_type="battery",
|
| 87 |
).images
|
| 88 |
|
| 89 |
+
return output
|
| 90 |
|
| 91 |
|
| 92 |
@spaces.GPU
|
|
|
|
| 126 |
output_type="battery",
|
| 127 |
).images
|
| 128 |
|
| 129 |
+
return output
|
| 130 |
|
| 131 |
|
| 132 |
examples = [
|
|
|
|
| 264 |
steps,
|
| 265 |
number_image,
|
| 266 |
],
|
| 267 |
+
outputs=[result],
|
| 268 |
api_name="run",
|
| 269 |
)
|
| 270 |
|
|
|
|
| 296 |
strength,
|
| 297 |
number_image,
|
| 298 |
],
|
| 299 |
+
outputs=[img2img_output],
|
| 300 |
api_name="img2img_run",
|
| 301 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 302 |
|
| 303 |
if __name__ == "__main__":
|
| 304 |
demo.queue().launch()
|