Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -37,6 +37,12 @@ app = gr.Interface(
|
|
37 |
fn=generate_image,
|
38 |
inputs=[prompt_input, inf_steps_input, seed_input],
|
39 |
outputs=gr.Image(shape=(128, 128)),
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
examples=[["A watercolor painting of a bird"]],
|
41 |
)
|
42 |
|
|
|
37 |
fn=generate_image,
|
38 |
inputs=[prompt_input, inf_steps_input, seed_input],
|
39 |
outputs=gr.Image(shape=(128, 128)),
|
40 |
+
title="Stable Diffusion Nano",
|
41 |
+
description=(
|
42 |
+
"Based on stable diffusion and fine-tuned on 128x128 images, "
|
43 |
+
"Stable Diffusion Nano allows for fast prototyping of diffusion models, "
|
44 |
+
"enabling quick experimentation with easily available hardware."
|
45 |
+
),
|
46 |
examples=[["A watercolor painting of a bird"]],
|
47 |
)
|
48 |
|