From 3fa33ce4ef441bac16cccc3db251536dbc19a6a5 Mon Sep 17 00:00:00 2001 From: "Dr. Dennis Wittich" Date: Wed, 8 Jan 2025 16:46:13 +0100 Subject: [PATCH] improve misleading docstrings --- rosys/vision/detector.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rosys/vision/detector.py b/rosys/vision/detector.py index d95cca0a..b08fa095 100644 --- a/rosys/vision/detector.py +++ b/rosys/vision/detector.py @@ -13,16 +13,16 @@ class Autoupload(Enum): - """Configures the auto-submitting of images to the Learning Loop""" + """Configuration options for image auto-upload behavior to the Learning Loop""" FILTERED = 'filtered' - """only submit images with novel detections and in an uncertainty range (this is the default)""" + """Upload mode for images with novel detections within uncertainty thresholds (default)""" DISABLED = 'disabled' - """no auto-submitting""" + """Upload mode where no images are auto-uploaded""" ALL = 'all' - """submit all images which are run through the detector""" + """Upload mode where every processed image is uploaded""" class DetectorException(Exception):