Update app.py
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ def visualize_prediction(img, output_dict, threshold=0.5, id2label=None):
|
|
47 |
if id2label is not None:
|
48 |
labels = [id2label[x] for x in labels]
|
49 |
|
50 |
-
plt.figure(figsize=(
|
51 |
plt.imshow(img)
|
52 |
ax = plt.gca()
|
53 |
colors = COLORS * 100
|
@@ -147,7 +147,7 @@ with demo:
|
|
147 |
|
148 |
with gr.TabItem('Image Upload'):
|
149 |
with gr.Row():
|
150 |
-
img_input = gr.Image(type='pil',shape=(
|
151 |
img_output_from_upload= gr.Image(shape=(750,750))
|
152 |
|
153 |
with gr.Row():
|
|
|
47 |
if id2label is not None:
|
48 |
labels = [id2label[x] for x in labels]
|
49 |
|
50 |
+
plt.figure(figsize=(50, 50))
|
51 |
plt.imshow(img)
|
52 |
ax = plt.gca()
|
53 |
colors = COLORS * 100
|
|
|
147 |
|
148 |
with gr.TabItem('Image Upload'):
|
149 |
with gr.Row():
|
150 |
+
img_input = gr.Image(type='pil',shape=(750,750))
|
151 |
img_output_from_upload= gr.Image(shape=(750,750))
|
152 |
|
153 |
with gr.Row():
|