Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,8 @@ def process_image(prompt, num_inference_steps, guidance_scale, cross_attention_k
|
|
| 15 |
|
| 16 |
iface = gr.Interface(fn=process_image, inputs="text", "number", "number", "dictionary",
|
| 17 |
outputs="image",
|
| 18 |
-
examples=[
|
| 19 |
-
|
| 20 |
-
|
|
|
|
| 21 |
iface.launch()
|
|
|
|
| 15 |
|
| 16 |
iface = gr.Interface(fn=process_image, inputs="text", "number", "number", "dictionary",
|
| 17 |
outputs="image",
|
| 18 |
+
examples=[
|
| 19 |
+
["A pokemon with blue eyes.", 25, 7.5, {"scale": 0.5}],
|
| 20 |
+
["A beautiful sunset.", 30, 5.0, {"scale": 0.3}]
|
| 21 |
+
])
|
| 22 |
iface.launch()
|