narugo1992 commited on
Commit
667959b
·
verified ·
1 Parent(s): dff89f7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from imgutils.generic import YOLOModel
2
+
3
+ model = YOLOModel('deepghs/yolos')
4
+ model.launch_demo(
5
+ default_iou_threshold=0.3,
6
+ default_conf_threshold=0.7,
7
+ default_model_name='yolo11s',
8
+ )