Spaces:
Sleeping
Sleeping
umairahmad1789
commited on
set default value for model as Yolo V11
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ ifer = gr.Interface(
|
|
51 |
inputs=[
|
52 |
gr.Image(label="Input Image", type="numpy"),
|
53 |
gr.Dropdown(
|
54 |
-
choices=["Yolo V11", "Real Time Detection Transformer"], multiselect=False
|
55 |
),
|
56 |
gr.Slider(minimum=0.01, maximum=1)
|
57 |
],
|
|
|
51 |
inputs=[
|
52 |
gr.Image(label="Input Image", type="numpy"),
|
53 |
gr.Dropdown(
|
54 |
+
choices=["Yolo V11", "Real Time Detection Transformer"], multiselect=False, value="Yolo V11"
|
55 |
),
|
56 |
gr.Slider(minimum=0.01, maximum=1)
|
57 |
],
|