Update app.py
Browse filesremoved the examples for now, just to get the link to the repo
app.py
CHANGED
@@ -59,7 +59,7 @@ input = gr.inputs.Image(shape=(IMG_SIZE, IMG_SIZE))
|
|
59 |
# the app outputs two segmented images
|
60 |
output = [gr.outputs.Label()]
|
61 |
# it's good practice to pass examples, description and a title to guide users
|
62 |
-
examples = [["./content/examples/Frog.jpeg"], ["./content/examples/Truck.jpeg"]]
|
63 |
title = "Image classification"
|
64 |
description = "Upload an image or select from examples to classify it"
|
65 |
|
|
|
59 |
# the app outputs two segmented images
|
60 |
output = [gr.outputs.Label()]
|
61 |
# it's good practice to pass examples, description and a title to guide users
|
62 |
+
examples = [] # [["./content/examples/Frog.jpeg"], ["./content/examples/Truck.jpeg"]]
|
63 |
title = "Image classification"
|
64 |
description = "Upload an image or select from examples to classify it"
|
65 |
|