examples modified for mult-output in app.py
Browse files
app.py
CHANGED
@@ -24,10 +24,10 @@ demo = gr.Interface(
|
|
24 |
title="Global Context Vision Transformer (GCViT) Demo",
|
25 |
description="ImageNet Pretrain.",
|
26 |
examples=[
|
27 |
-
["example/hot_air_ballon.jpg"],
|
28 |
-
["example/chelsea.png"],
|
29 |
-
["example/german_shepherd.jpg"],
|
30 |
-
["example/panda.jpg"],
|
31 |
],
|
32 |
)
|
33 |
demo.launch()
|
|
|
24 |
title="Global Context Vision Transformer (GCViT) Demo",
|
25 |
description="ImageNet Pretrain.",
|
26 |
examples=[
|
27 |
+
["example/hot_air_ballon.jpg", 'GCViTTiny'],
|
28 |
+
["example/chelsea.png", 'GCViTTiny'],
|
29 |
+
["example/german_shepherd.jpg", 'GCViTTiny'],
|
30 |
+
["example/panda.jpg", 'GCViTTiny'],
|
31 |
],
|
32 |
)
|
33 |
demo.launch()
|