yue-here commited on
Commit ·
4bf9eb4
1
Parent(s): e81087c
app bugfix
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def infer(text, steps):
|
|
| 14 |
|
| 15 |
return generated_images[0]
|
| 16 |
|
| 17 |
-
demo = gr.Interface(fn=infer, inputs=["text", "number"], outputs="image"
|
| 18 |
description="English text to Chinese glyph. Recommend <10 steps as this space is not running on GPU",
|
| 19 |
)
|
| 20 |
demo.launch()
|
|
|
|
| 14 |
|
| 15 |
return generated_images[0]
|
| 16 |
|
| 17 |
+
demo = gr.Interface(fn=infer, inputs=["text", "number"], outputs="image",
|
| 18 |
description="English text to Chinese glyph. Recommend <10 steps as this space is not running on GPU",
|
| 19 |
)
|
| 20 |
demo.launch()
|