Update app.py
Browse files
app.py
CHANGED
|
@@ -18,6 +18,6 @@ def show_thumbnails(source_file):
|
|
| 18 |
return gr.outputs.ImageGroup(images)
|
| 19 |
|
| 20 |
iface = gr.Interface(fn=show_thumbnails, inputs="text", outputs="image", title="Image Thumbnails", description="Load all .jpg images in a folder and display their thumbnails.")
|
| 21 |
-
iface.launch(
|
| 22 |
|
| 23 |
|
|
|
|
| 18 |
return gr.outputs.ImageGroup(images)
|
| 19 |
|
| 20 |
iface = gr.Interface(fn=show_thumbnails, inputs="text", outputs="image", title="Image Thumbnails", description="Load all .jpg images in a folder and display their thumbnails.")
|
| 21 |
+
iface.launch()
|
| 22 |
|
| 23 |
|