Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -34,8 +34,11 @@ if __name__ == '__main__':
|
|
34 |
default_model_name='head_detect_v0_s_yv11',
|
35 |
default_conf_threshold=0.18,
|
36 |
)
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
39 |
with gr.Tab('Generic'):
|
40 |
YOLOModel('deepghs/yolos').make_ui(
|
41 |
default_model_name='yolo11s',
|
|
|
34 |
default_model_name='head_detect_v0_s_yv11',
|
35 |
default_conf_threshold=0.18,
|
36 |
)
|
37 |
+
with gr.Tab('Person Detection'):
|
38 |
+
YOLOModel('deepghs/real_person_detection').make_ui(
|
39 |
+
default_model_name='person_detect_v0_s',
|
40 |
+
default_conf_threshold=0.3,
|
41 |
+
)
|
42 |
with gr.Tab('Generic'):
|
43 |
YOLOModel('deepghs/yolos').make_ui(
|
44 |
default_model_name='yolo11s',
|