Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -69,20 +69,15 @@ app = gr.Interface(
|
|
69 |
"with easily available hardware."
|
70 |
" It performs reasonably well on several tasks, but it struggles "
|
71 |
"with small details such as faces."
|
72 |
-
"\n\nprompt:\nA watercolor painting of an otter"
|
73 |
-
"\n\n"
|
74 |
-
"![images_0](https://huggingface.co/spaces/bguisard/stable-diffusion-nano/blob/main/images_0.png)"
|
75 |
-
"\n\nprompt:\nMarvel MCU deadpool, red mask, red shirt, red gloves, black shoulders, black elbow pads, black legs, gold buckle, black belt, black mask, white eyes, black boots, fuji low light color 35mm film, downtown Osaka alley at night out of focus in background, neon lights"
|
76 |
-
"\n\n"
|
77 |
-
"![images_1](https://huggingface.co/spaces/bguisard/stable-diffusion-nano/blob/main/images_1.png)"
|
78 |
),
|
79 |
css="h1 { text-align: center }",
|
80 |
# Some examples were copied from hf.co/spaces/stabilityai/stable-diffusion
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
|
|
86 |
)
|
87 |
|
88 |
app.launch()
|
|
|
69 |
"with easily available hardware."
|
70 |
" It performs reasonably well on several tasks, but it struggles "
|
71 |
"with small details such as faces."
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
),
|
73 |
css="h1 { text-align: center }",
|
74 |
# Some examples were copied from hf.co/spaces/stabilityai/stable-diffusion
|
75 |
+
examples=[
|
76 |
+
["A watercolor painting of a bird", 50, 0],
|
77 |
+
["A small cabin on top of a snowy mountain in the style of Disney, artstation", 50, 232190380],
|
78 |
+
["A mecha robot in a favela in expressionist style", 50, 827198341273],
|
79 |
+
["Marvel MCU deadpool, red mask, red shirt, red gloves, black shoulders, black elbow pads, black legs, gold buckle, black belt, black mask, white eyes, black boots, fuji low light color 35mm film, downtown Osaka alley at night out of focus in background, neon lights", 50, 23856839],
|
80 |
+
],
|
81 |
)
|
82 |
|
83 |
app.launch()
|