-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b69524c
commit 98eb356
Showing
15 changed files
with
47 additions
and
52 deletions.
There are no files selected for viewing
7 changes: 4 additions & 3 deletions
7
...ctors/transformation_blurring_detector.py → ...rd_vision/core/detectors/blur_detector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...etectors/transformation_color_detector.py → ...d_vision/core/detectors/color_detector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .metadata_detector import MetaDataScanDetectorClassification | ||
from .metadata_detector import MetaDataDetectorClassification | ||
|
||
__all__ = [ | ||
"MetaDataScanDetectorClassification", | ||
"MetaDataDetectorClassification", | ||
] |
4 changes: 2 additions & 2 deletions
4
giskard_vision/image_classification/detectors/metadata_detector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from giskard_vision.core.detectors.metadata_scan_detector import MetaDataScanDetector | ||
from giskard_vision.core.detectors.metadata_detector import MetaDataDetector | ||
|
||
from ...core.detectors.decorator import maybe_detector | ||
from .specs import DetectorSpecs | ||
|
||
|
||
@maybe_detector("metadata_classification", tags=["vision", "image_classification", "metadata"]) | ||
class MetaDataScanDetectorClassification(DetectorSpecs, MetaDataScanDetector): | ||
class MetaDataDetectorClassification(DetectorSpecs, MetaDataDetector): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from .cropping_detector import CroppingDetectorLandmark | ||
from .metadata_detector import MetaDataScanDetectorLandmark | ||
from .transformation_resize_detector import TransformationResizeDetectorLandmark | ||
from .crop_detector import CropDetectorLandmarkDetection | ||
from .metadata_detector import MetaDataDetectorLandmarkDetection | ||
from .resize_detector import TransformationResizeDetectorLandmarkDetection | ||
|
||
__all__ = [ | ||
"CroppingDetectorLandmark", | ||
"TransformationResizeDetectorLandmark", | ||
"MetaDataScanDetectorLandmark", | ||
"CropDetectorLandmarkDetection", | ||
"TransformationResizeDetectorLandmarkDetection", | ||
"MetaDataDetectorLandmarkDetection", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
giskard_vision/landmark_detection/detectors/surrogate_functions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .metadata_detector import MetaDataScanDetectorObjectDetection | ||
from .metadata_detector import MetaDataDetectorObjectDetection | ||
|
||
__all__ = [ | ||
"MetaDataScanDetectorObjectDetection", | ||
"MetaDataDetectorObjectDetection", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
giskard_vision/object_detection/detectors/surrogate_functions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters