Spaces:
Sleeping
Sleeping
Commit
·
41132db
1
Parent(s):
6896884
Update app.py
Browse files
app.py
CHANGED
@@ -50,6 +50,7 @@ with gr.Blocks(title="DETR Object Detection") as demo:
|
|
50 |
with gr.Row():
|
51 |
input_image = gr.Image(label="Input image", type="pil")
|
52 |
output_image = gr.Image(label="Output image with predicted instances", type="pil")
|
|
|
53 |
send_btn = gr.Button("start")
|
54 |
send_btn.click(fn=infer, inputs=input_image, outputs=[output_image])
|
55 |
demo.launch(debug=True)
|
|
|
50 |
with gr.Row():
|
51 |
input_image = gr.Image(label="Input image", type="pil")
|
52 |
output_image = gr.Image(label="Output image with predicted instances", type="pil")
|
53 |
+
gr.Examples(["1.jpg" , "5.jpg"], inputs=input_image)
|
54 |
send_btn = gr.Button("start")
|
55 |
send_btn.click(fn=infer, inputs=input_image, outputs=[output_image])
|
56 |
demo.launch(debug=True)
|