Skip to content

Commit

Permalink
improve misleading docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswittich committed Jan 8, 2025
1 parent 0881ccb commit 3fa33ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rosys/vision/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 3fa33ce

Please sign in to comment.