We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdefa2f commit 58ef535Copy full SHA for 58ef535
modules/detect_target/detect_target_ultralytics.py
@@ -58,6 +58,7 @@ def __init__(
58
show_annotations: Display annotated images.
59
save_name: filename prefix for logging detections and annotated images.
60
"""
61
+ self.__local_logger = local_logger
62
self.__device = config.device
63
if (
64
self.__device != DetectTargetUltralyticsConfig.CPU_DEVICE
@@ -70,7 +71,6 @@ def __init__(
70
71
if config.override_full:
72
self.__enable_half_precision = False
73
self.__counter = 0
- self.__local_logger = local_logger
74
self.__show_annotations = show_annotations
75
self.__filename_prefix = ""
76
if save_name != "":
0 commit comments