File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ video_input:
9
9
10
10
detect_target :
11
11
worker_count : 1
12
- option : 1 # 0 is for Ultralytics (from detect_target_factory.py)
12
+ option : 0 # 0 is for Ultralytics (from detect_target_factory.py)
13
13
device : 0
14
- model_path : " tests/model_example/yolov8s_ultralytics_pretrained_default .pt" # TODO: update
14
+ model_path : " tests/model_example/best-2s .pt" # TODO: update
15
15
save_prefix : " log_comp"
16
16
17
17
flight_interface :
Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ def main() -> int:
82
82
DETECT_TARGET_DEVICE = "cpu" if args .cpu else config ["detect_target" ]["device" ]
83
83
DETECT_TARGET_MODEL_PATH = config ["detect_target" ]["model_path" ]
84
84
DETECT_TARGET_OVERRIDE_FULL_PRECISION = args .full
85
- DETECT_TARGET_USE_CLASSICAL_CV = config ["detect_target" ]["use_classical_cv" ]
86
85
DETECT_TARGET_SAVE_NAME_PREFIX = config ["detect_target" ]["save_prefix" ]
87
86
DETECT_TARGET_SAVE_PREFIX = str (pathlib .Path (logging_path , DETECT_TARGET_SAVE_NAME_PREFIX ))
88
87
DETECT_TARGET_SHOW_ANNOTATED = args .show_annotated
@@ -133,7 +132,6 @@ def main() -> int:
133
132
DETECT_TARGET_DEVICE ,
134
133
DETECT_TARGET_MODEL_PATH ,
135
134
DETECT_TARGET_OVERRIDE_FULL_PRECISION ,
136
- DETECT_TARGET_USE_CLASSICAL_CV ,
137
135
DETECT_TARGET_SHOW_ANNOTATED ,
138
136
DETECT_TARGET_SAVE_PREFIX ,
139
137
),
You can’t perform that action at this time.
0 commit comments