Commit
·
c4cdc35
1
Parent(s):
0e894d5
Update app.py
Browse files
app.py
CHANGED
@@ -30,8 +30,7 @@ description = "Upload an image and get the segmentation result."
|
|
30 |
|
31 |
gr.Interface(fn=query,
|
32 |
inputs=inputs,
|
33 |
-
outputs=query(inputs),
|
34 |
title=title,
|
35 |
examples=[["00_plane.jpg"], ["01_car.jpg"], ["02_bird.jpg"], ["03_cat.jpg"], ["04_deer.jpg"]],
|
36 |
-
description=description
|
37 |
-
enable_queue=True).launch()
|
|
|
30 |
|
31 |
gr.Interface(fn=query,
|
32 |
inputs=inputs,
|
33 |
+
# outputs=query(inputs),
|
34 |
title=title,
|
35 |
examples=[["00_plane.jpg"], ["01_car.jpg"], ["02_bird.jpg"], ["03_cat.jpg"], ["04_deer.jpg"]],
|
36 |
+
description=description).launch()
|
|