Commit ·
ad7df4f
1
Parent(s): 9c8df66
change all .jpeg to .jpg
Browse files
app.py
CHANGED
|
@@ -20,6 +20,6 @@ def classify_image(img):
|
|
| 20 |
# %% app.ipynb 9
|
| 21 |
image = gr.Image(shape=(192,192), label="Thumbnail")
|
| 22 |
label = gr.Label()
|
| 23 |
-
examples = ['example_above.jpg', 'example_above2.
|
| 24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 25 |
intf.launch(inline=False)
|
|
|
|
| 20 |
# %% app.ipynb 9
|
| 21 |
image = gr.Image(shape=(192,192), label="Thumbnail")
|
| 22 |
label = gr.Label()
|
| 23 |
+
examples = ['example_above.jpg', 'example_above2.jpg', 'example_below.jpg']
|
| 24 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 25 |
intf.launch(inline=False)
|
example_above2.jpeg → example_above2.jpg
RENAMED
|
File without changes
|
example_below.jpeg → example_below.jpg
RENAMED
|
File without changes
|