Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -109,6 +109,13 @@ interface = gr.Interface(
|
|
| 109 |
outputs=[gr.outputs.Label(num_top_classes=3)] + 3 * [gr.outputs.Image(type="file")],
|
| 110 |
title=title,
|
| 111 |
description=description,
|
| 112 |
-
live=True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
)
|
| 114 |
interface.launch(debug=True)
|
|
|
|
| 109 |
outputs=[gr.outputs.Label(num_top_classes=3)] + 3 * [gr.outputs.Image(type="file")],
|
| 110 |
title=title,
|
| 111 |
description=description,
|
| 112 |
+
live=True,
|
| 113 |
+
examples=[
|
| 114 |
+
["kids playing in the snow"],
|
| 115 |
+
["walking in the dark"],
|
| 116 |
+
["woman sitting on a chair while drinking a beer"]
|
| 117 |
+
["nice view out the window on a train"],
|
| 118 |
+
["politician drinking water"],
|
| 119 |
+
],
|
| 120 |
)
|
| 121 |
interface.launch(debug=True)
|