diff --git a/giskard_vision/landmark_detection/detectors/__init__.py b/giskard_vision/landmark_detection/detectors/__init__.py index e9726a55..d90f809e 100644 --- a/giskard_vision/landmark_detection/detectors/__init__.py +++ b/giskard_vision/landmark_detection/detectors/__init__.py @@ -1,13 +1,9 @@ from .cropping_detector import CroppingDetectorLandmark from .metadata_detector import MetaDataScanDetectorLandmark -from .transformation_blurring_detector import TransformationBlurringDetectorLandmark -from .transformation_color_detector import TransformationColorDetectorLandmark from .transformation_resize_detector import TransformationResizeDetectorLandmark __all__ = [ "CroppingDetectorLandmark", - "TransformationBlurringDetectorLandmark", - "TransformationColorDetectorLandmark", "TransformationResizeDetectorLandmark", "MetaDataScanDetectorLandmark", ] diff --git a/giskard_vision/landmark_detection/detectors/cropping_detector.py b/giskard_vision/landmark_detection/detectors/cropping_detector.py index 959be975..8689374f 100644 --- a/giskard_vision/landmark_detection/detectors/cropping_detector.py +++ b/giskard_vision/landmark_detection/detectors/cropping_detector.py @@ -1,4 +1,4 @@ -from giskard_vision.core.scanner.issues import Robustness +from giskard_vision.core.issues import Robustness from ...core.detectors.decorator import maybe_detector from ..dataloaders.wrappers import CroppedDataLoader