Spaces:
Runtime error
Runtime error
update app.py
Browse files
app.py
CHANGED
|
@@ -43,7 +43,9 @@ with gr.Blocks(title="ViT ImageNet Classification - ClassCat",
|
|
| 43 |
input_image = gr.Image(type="pil", image_mode="RGB", shape=(224, 224))
|
| 44 |
|
| 45 |
with gr.Row():
|
| 46 |
-
gr.Examples(['./samples/
|
|
|
|
|
|
|
| 47 |
gr.Examples(['./samples/lion.jpg'], label='lion', inputs=input_image)
|
| 48 |
#gr.Examples(example_files, inputs=input_image)
|
| 49 |
|
|
|
|
| 43 |
input_image = gr.Image(type="pil", image_mode="RGB", shape=(224, 224))
|
| 44 |
|
| 45 |
with gr.Row():
|
| 46 |
+
gr.Examples(['./samples/cat.jpg'], label='Sample images : cat', inputs=input_image)
|
| 47 |
+
gr.Examples(['./samples/cheetah.jpg'], label='cheetah', inputs=input_image)
|
| 48 |
+
gr.Examples(['./samples/hotdog.jpg'], label='hotdog', inputs=input_image)
|
| 49 |
gr.Examples(['./samples/lion.jpg'], label='lion', inputs=input_image)
|
| 50 |
#gr.Examples(example_files, inputs=input_image)
|
| 51 |
|