Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -80,4 +80,12 @@ with gr.Blocks() as demo:
|
|
80 |
label_if
|
81 |
)
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
demo.launch(debug=True)
|
|
|
80 |
label_if
|
81 |
)
|
82 |
|
83 |
+
gr.Examples(
|
84 |
+
[["test_image1.jpeg"], ["test_image2.jpeg"], ["test_image3.jpeg"]],
|
85 |
+
[image_if],
|
86 |
+
[label_if],
|
87 |
+
get_predictions,
|
88 |
+
cache_examples=True
|
89 |
+
)
|
90 |
+
|
91 |
demo.launch(debug=True)
|