umairahmad1789 commited on
Commit
d359027
·
verified ·
1 Parent(s): 698ec76

set default value for model as Yolo V11

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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
  ],